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
105
105
in_example_app args . cmd . to_s
106
106
end
107
107
108
+ desc "run rake routes in example app"
109
+ task :routes do
110
+ in_example_app "bin/rails routes"
111
+ end
112
+
108
113
desc "run RSPEC_OPTS environment variable in the example app for local dev"
109
114
task :rspec do
110
115
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
144
149
"no_active_record:smoke" ,
145
150
]
146
151
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
+
147
157
desc "run RSPEC_OPTS environment variable in the example app for local dev"
148
158
task :rspec do
149
159
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