Sha256: 9a788cc695b53ac260dd203b76a3254458a0c4811096e77f2d7f8bb87273a2aa

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

require 'bundler'
Bundler.setup

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

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

task :build do
  system "gem build mongoid-eager-loading.gemspec"
end

task :install => :build do
  system "sudo gem install mongoid-eager-loading-#{Mongoid::EagerLoading::VERSION}.gem"
end

task :release => :build do
  puts "Tagging #{Mongoid::EagerLoading::VERSION}..."
  system "git tag -a #{Mongoid::EagerLoading::VERSION} -m 'Tagging #{Mongoid::EagerLoading::VERSION}'"
  puts "Pushing to Github..."
  system "git push --tags"
  puts "Pushing to rubygems.org..."
  system "gem push mongoid-eager-loading-#{Mongoid::EagerLoading::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

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = "rdoc"
  rdoc.title = "mongoid-eager-loading #{Mongoid::EagerLoading::VERSION}"
  rdoc.rdoc_files.include("README*")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

task :default => :spec

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mongoid-eager-loading-0.3.1 Rakefile
mongoid-eager-loading-0.3.0 Rakefile
mongoid-eager-loading-0.2.0 Rakefile
mongoid-eager-loading-0.1.2 Rakefile
mongoid-eager-loading-0.1.1 Rakefile
mongoid-eager-loading-0.1.0 Rakefile