Sha256: 6e2ce3a78dfc2b7df912efe97047de5a1d5a57a0068bddf6c67c9e7d7f19e857
Contents?: true
Size: 778 Bytes
Versions: 4
Compression:
Stored size: 778 Bytes
Contents
require 'rubygems' require 'spec/rake/spectask' begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "mostash" gemspec.summary = "A combo of OpenStruct and a ruby hash" gemspec.description = "You can treat an object as either a hash or as an OpenStruct. In additon to this you can create them nested, unlike OpenStruct" gemspec.email = "asher.friedman@gmail.com" #gemspec.homepage = "http://github.com/technicalpickles/the-perfect-gem" gemspec.authors = ["Joel Friedman"] gemspec.add_development_dependency "rspec" end rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end desc "run all specs" Spec::Rake::SpecTask.new( "spec" ) do |t| t.spec_files = FileList["spec/**/*_spec.rb"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mostash-0.0.4 | Rakefile |
mostash-0.0.3 | Rakefile |
mostash-0.0.2 | Rakefile |
mostash-0.0.1 | Rakefile |