Sha256: 0c76fab25d5e51d53e3006f108c01873bb937b289a4142a2eeb8a5e22bf4b703

Contents?: true

Size: 1.41 KB

Versions: 20

Compression:

Stored size: 1.41 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "rallytastic"
    gem.summary = %Q{Its a Rally story teleporter}
    gem.description = %Q{longer description of your gem}
    gem.email = "winescout@gmail.com"
    gem.homepage = "http://github.com/winescout/rallytastic"
    gem.authors = ["Matt Clark"]
    gem.add_development_dependency "rspec", ">= 1.2.9"
    gem.add_dependency "rake"
    gem.add_dependency "mongoid"
    gem.add_dependency "bson_ext"
    gem.add_dependency "rest-client"
    gem.add_dependency "thor"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "rallytastic #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
rallytastic-1.4.9 Rakefile
rallytastic-1.4.8 Rakefile
rallytastic-1.4.7 Rakefile
rallytastic-1.4.6 Rakefile
rallytastic-1.4.5 Rakefile
rallytastic-1.4.4 Rakefile
rallytastic-1.4.0 Rakefile
rallytastic-1.3.0 Rakefile
rallytastic-1.2.8 Rakefile
rallytastic-1.2.7 Rakefile
rallytastic-1.2.6 Rakefile
rallytastic-1.2.5 Rakefile
rallytastic-1.2.4 Rakefile
rallytastic-1.2.3 Rakefile
rallytastic-1.2.2 Rakefile
rallytastic-1.2.1 Rakefile
rallytastic-1.2.0 Rakefile
rallytastic-1.1.2 Rakefile
rallytastic-1.1.1 Rakefile
rallytastic-1.1.0 Rakefile