Sha256: c842f85166e6b5b68e99811f948a874af1cd27325340b01b80c0ca46f2530d27
Contents?: true
Size: 738 Bytes
Versions: 5
Compression:
Stored size: 738 Bytes
Contents
begin require 'bundler/setup' rescue LoadError puts 'You must `gem install bundler` and `bundle install` to run rake tasks' end require 'rdoc/task' RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = 'rdoc' rdoc.title = 'AdminInvitable' rdoc.options << '--line-numbers' rdoc.rdoc_files.include('README.rdoc') rdoc.rdoc_files.include('lib/**/*.rb') end APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__) load 'rails/tasks/engine.rake' begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) rescue LoadError end require 'thor' task default: :spec task :run_dummy_app do Dir.chdir("spec/dummy") do exec("bundle exec rails s -p 3000") end end Bundler::GemHelper.install_tasks
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
admin_invitable-1.0.0 | Rakefile |
admin_invitable-0.1.0 | Rakefile |
admin_invitable-0.0.3 | Rakefile |
admin_invitable-0.0.2 | Rakefile |
admin_invitable-0.0.1 | Rakefile |