summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDaniel Neighman <has.sox@gmail.com>2010-06-15 14:16:25 +0800
committerMichael Bleigh <michael@intridea.com>2010-06-22 22:00:39 +0800
commit0c85e9482f0ca0232d7cf7cf6577a359ea07ffed (patch)
tree34a2dd820c3e78721b3931a87b8a91b28f1091eb /Rakefile
parenta026498fb732eeb8ad9bdb11bf28d21d8c0e3467 (diff)
downloadhashie-0c85e9482f0ca0232d7cf7cf6577a359ea07ffed.tar.gz
Adds a fix for json generation
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Rakefile b/Rakefile
index 662f76f..8853ee8 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,23 +1,6 @@
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'
@@ -30,8 +13,6 @@ Spec::Rake::SpecTask.new(:rcov) do |spec|
spec.rcov = true
end
-task :spec => :check_dependencies
-
task :default => :spec
require 'rake/rdoctask'