Sha256: 68af0accd4069f2d8a1318c91fc7bb5d4fa5b70aeb699d61f39def2a2e240f85

Contents?: true

Size: 992 Bytes

Versions: 21

Compression:

Stored size: 992 Bytes

Contents

require "bundler"
Bundler.setup

require "rake"
require "rspec"
require "rspec/core/rake_task"

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "rails_best_practices/version"

task :build do
  system "gem build rails_best_practices.gemspec"
end

task :install => :build do
  system "sudo gem install rails_best_practices-#{RailsBestPractices::VERSION}.gem"
end

task :release => :build do
  puts "Tagging #{RailsBestPractices::VERSION}..."
  system "git tag -a #{RailsBestPractices::VERSION} -m 'Tagging #{RailsBestPractices::VERSION}'"
  puts "Pushing to Github..."
  system "git push --tags"
  puts "Pushing to rubygems.org..."
  system "gem push rails_best_practices-#{RailsBestPractices::VERSION}.gem"
end

Rspec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = "spec/**/*_spec.rb"
end

Rspec::Core::RakeTask.new('spec:progress') do |spec|
  spec.rspec_opts = %w(--format progress)
  spec.pattern = "spec/**/*_spec.rb"
end

task :default => :spec
task :test => :spec

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
rails_best_practices-1.5.1 Rakefile
rails_best_practices-1.5.0 Rakefile
rails_best_practices-1.4.0 Rakefile
rails_best_practices-1.3.0 Rakefile
rails_best_practices-1.2.0 Rakefile
rails_best_practices-1.1.0 Rakefile
rails_best_practices-1.0.1 Rakefile
rails_best_practices-1.0.0 Rakefile
rails_best_practices-0.10.1 Rakefile
rails_best_practices-0.10.0 Rakefile
rails_best_practices-raydog153-0.9.1 Rakefile
rails_best_practices-0.9.0 Rakefile
rails_best_practices-0.8.2 Rakefile
rails_best_practices-0.8.1 Rakefile
rails_best_practices-0.8.0 Rakefile
rails_best_practices-0.7.5 Rakefile
rails_best_practices-0.7.4 Rakefile
rails_best_practices-0.7.3 Rakefile
rails_best_practices-0.7.2 Rakefile
rails_best_practices-0.7.1 Rakefile