summaryrefslogtreecommitdiff
path: root/oxidized.gemspec
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2014-07-20 12:29:26 +0300
committerSaku Ytti <saku@ytti.fi>2014-07-20 12:29:26 +0300
commit723278d17c2fa84b2c8e17959f53e04eec7d9aa7 (patch)
treeb7a8535e0da0f8f8cbccc2716689ebba8403370e /oxidized.gemspec
parent7d02d3be89dd988cceba379c8413a8b9dc926814 (diff)
bump up gemspec0.1.0
- actually start to follow semantic version - a.b.c a == major, b == minor c == patch - c only for bug-fixes etc - b for non-breaking new features - a for breaking new featires - a == 0 is special, can break anywhere - http://semver.org - add more specific version restrictions for gems
Diffstat (limited to 'oxidized.gemspec')
-rw-r--r--oxidized.gemspec11
1 files changed, 6 insertions, 5 deletions
diff --git a/oxidized.gemspec b/oxidized.gemspec
index 9e6ef85..9d8e38f 100644
--- a/oxidized.gemspec
+++ b/oxidized.gemspec
@@ -1,6 +1,7 @@
Gem::Specification.new do |s|
s.name = 'oxidized'
- s.version = '0.0.65'
+ s.version = '0.1.0'
+ s.licenses = ['Apache-2.0']
s.platform = Gem::Platform::RUBY
s.authors = [ 'Saku Ytti' ]
s.email = %w( saku@ytti.fi )
@@ -12,8 +13,8 @@ Gem::Specification.new do |s|
s.executables = %w( oxidized )
s.require_path = 'lib'
- s.required_ruby_version = '>= 1.9.3'
- s.add_dependency 'asetus', '>= 0.1.0'
- s.add_dependency 'slop'
- s.add_dependency 'net-ssh'
+ s.required_ruby_version = '>= 1.9.3'
+ s.add_dependency 'asetus', '~> 0.1'
+ s.add_dependency 'slop', '~> 3.5'
+ s.add_dependency 'net-ssh', '~> 2.8'
end