zuora-client 1.0.1 → 1.0.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.
- data/README.rdoc +1 -1
- data/Rakefile +2 -2
- data/bin/zuora-client +4 -4
- data/zuora-client.gemspec +2 -2
- metadata +4 -4
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -5,11 +5,11 @@ begin
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "zuora-client"
|
8
|
-
gem.version = "1.0.
|
8
|
+
gem.version = "1.0.2"
|
9
9
|
gem.summary = "Zuora Client"
|
10
10
|
gem.description = "A client for Zuora"
|
11
11
|
gem.email = "gene@ning.com"
|
12
|
-
gem.homepage = "http://github.com/
|
12
|
+
gem.homepage = "http://github.com/cloocher/zuora-client"
|
13
13
|
gem.authors = ["Cloocher"]
|
14
14
|
gem.files = FileList["CHANGES", "zuora-client.gemspec", "Rakefile", "README", "VERSION",
|
15
15
|
"lib/**/*", "bin/**/*"]
|
data/bin/zuora-client
CHANGED
@@ -28,16 +28,16 @@ password = nil
|
|
28
28
|
environment = 'prod'
|
29
29
|
|
30
30
|
opts = OptionParser.new do |opts|
|
31
|
-
opts.banner = 'Usage: zuora -u <username> -p <password> <query>'
|
32
|
-
opts.on('-u', '--user
|
31
|
+
opts.banner = 'Usage: zuora-client -u <username> -p <password> -e [prod|sandbox] <query>'
|
32
|
+
opts.on('-u', '--user USERNAME', 'username') { |u| username = u }
|
33
33
|
opts.on('-p', '--pass PASSWORD', 'password') { |p| password = p }
|
34
|
-
opts.on('-e', '--env ENVIRONMENT', '[prod|sandbox]') { |e| environment = e }
|
34
|
+
opts.on('-e', '--env ENVIRONMENT', '[prod|sandbox] (default: prod)') { |e| environment = e }
|
35
35
|
opts.on('-v', '--verbose', 'log harder') { Savon::Request.log = true }
|
36
36
|
end
|
37
37
|
|
38
38
|
if ARGV.empty?
|
39
39
|
puts opts
|
40
|
-
exit
|
40
|
+
exit
|
41
41
|
end
|
42
42
|
|
43
43
|
remainder = opts.parse!(ARGV)
|
data/zuora-client.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{zuora-client}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Cloocher"]
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
|
|
25
25
|
"lib/zuora_client.rb",
|
26
26
|
"zuora-client.gemspec"
|
27
27
|
]
|
28
|
-
s.homepage = %q{http://github.com/
|
28
|
+
s.homepage = %q{http://github.com/cloocher/zuora-client}
|
29
29
|
s.rdoc_options = ["--charset=UTF-8"]
|
30
30
|
s.require_paths = ["lib"]
|
31
31
|
s.requirements = ["none"]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 2
|
10
|
+
version: 1.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Cloocher
|
@@ -72,7 +72,7 @@ files:
|
|
72
72
|
- test/helper.rb
|
73
73
|
- test/test_zuora_client.rb
|
74
74
|
has_rdoc: true
|
75
|
-
homepage: http://github.com/
|
75
|
+
homepage: http://github.com/cloocher/zuora-client
|
76
76
|
licenses: []
|
77
77
|
|
78
78
|
post_install_message:
|