mirror of
https://github.com/pry/pry-rails.git
synced 2022-11-09 12:36:03 -05:00
22 lines
598 B
Ruby
22 lines
598 B
Ruby
require "rubygems"
|
|
require "bundler/setup"
|
|
require "bundler/gem_tasks"
|
|
require "appraisal"
|
|
|
|
desc 'Create test Rails app'
|
|
task :init_test_app do
|
|
`rm -rf test/app >/dev/null 2>&1`
|
|
`env BUNDLE_GEMFILE=gemfiles/rails30.gemfile bundle exec rails new test/app`
|
|
FileUtils.cp("test/routes.rb", "test/app/config/routes.rb")
|
|
File.open("test/app/Gemfile", 'a+') { |f| f.write(%Q{gem "pry-rails", :path => "../../"}) }
|
|
end
|
|
|
|
desc 'Start the Rails server'
|
|
task :server do
|
|
exec 'cd test/app && rails server'
|
|
end
|
|
|
|
desc 'Start the Rails console'
|
|
task :console do
|
|
exec 'cd test/app && rails console'
|
|
end
|