Skip to content

Commit

Permalink
small tidy up of the gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
joshk committed Apr 14, 2011
1 parent 6f98793 commit 395bd31
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions multi_json.gemspec
Expand Up @@ -4,18 +4,24 @@ require File.expand_path("../lib/multi_json/version", __FILE__)
Gem::Specification.new do |s|
s.name = "multi_json"
s.version = MultiJson::VERSION

s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version=

s.authors = ["Michael Bleigh"]
s.description = %q{A gem to provide swappable JSON backends utilizing Yajl::Ruby, the JSON gem, ActiveSupport, or JSON pure.}
s.email = ["michael@intridea.com"]
s.summary = %q{A gem to provide swappable JSON backends.}
s.email = ["michael@intridea.com"]
s.description = %q{A gem to provide swappable JSON backends utilizing Yajl::Ruby, the JSON gem, ActiveSupport, or JSON pure.}
s.homepage = "http://github.com/intridea/multi_json"

s.extra_rdoc_files = ["LICENSE", "README.rdoc"]
s.rdoc_options = ["--charset=UTF-8"]
s.rdoc_options = ["--charset=UTF-8"]

s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

s.require_paths = ["lib"]

s.add_development_dependency("rake", "~> 0.8")
s.add_development_dependency("rcov", "~> 0.9")
s.add_development_dependency("rspec", "~> 2.0")
Expand Down

0 comments on commit 395bd31

Please sign in to comment.