chargify_api_ares 1.2.1 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 48e5c5fd5647dd9d07d3db7aa2123439992b041e
4
- data.tar.gz: 9f727a3742bac92a6d8f855637d3fbef313589f1
3
+ metadata.gz: 48e64563d9deb05bde8aa0d73e6b26ca0d3a85da
4
+ data.tar.gz: c25bfbc8d20991140071e2a5f99be2c399f095e7
5
5
  SHA512:
6
- metadata.gz: fc179b768b7d6bd000633bc4611da353a150edaf6d31f7a065d3800f6412f7114ee806f02edd2534c1db8d7013bcb7dca9ab5b4a510f1ea16e5b68bc432ba361
7
- data.tar.gz: 24dd8ddb32d0463e86c25f8619ec909b3e30bece65c80075878f99fb1c9edbea06933a72b940341d66e9f1678719c35e5ef18567be12ed4fe190d1b093784ba0
6
+ metadata.gz: 76ea7196b907b827ff34e7d40b874f256a2848ea5c7f9ae72a4e1bd7d75eb5da955b8d83082656c53cae8fe1e91563467f683e6b58b35207b18a09a699c0b6e7
7
+ data.tar.gz: b930750ef0e56496b650c84bcaf8c597f4dff0f7b522d42e1a00bb2c172eb89ea3fef09ae938f38376bd3771c060ee1fbd2f4c35dad6854618e8332f3322b127
data/.travis.yml CHANGED
@@ -1,5 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 2.1.3
3
4
  - 2.1.2
4
5
  - 2.0.0
5
6
  - 1.9.3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- chargify_api_ares (1.2.1)
4
+ chargify_api_ares (1.3.0)
5
5
  activeresource (>= 3.2.16)
6
6
 
7
7
  GEM
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.7'
5
5
 
6
6
  s.name = 'chargify_api_ares'
7
- s.version = '1.2.1'
8
- s.date = '2014-09-18'
7
+ s.version = '1.3.0'
8
+ s.date = '2014-10-19'
9
9
  s.summary = 'A Chargify API wrapper for Ruby using ActiveResource'
10
10
  s.description = ''
11
11
  s.authors = ["Michael Klett", "Nathan Verni", "Jeremy W. Rowe", "Eric Farkas"]
@@ -25,6 +25,7 @@ require 'chargify_api_ares/resources/webhook'
25
25
  require 'chargify_api_ares/resources/invoice'
26
26
  require 'chargify_api_ares/resources/customer_metafield'
27
27
  require 'chargify_api_ares/resources/subscription_metafield'
28
+ require 'chargify_api_ares/resources/allocation'
28
29
 
29
30
  require 'active_resource/version'
30
31
  if defined?(::ActiveResource::VERSION::MAJOR) &&
@@ -0,0 +1,9 @@
1
+ module Chargify
2
+
3
+ class Allocation < Base
4
+
5
+ self.prefix = "/subscriptions/:subscription_id/components/:component_id/"
6
+
7
+ end
8
+
9
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chargify_api_ares
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Klett
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2014-09-18 00:00:00.000000000 Z
14
+ date: 2014-10-19 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: activeresource
@@ -215,6 +215,7 @@ files:
215
215
  - lib/chargify_api_ares/behaviors/metadata.rb
216
216
  - lib/chargify_api_ares/behaviors/metafield.rb
217
217
  - lib/chargify_api_ares/config.rb
218
+ - lib/chargify_api_ares/resources/allocation.rb
218
219
  - lib/chargify_api_ares/resources/base.rb
219
220
  - lib/chargify_api_ares/resources/charge.rb
220
221
  - lib/chargify_api_ares/resources/component.rb
@@ -283,7 +284,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
283
284
  version: '0'
284
285
  requirements: []
285
286
  rubyforge_project:
286
- rubygems_version: 2.4.1
287
+ rubygems_version: 2.2.2
287
288
  signing_key:
288
289
  specification_version: 3
289
290
  summary: A Chargify API wrapper for Ruby using ActiveResource