Sha256: 24f24687691a29644d2e37a36539ef735393edd4ee0c22b79792f4e4a3aaee7f
Contents?: true
Size: 1.17 KB
Versions: 17
Compression:
Stored size: 1.17 KB
Contents
# encoding: utf-8 $:.push File.expand_path("../lib", __FILE__) require 'bundler' require 'bundler/setup' require 'ridley' class Default < Thor unless jruby? require 'thor/rake_compat' include Thor::RakeCompat Bundler::GemHelper.install_tasks desc "build", "Build ridley-#{Ridley::VERSION}.gem into the pkg directory" def build Rake::Task["build"].execute end desc "install", "Build and install ridley-#{Ridley::VERSION}.gem into system gems" def install Rake::Task["install"].execute end desc "release", "Create tag v#{Ridley::VERSION} and build and push ridley-#{Ridley::VERSION}.gem to Rubygems" def release Rake::Task["release"].execute end end class Spec < Thor namespace :spec default_task :all desc "all", "run all tests" def all exec "rspec --color --format=documentation spec" end desc "unit", "run only unit tests" def unit exec "rspec --color --format=documentation spec --tag ~type:acceptance" end desc "acceptance", "run only acceptance tests" def acceptance exec "rspec --color --format=documentation spec --tag type:acceptance" end end end
Version data entries
17 entries across 17 versions & 1 rubygems