summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2014-07-24 15:24:22 +0300
committerSaku Ytti <saku@ytti.fi>2014-07-24 15:24:22 +0300
commit310b74d7c2a3f78d44aa1f78318b349a35f2e8b5 (patch)
treefdf853e0410eb7123ddfad7fe507894da55461d9
parentd0a8379a72459ee57b31dee38b4e1ca0992d3772 (diff)
bump up gemspec version0.2.0
-rw-r--r--CHANGELOG.md2
-rw-r--r--TODO.md11
-rw-r--r--oxidized.gemspec12
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
diff --git a/TODO.md b/TODO.md
index dcecbd9..494c714 100644
--- a/TODO.md
+++ b/TODO.md
@@ -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