shanesveller-webbynode-api 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/bin/webby +5 -1
  3. data/webbynode-api.gemspec +8 -9
  4. metadata +7 -7
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/bin/webby CHANGED
@@ -3,7 +3,11 @@
3
3
  require 'rubygems'
4
4
  gem 'optiflag'
5
5
  require 'optiflag'
6
- require 'lib/webbynode-api'
6
+ begin
7
+ require File.join(File.dirname(__FILE__), '..', 'lib', 'webbynode-api')
8
+ rescue LoadError
9
+ require 'webbynode-api'
10
+ end
7
11
 
8
12
  module WebbyNodeTool extend OptiFlagSet
9
13
  optional_flag "email"
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{webbynode-api}
5
- s.version = "0.2.1"
5
+ s.version = "0.2.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Shane Sveller"]
9
- s.date = %q{2009-07-13}
9
+ s.date = %q{2009-07-14}
10
10
  s.default_executable = %q{webby}
11
11
  s.email = %q{shanesveller@gmail.com}
12
12
  s.executables = ["webby"]
@@ -51,23 +51,22 @@ Gem::Specification.new do |s|
51
51
  "test/webby_test.rb",
52
52
  "webbynode-api.gemspec"
53
53
  ]
54
- s.has_rdoc = true
55
54
  s.homepage = %q{http://github.com/shanesveller/webbynode-api}
56
55
  s.rdoc_options = ["--charset=UTF-8"]
57
56
  s.require_paths = ["lib"]
58
- s.rubygems_version = %q{1.3.1}
57
+ s.rubygems_version = %q{1.3.4}
59
58
  s.summary = %q{wraps the WebbyNode API into nice Ruby objects}
60
59
  s.test_files = [
61
- "test/apiobject_test.rb",
62
- "test/client_test.rb",
60
+ "test/test_helper.rb",
61
+ "test/webby_test.rb",
63
62
  "test/dns_test.rb",
64
- "test/test_helper.rb",
65
- "test/webby_test.rb"
63
+ "test/client_test.rb",
64
+ "test/apiobject_test.rb"
66
65
  ]
67
66
 
68
67
  if s.respond_to? :specification_version then
69
68
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
70
- s.specification_version = 2
69
+ s.specification_version = 3
71
70
 
72
71
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
73
72
  s.add_runtime_dependency(%q<httparty>, [">= 0.4.3"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shanesveller-webbynode-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Sveller
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-13 00:00:00 -07:00
12
+ date: 2009-07-14 00:00:00 -07:00
13
13
  default_executable: webby
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -77,7 +77,7 @@ files:
77
77
  - test/test_helper.rb
78
78
  - test/webby_test.rb
79
79
  - webbynode-api.gemspec
80
- has_rdoc: true
80
+ has_rdoc: false
81
81
  homepage: http://github.com/shanesveller/webbynode-api
82
82
  post_install_message:
83
83
  rdoc_options:
@@ -101,11 +101,11 @@ requirements: []
101
101
  rubyforge_project:
102
102
  rubygems_version: 1.2.0
103
103
  signing_key:
104
- specification_version: 2
104
+ specification_version: 3
105
105
  summary: wraps the WebbyNode API into nice Ruby objects
106
106
  test_files:
107
- - test/apiobject_test.rb
108
- - test/client_test.rb
109
- - test/dns_test.rb
110
107
  - test/test_helper.rb
111
108
  - test/webby_test.rb
109
+ - test/dns_test.rb
110
+ - test/client_test.rb
111
+ - test/apiobject_test.rb