File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,11 @@ namespace :smoke do
105105 in_example_app args . cmd . to_s
106106 end
107107
108+ desc "run rake routes in example app"
109+ task :routes do
110+ in_example_app "bin/rails routes"
111+ end
112+
108113 desc "run RSPEC_OPTS environment variable in the example app for local dev"
109114 task :rspec do
110115 in_example_app "LOCATION='../../example_app_generator/run_specs.rb' bin/rspec #{ ENV . fetch ( "RSPEC_OPTS" ) } "
@@ -144,6 +149,11 @@ namespace :no_active_record do
144149 "no_active_record:smoke" ,
145150 ]
146151
152+ desc "run rake routes in example app"
153+ task :routes do
154+ in_example_app "bin/rails routes" , app_dir : example_app_dir
155+ end
156+
147157 desc "run RSPEC_OPTS environment variable in the example app for local dev"
148158 task :rspec do
149159 in_example_app "LOCATION='../../example_app_generator/run_specs.rb' bin/rspec #{ ENV . fetch ( "RSPEC_OPTS" ) } " , app_dir : example_app_dir
You can’t perform that action at this time.
0 commit comments