Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
begin
  require "bundler/setup"
rescue LoadError
  puts "You must `gem install bundler` and `bundle install` to run rake tasks"
end

require "bundler/gem_tasks"

require File.expand_path("../spec/dummy/config/application", __FILE__)

Rails.application.load_tasks

##
# Configure the test suite.
##
require "rspec/core"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new

##
# By default, just run the tests.
##
task default: :spec