Sha256: 5969c1932cf947a8aba2e5870327c03a9861a852a89737f17a841dd003239865

Contents?: true

Size: 1.37 KB

Versions: 9

Compression:

Stored size: 1.37 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "hashie"
    gem.summary = %Q{Your friendly neighborhood hash toolkit.}
    gem.description = %Q{Hashie is a small collection of tools that make hashes more powerful. Currently includes Mash (Mocking Hash) and Dash (Discrete Hash).}
    gem.email = "michael@intridea.com"
    gem.homepage = "http://github.com/intridea/hashie"
    gem.authors = ["Michael Bleigh"]
    gem.add_development_dependency "rspec"
    # 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: sudo 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|
  if File.exist?('VERSION')
    version = File.read('VERSION')
  else
    version = ""
  end

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

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
hashie-0.2.0 Rakefile
zerobearing-hashie-0.1.9 Rakefile
hashie-0.1.8 Rakefile
hashie-0.1.6 Rakefile
hashie-0.1.5 Rakefile
hashie-0.1.4 Rakefile
hashie-0.1.3 Rakefile
hashie-0.1.2 Rakefile
hashie-0.1.0 Rakefile