Skip to content

Commit 360a2d1

Browse files
committed
chore: Update Makefile
1 parent 8c7d638 commit 360a2d1

2 files changed

Lines changed: 13 additions & 7 deletions

File tree

Makefile

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
lint:
2-
bin/rubocop
1+
specs:
2+
RUBYOPT='-rbundler/setup -rrbs/test/setup' RBS_TEST_TARGET='TinyAdmin::*' bin/rspec
33

4-
test:
5-
bin/rspec
4+
console:
5+
bin/rails c
66

7-
test_rbs:
8-
RUBYOPT='-rbundler/setup -rrbs/test/setup' RBS_TEST_TARGET='TinyAdmin::*' bin/rspec
7+
server:
8+
bin/rails s
9+
10+
seed:
11+
bin/rails db:migrate && bin/rails db:seed
12+
13+
lint:
14+
bin/rubocop

bin/rails

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This command will automatically be run when you run "rails" with Rails gems
33
# installed from the root of your application.
44

5-
ENV['RAILS_ENV'] ||= 'test'
5+
ENV['RAILS_ENV'] ||= 'development'
66

77
ENGINE_ROOT = File.expand_path('..', __dir__)
88
APP_PATH = File.expand_path("../spec/dummy_rails/config/application", __dir__)

0 commit comments

Comments
 (0)