summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Herold <michael.j.herold@gmail.com>2014-09-05 16:41:04 -0500
committerMichael Herold <michael.j.herold@gmail.com>2014-09-05 16:41:29 -0500
commit81d92f02a19afe725a9c8c6657bed33e08edba69 (patch)
treeece9f0a05a9bc2272d87602f4dcea4f3ff7a5955
parent466096002cbf322f69bb9ac237e364000b511495 (diff)
downloadhashie-81d92f02a19afe725a9c8c6657bed33e08edba69.tar.gz
Reorganize gemspec according to common convention
-rw-r--r--hashie.gemspec8
1 files changed, 4 insertions, 4 deletions
diff --git a/hashie.gemspec b/hashie.gemspec
index 7ce6ec5..d000399 100644
--- a/hashie.gemspec
+++ b/hashie.gemspec
@@ -1,18 +1,18 @@
require File.expand_path('../lib/hashie/version', __FILE__)
Gem::Specification.new do |gem|
+ gem.name = 'hashie'
+ gem.version = Hashie::VERSION
gem.authors = ['Michael Bleigh', 'Jerry Cheung']
gem.email = ['michael@intridea.com', 'jollyjerry@gmail.com']
gem.description = 'Hashie is a collection of classes and mixins that make hashes more powerful.'
gem.summary = 'Your friendly neighborhood hash library.'
gem.homepage = 'https://github.com/intridea/hashie'
+ gem.license = 'MIT'
+ gem.require_paths = ['lib']
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
- gem.name = 'hashie'
- gem.require_paths = ['lib']
- gem.version = Hashie::VERSION
- gem.license = 'MIT'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3.0'