zuora-client 0.0.1 → 1.0.0

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 CHANGED
@@ -1,6 +1,13 @@
1
- = zuora-query
1
+ = zuora-client
2
2
 
3
- Description goes here.
3
+ Client for Zuora API
4
+
5
+ == Installing the Gem
6
+ $ sudo gem sources -a http://gemcutter.org
7
+ $ sudo gem install zuora-client
8
+
9
+ == Usage
10
+ zuora-client -u <username> -p <passowrd> <query>
4
11
 
5
12
  == Note on Patches/Pull Requests
6
13
 
data/Rakefile CHANGED
@@ -5,6 +5,7 @@ begin
5
5
  require 'jeweler'
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "zuora-client"
8
+ gem.version = "1.0.0"
8
9
  gem.summary = "Zuora Client"
9
10
  gem.description = "A client for Zuora"
10
11
  gem.email = "brianm@ning.com"
@@ -14,7 +15,7 @@ begin
14
15
  "lib/**/*", "bin/**/*"]
15
16
  gem.add_dependency "savon", ">= 0.7.9"
16
17
  gem.add_dependency "json_pure", ">= 1.4.6"
17
- gem.executables = ['zq']
18
+ gem.executables = ['zuora-client', 'zc']
18
19
  gem.requirements = ["none"]
19
20
  gem.bindir = "bin"
20
21
  end
data/bin/zc ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ load File.dirname(__FILE__) + '/zuora-client'
File without changes
data/zuora-client.gemspec CHANGED
@@ -5,15 +5,14 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{zuora-client}
8
- s.version = "0.0.1"
8
+ s.version = "1.0.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Brian McCallister"]
12
12
  s.date = %q{2010-08-25}
13
- s.default_executable = %q{zq}
14
13
  s.description = %q{A client for Zuora}
15
14
  s.email = %q{brianm@ning.com}
16
- s.executables = ["zq"]
15
+ s.executables = ["zuora-client", "zc"]
17
16
  s.extra_rdoc_files = [
18
17
  "LICENSE",
19
18
  "README.rdoc"
@@ -21,7 +20,8 @@ Gem::Specification.new do |s|
21
20
  s.files = [
22
21
  "Rakefile",
23
22
  "VERSION",
24
- "bin/zq",
23
+ "bin/zc",
24
+ "bin/zuora-client",
25
25
  "lib/zuora_client.rb",
26
26
  "zuora-client.gemspec"
27
27
  ]
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: 29
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
+ - 1
7
8
  - 0
8
9
  - 0
9
- - 1
10
- version: 0.0.1
10
+ version: 1.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Brian McCallister
@@ -16,7 +16,7 @@ bindir: bin
16
16
  cert_chain: []
17
17
 
18
18
  date: 2010-08-25 00:00:00 -07:00
19
- default_executable: zq
19
+ default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
22
22
  name: savon
@@ -53,7 +53,8 @@ dependencies:
53
53
  description: A client for Zuora
54
54
  email: brianm@ning.com
55
55
  executables:
56
- - zq
56
+ - zuora-client
57
+ - zc
57
58
  extensions: []
58
59
 
59
60
  extra_rdoc_files:
@@ -62,7 +63,8 @@ extra_rdoc_files:
62
63
  files:
63
64
  - Rakefile
64
65
  - VERSION
65
- - bin/zq
66
+ - bin/zc
67
+ - bin/zuora-client
66
68
  - lib/zuora_client.rb
67
69
  - zuora-client.gemspec
68
70
  - LICENSE