Sha256: 12267ccba45d15918ef53d44b9a98d14516a19013d470fe47a9c4ad707c5912d
Contents?: true
Size: 425 Bytes
Versions: 7
Compression:
Stored size: 425 Bytes
Contents
require 'bundler/setup' require 'rspec/core/rake_task' desc 'Default: run specs.' task :default => :spec_example desc 'Run all specs' RSpec::Core::RakeTask.new(:spec_example) do |config| config.verbose = false end namespace :capcoauth do desc 'Install Capcoauth in dummy app' task :install do cd 'spec/dummy' system 'bundle exec rails g capcoauth:install --force' end end Bundler::GemHelper.install_tasks
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
capcoauth-0.7.0 | Rakefile |
capcoauth-0.6.3 | Rakefile |
capcoauth-0.6.2 | Rakefile |
capcoauth-0.6.1 | Rakefile |
capcoauth-0.6.0 | Rakefile |
capcoauth-0.5.1 | Rakefile |
capcoauth-0.5.0 | Rakefile |