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    
paypal-sdk-rest / Rakefile
Size: Mime:
require "bundler/gem_tasks"

# release will instead be declared by the releasinator
Rake::Task["release"].clear

spec = Gem::Specification.find_by_name 'releasinator'
load "#{spec.gem_dir}/lib/tasks/releasinator.rake"

desc "Run tests"
task :rspec do
  cmd = "bundle exec rspec -f d"
  system(cmd) || raise("#{cmd} failed")
end

task :default => :rspec