Skip to content

Commit

Permalink
Merge pull request intridea#20 from talbright/master
Browse files Browse the repository at this point in the history
Remove git dependency from gemspec
  • Loading branch information
sferik committed Aug 19, 2011
2 parents 71f836c + d2b2e1a commit 83d93fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multi_json.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Gem::Specification.new do |gem|
gem.description = %q{A gem to provide swappable JSON backends utilizing Yajl::Ruby, the JSON gem, JSON pure, or a vendored version of okjson.}
gem.email = ['michael@intridea.com', 'josh.kalderimis@gmail.com', 'sferik@gmail.com']
gem.extra_rdoc_files = ['LICENSE.md', 'README.md']
gem.files = `git ls-files`.split("\n")
gem.files = Dir['LICENSE.md', 'README.md', 'Rakefile', 'multi_json.gemspec', 'Gemfile', '.document', '.rspec', '.travis.yml' ,'spec/**/*', 'lib/**/*']
gem.homepage = 'http://github.com/intridea/multi_json'
gem.name = 'multi_json'
gem.rdoc_options = ["--charset=UTF-8"]
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new(">= 1.3.6")
gem.summary = %q{A gem to provide swappable JSON backends.}
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.test_files = Dir['spec/**/*']
gem.version = MultiJson::VERSION
end

0 comments on commit 83d93fa

Please sign in to comment.