diff options
author | Saku Ytti <saku@ytti.fi> | 2014-07-24 15:24:22 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2014-07-24 15:24:22 +0300 |
commit | 310b74d7c2a3f78d44aa1f78318b349a35f2e8b5 (patch) | |
tree | fdf853e0410eb7123ddfad7fe507894da55461d9 | |
parent | d0a8379a72459ee57b31dee38b4e1ca0992d3772 (diff) |
bump up gemspec version0.2.0
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | TODO.md | 11 | ||||
-rw-r--r-- | oxidized.gemspec | 12 |
3 files changed, 8 insertions, 17 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 911a961..d2fa569 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ # 0.2.0 - FEATURE: Force10 model added by @lysiszegerman +- FEATURE: ScreenOS model added by @lysiszegerman - FEATURE: FabricOS model added by @thakala - FEATURE: ASA model added by @thakala +- FEATURE: Vyattamodel added by @thakala - BUGFIX: Oxidized::String convenience methods for models fixed # 0.1.1 @@ -4,17 +4,6 @@ * if now is less than job_ended+iteration same chance to remove thread? * should we try to avoid max threads from being hit? (like maybe non-success thread is pulling average?) -# config - * save keys as strings, load as symbols? - -# other -should it offer cli mass config-pusher? (I think not, I have ideas for such -program and I'm not sure if synergies are high enough for shared code without -making both bit awkward) - -use sidekiq? Any benefits? - - # docs, testing * yard docs * rspec tests diff --git a/oxidized.gemspec b/oxidized.gemspec index 5c396a2..b562d68 100644 --- a/oxidized.gemspec +++ b/oxidized.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'oxidized' - s.version = '0.1.1' - s.licenses = ['Apache-2.0'] + s.version = '0.2.0' + s.licenses = %w( Apache-2.0 ) s.platform = Gem::Platform::RUBY s.authors = [ 'Saku Ytti' ] s.email = %w( saku@ytti.fi ) @@ -13,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' - s.add_dependency 'slop', '~> 3.5' - s.add_dependency 'net-ssh', '~> 2.8' + s.required_ruby_version = '>= 1.9.3' + s.add_runtime_dependency 'asetus', '~> 0.1' + s.add_runtime_dependency 'slop', '~> 3.5' + s.add_runtime_dependency 'net-ssh', '~> 2.8' end |