We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c7d638 commit 360a2d1Copy full SHA for 360a2d1
2 files changed
Makefile
@@ -1,8 +1,14 @@
1
-lint:
2
- bin/rubocop
+specs:
+ RUBYOPT='-rbundler/setup -rrbs/test/setup' RBS_TEST_TARGET='TinyAdmin::*' bin/rspec
3
4
-test:
5
- bin/rspec
+console:
+ bin/rails c
6
7
-test_rbs:
8
- RUBYOPT='-rbundler/setup -rrbs/test/setup' RBS_TEST_TARGET='TinyAdmin::*' bin/rspec
+server:
+ bin/rails s
9
+
10
+seed:
11
+ bin/rails db:migrate && bin/rails db:seed
12
13
+lint:
14
+ bin/rubocop
bin/rails
@@ -2,7 +2,7 @@
# This command will automatically be run when you run "rails" with Rails gems
# installed from the root of your application.
-ENV['RAILS_ENV'] ||= 'test'
+ENV['RAILS_ENV'] ||= 'development'
ENGINE_ROOT = File.expand_path('..', __dir__)
APP_PATH = File.expand_path("../spec/dummy_rails/config/application", __dir__)
0 commit comments