stefl-chargify 0.3.3 → 0.3.4

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/stefl-chargify.gemspec +69 -56
  3. metadata +90 -15
  4. data/.gitignore +0 -23
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.3
1
+ 0.3.4
@@ -1,80 +1,78 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{stefl-chargify}
8
- s.version = "0.3.3"
8
+ s.version = "0.3.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wynn Netherland", "Justin Smestad"]
12
- s.date = %q{2010-10-04}
12
+ s.date = %q{2011-02-17}
13
13
  s.email = %q{justin.smestad@gmail.com}
14
14
  s.extra_rdoc_files = [
15
15
  "LICENSE",
16
- "README.markdown"
16
+ "README.markdown"
17
17
  ]
18
18
  s.files = [
19
- ".gitignore",
20
- ".rspec",
21
- "Gemfile",
22
- "Gemfile.lock",
23
- "LICENSE",
24
- "README.markdown",
25
- "Rakefile",
26
- "VERSION",
27
- "changelog.md",
28
- "lib/chargify.rb",
29
- "lib/chargify/base.rb",
30
- "lib/chargify/config.rb",
31
- "lib/chargify/customer.rb",
32
- "lib/chargify/error.rb",
33
- "lib/chargify/parser.rb",
34
- "lib/chargify/product.rb",
35
- "lib/chargify/product_family.rb",
36
- "lib/chargify/subscription.rb",
37
- "lib/chargify/transaction.rb",
38
- "spec/fixtures/charge_subscription.json",
39
- "spec/fixtures/charge_subscription_missing_parameters.json",
40
- "spec/fixtures/component.json",
41
- "spec/fixtures/components.json",
42
- "spec/fixtures/customer.json",
43
- "spec/fixtures/customers.json",
44
- "spec/fixtures/deleted_subscription.json",
45
- "spec/fixtures/invalid_subscription.json",
46
- "spec/fixtures/list_metered_subscriptions.json",
47
- "spec/fixtures/migrate_subscription.json",
48
- "spec/fixtures/new_customer.json",
49
- "spec/fixtures/product.json",
50
- "spec/fixtures/products.json",
51
- "spec/fixtures/subscription.json",
52
- "spec/fixtures/subscription_not_found.json",
53
- "spec/fixtures/subscriptions.json",
54
- "spec/spec_helper.rb",
55
- "spec/support/fakeweb_stubs.rb",
56
- "spec/unit/chargify/config_spec.rb",
57
- "spec/unit/chargify/customer_spec.rb",
58
- "spec/unit/chargify/parser_spec.rb",
59
- "spec/unit/chargify/product_spec.rb",
60
- "spec/unit/chargify/subscription_spec.rb",
61
- "spec/unit/chargify/transaction_spec.rb",
62
- "stefl-chargify.gemspec"
19
+ ".rspec",
20
+ "Gemfile",
21
+ "Gemfile.lock",
22
+ "LICENSE",
23
+ "README.markdown",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "changelog.md",
27
+ "lib/chargify.rb",
28
+ "lib/chargify/base.rb",
29
+ "lib/chargify/config.rb",
30
+ "lib/chargify/customer.rb",
31
+ "lib/chargify/error.rb",
32
+ "lib/chargify/parser.rb",
33
+ "lib/chargify/product.rb",
34
+ "lib/chargify/product_family.rb",
35
+ "lib/chargify/subscription.rb",
36
+ "lib/chargify/transaction.rb",
37
+ "spec/fixtures/charge_subscription.json",
38
+ "spec/fixtures/charge_subscription_missing_parameters.json",
39
+ "spec/fixtures/component.json",
40
+ "spec/fixtures/components.json",
41
+ "spec/fixtures/customer.json",
42
+ "spec/fixtures/customers.json",
43
+ "spec/fixtures/deleted_subscription.json",
44
+ "spec/fixtures/invalid_subscription.json",
45
+ "spec/fixtures/list_metered_subscriptions.json",
46
+ "spec/fixtures/migrate_subscription.json",
47
+ "spec/fixtures/new_customer.json",
48
+ "spec/fixtures/product.json",
49
+ "spec/fixtures/products.json",
50
+ "spec/fixtures/subscription.json",
51
+ "spec/fixtures/subscription_not_found.json",
52
+ "spec/fixtures/subscriptions.json",
53
+ "spec/spec_helper.rb",
54
+ "spec/support/fakeweb_stubs.rb",
55
+ "spec/unit/chargify/config_spec.rb",
56
+ "spec/unit/chargify/customer_spec.rb",
57
+ "spec/unit/chargify/parser_spec.rb",
58
+ "spec/unit/chargify/product_spec.rb",
59
+ "spec/unit/chargify/subscription_spec.rb",
60
+ "spec/unit/chargify/transaction_spec.rb",
61
+ "stefl-chargify.gemspec"
63
62
  ]
64
63
  s.homepage = %q{http://github.com/stefl/chargify}
65
- s.rdoc_options = ["--charset=UTF-8"]
66
64
  s.require_paths = ["lib"]
67
65
  s.rubygems_version = %q{1.3.7}
68
66
  s.summary = %q{Ruby wrapper for the Chargify API}
69
67
  s.test_files = [
70
68
  "spec/spec_helper.rb",
71
- "spec/support/fakeweb_stubs.rb",
72
- "spec/unit/chargify/config_spec.rb",
73
- "spec/unit/chargify/customer_spec.rb",
74
- "spec/unit/chargify/parser_spec.rb",
75
- "spec/unit/chargify/product_spec.rb",
76
- "spec/unit/chargify/subscription_spec.rb",
77
- "spec/unit/chargify/transaction_spec.rb"
69
+ "spec/support/fakeweb_stubs.rb",
70
+ "spec/unit/chargify/config_spec.rb",
71
+ "spec/unit/chargify/customer_spec.rb",
72
+ "spec/unit/chargify/parser_spec.rb",
73
+ "spec/unit/chargify/product_spec.rb",
74
+ "spec/unit/chargify/subscription_spec.rb",
75
+ "spec/unit/chargify/transaction_spec.rb"
78
76
  ]
79
77
 
80
78
  if s.respond_to? :specification_version then
@@ -82,17 +80,32 @@ Gem::Specification.new do |s|
82
80
  s.specification_version = 3
83
81
 
84
82
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
83
+ s.add_runtime_dependency(%q<httparty>, ["~> 0.6.1"])
84
+ s.add_runtime_dependency(%q<hashie>, ["~> 0.4.0"])
85
+ s.add_runtime_dependency(%q<json>, [">= 0"])
86
+ s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0"])
87
+ s.add_runtime_dependency(%q<i18n>, [">= 0"])
85
88
  s.add_runtime_dependency(%q<httparty>, ["~> 0.6.1"])
86
89
  s.add_runtime_dependency(%q<hashie>, ["~> 0.4.0"])
87
90
  s.add_runtime_dependency(%q<json>, [">= 0"])
88
91
  s.add_runtime_dependency(%q<activesupport>, [">= 3.0.0"])
89
92
  else
93
+ s.add_dependency(%q<httparty>, ["~> 0.6.1"])
94
+ s.add_dependency(%q<hashie>, ["~> 0.4.0"])
95
+ s.add_dependency(%q<json>, [">= 0"])
96
+ s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
97
+ s.add_dependency(%q<i18n>, [">= 0"])
90
98
  s.add_dependency(%q<httparty>, ["~> 0.6.1"])
91
99
  s.add_dependency(%q<hashie>, ["~> 0.4.0"])
92
100
  s.add_dependency(%q<json>, [">= 0"])
93
101
  s.add_dependency(%q<activesupport>, [">= 3.0.0"])
94
102
  end
95
103
  else
104
+ s.add_dependency(%q<httparty>, ["~> 0.6.1"])
105
+ s.add_dependency(%q<hashie>, ["~> 0.4.0"])
106
+ s.add_dependency(%q<json>, [">= 0"])
107
+ s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
108
+ s.add_dependency(%q<i18n>, [">= 0"])
96
109
  s.add_dependency(%q<httparty>, ["~> 0.6.1"])
97
110
  s.add_dependency(%q<hashie>, ["~> 0.4.0"])
98
111
  s.add_dependency(%q<json>, [">= 0"])
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stefl-chargify
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 3
10
- version: 0.3.3
9
+ - 4
10
+ version: 0.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wynn Netherland
@@ -16,12 +16,10 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-04 00:00:00 +01:00
19
+ date: 2011-02-17 00:00:00 +00:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
- name: httparty
24
- prerelease: false
25
23
  requirement: &id001 !ruby/object:Gem::Requirement
26
24
  none: false
27
25
  requirements:
@@ -34,10 +32,10 @@ dependencies:
34
32
  - 1
35
33
  version: 0.6.1
36
34
  type: :runtime
35
+ name: httparty
36
+ prerelease: false
37
37
  version_requirements: *id001
38
38
  - !ruby/object:Gem::Dependency
39
- name: hashie
40
- prerelease: false
41
39
  requirement: &id002 !ruby/object:Gem::Requirement
42
40
  none: false
43
41
  requirements:
@@ -50,10 +48,10 @@ dependencies:
50
48
  - 0
51
49
  version: 0.4.0
52
50
  type: :runtime
51
+ name: hashie
52
+ prerelease: false
53
53
  version_requirements: *id002
54
54
  - !ruby/object:Gem::Dependency
55
- name: json
56
- prerelease: false
57
55
  requirement: &id003 !ruby/object:Gem::Requirement
58
56
  none: false
59
57
  requirements:
@@ -64,11 +62,87 @@ dependencies:
64
62
  - 0
65
63
  version: "0"
66
64
  type: :runtime
65
+ name: json
66
+ prerelease: false
67
67
  version_requirements: *id003
68
68
  - !ruby/object:Gem::Dependency
69
+ requirement: &id004 !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ hash: 7
75
+ segments:
76
+ - 3
77
+ - 0
78
+ - 0
79
+ version: 3.0.0
80
+ type: :runtime
69
81
  name: activesupport
70
82
  prerelease: false
71
- requirement: &id004 !ruby/object:Gem::Requirement
83
+ version_requirements: *id004
84
+ - !ruby/object:Gem::Dependency
85
+ requirement: &id005 !ruby/object:Gem::Requirement
86
+ none: false
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ hash: 3
91
+ segments:
92
+ - 0
93
+ version: "0"
94
+ type: :runtime
95
+ name: i18n
96
+ prerelease: false
97
+ version_requirements: *id005
98
+ - !ruby/object:Gem::Dependency
99
+ requirement: &id006 !ruby/object:Gem::Requirement
100
+ none: false
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ hash: 5
105
+ segments:
106
+ - 0
107
+ - 6
108
+ - 1
109
+ version: 0.6.1
110
+ type: :runtime
111
+ name: httparty
112
+ prerelease: false
113
+ version_requirements: *id006
114
+ - !ruby/object:Gem::Dependency
115
+ requirement: &id007 !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ~>
119
+ - !ruby/object:Gem::Version
120
+ hash: 15
121
+ segments:
122
+ - 0
123
+ - 4
124
+ - 0
125
+ version: 0.4.0
126
+ type: :runtime
127
+ name: hashie
128
+ prerelease: false
129
+ version_requirements: *id007
130
+ - !ruby/object:Gem::Dependency
131
+ requirement: &id008 !ruby/object:Gem::Requirement
132
+ none: false
133
+ requirements:
134
+ - - ">="
135
+ - !ruby/object:Gem::Version
136
+ hash: 3
137
+ segments:
138
+ - 0
139
+ version: "0"
140
+ type: :runtime
141
+ name: json
142
+ prerelease: false
143
+ version_requirements: *id008
144
+ - !ruby/object:Gem::Dependency
145
+ requirement: &id009 !ruby/object:Gem::Requirement
72
146
  none: false
73
147
  requirements:
74
148
  - - ">="
@@ -80,7 +154,9 @@ dependencies:
80
154
  - 0
81
155
  version: 3.0.0
82
156
  type: :runtime
83
- version_requirements: *id004
157
+ name: activesupport
158
+ prerelease: false
159
+ version_requirements: *id009
84
160
  description:
85
161
  email: justin.smestad@gmail.com
86
162
  executables: []
@@ -91,7 +167,6 @@ extra_rdoc_files:
91
167
  - LICENSE
92
168
  - README.markdown
93
169
  files:
94
- - .gitignore
95
170
  - .rspec
96
171
  - Gemfile
97
172
  - Gemfile.lock
@@ -140,8 +215,8 @@ homepage: http://github.com/stefl/chargify
140
215
  licenses: []
141
216
 
142
217
  post_install_message:
143
- rdoc_options:
144
- - --charset=UTF-8
218
+ rdoc_options: []
219
+
145
220
  require_paths:
146
221
  - lib
147
222
  required_ruby_version: !ruby/object:Gem::Requirement
data/.gitignore DELETED
@@ -1,23 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
- dist
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
- .bundle
21
-
22
- ## PROJECT::SPECIFIC
23
- dist/*