openmarket 0.0.5 → 0.0.6

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d796dd642228856036a3f663d3e0f06f2dc2a3b
4
- data.tar.gz: c357c5e06508a4bd48ef40c510318d9643ac8712
3
+ metadata.gz: 54b9aba4acfa0e64ec20936b08ef549c31ff43a8
4
+ data.tar.gz: 93469bc218fef41e03961c91b6ba06779453c8c5
5
5
  SHA512:
6
- metadata.gz: 730c8e58fecafed1f735d86a20dd889312670ce0db55978ecc9445d241657a0cbd29980b430ffa2eac837567f42dc44c533dd4d54376b44a62bea02292f4f0cc
7
- data.tar.gz: a738abfd4ca912fd379cbbf789b3cc869df1f9b83168ae6ddd932a564b718fe97907b8c7eadda794dd84440452acf2cd0e282e5a064c6d1348d61b8e11215cda
6
+ metadata.gz: 24b0ac29bbbad26c703340ba07f24b81713af4de914eb5b91f7e49baabc8f87de6f5ac1a5b5a0522b6cfb66d049b57137e43b670231021e96cdb8732b5b12ed4
7
+ data.tar.gz: 503c709dc284f0046086257389ba5a494d7d3fa3becbb24537859cb3fed3a5357715750c723b5acb7ead87833ee78ec3f2c4bbe53d7b021eb4fa77cdbdabbdba
data/Rakefile CHANGED
@@ -1,2 +1,17 @@
1
1
  require "bundler/gem_tasks"
2
2
 
3
+ namespace :openmarket do
4
+ desc "Get status of a ticket (Usage: TICKET_ID=... rake openmarket:status). Uses your test credentials."
5
+ task :status do
6
+ require "open_market/api"
7
+ require "logger"
8
+ SmsValidation.configure do |config|
9
+ config.logger = ::Logger.new(STDOUT)
10
+ end
11
+ OpenMarket.configure do |config|
12
+ secrets = YAML::load(File.open(File.expand_path("#{__FILE__}/../spec/support/secrets.yml")))
13
+ config.id, config.password, config.short_code, config.program_id = secrets['id'], secrets['password'], secrets['short_code'], secrets['program_id']
14
+ end
15
+ puts OpenMarket::API.status(ENV['TICKET_ID']).inspect
16
+ end
17
+ end
@@ -31,7 +31,7 @@ module OpenMarket
31
31
  end
32
32
  if message = xml.elements["message"]
33
33
  @udhi = message.attributes["udhi"] == true
34
- @data = [message.attributes["data"]].pack("H*")
34
+ @data = [message.attributes["data"]].pack("H*").unpack("C*").pack("U*")
35
35
  end
36
36
  end
37
37
 
@@ -1,3 +1,3 @@
1
1
  module OpenMarket
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -34,12 +34,12 @@ describe OpenMarket::Api do
34
34
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
35
35
  expect(args[0]).to eq("/wmp")
36
36
  puts args[1][:body].inspect
37
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"preview\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><destination ton=\"1\" address=\"1#{phone}\"\/><\/request>\z/
37
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"preview\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><destination ton=\"1\" address=\"1#{phone}\"\/><\/request>\z/
38
38
  original.call(*args, &block)
39
39
  end
40
40
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
41
41
  expect(args[0]).to eq("/wmp")
42
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
42
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
43
43
  original.call(*args, &block)
44
44
  end
45
45
  result = subject.send_sms(phone, "Test of OpenMarket API")
@@ -52,7 +52,7 @@ describe OpenMarket::Api do
52
52
  SmsValidation.configuration.on_message_too_long = :truncate
53
53
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
54
54
  expect(args[0]).to eq("/wmp")
55
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"1\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
55
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"1\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
56
56
  original.call(*args, &block)
57
57
  end
58
58
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id)
@@ -64,7 +64,7 @@ describe OpenMarket::Api do
64
64
  SmsValidation.configuration.on_message_too_long = :split
65
65
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
66
66
  expect(args[0]).to eq("/wmp")
67
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"2\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
67
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"2\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
68
68
  original.call(*args, &block)
69
69
  end
70
70
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id)
@@ -76,7 +76,7 @@ describe OpenMarket::Api do
76
76
  SmsValidation.configuration.on_message_too_long = :raise_error
77
77
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
78
78
  expect(args[0]).to eq("/wmp")
79
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
79
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
80
80
  original.call(*args, &block)
81
81
  end
82
82
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id)
@@ -104,7 +104,7 @@ describe OpenMarket::Api do
104
104
  it "should be in the XML" do
105
105
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
106
106
  expect(args[0]).to eq("/wmp")
107
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
107
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
108
108
  original.call(*args, &block)
109
109
  end
110
110
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id)
@@ -116,7 +116,7 @@ describe OpenMarket::Api do
116
116
  it "should be in the XML" do
117
117
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
118
118
  expect(args[0]).to eq("/wmp")
119
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option note=\"#{note}\" charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
119
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option note=\"#{note}\" charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
120
120
  original.call(*args, &block)
121
121
  end
122
122
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id, note: note)
@@ -128,7 +128,7 @@ describe OpenMarket::Api do
128
128
  it "should be in the XML" do
129
129
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
130
130
  expect(args[0]).to eq("/wmp")
131
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request ticket_id_for_retry=\"#{ticket_id_for_retry}\" version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
131
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request ticket_id_for_retry=\"#{ticket_id_for_retry}\" version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
132
132
  original.call(*args, &block)
133
133
  end
134
134
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id, ticket_id_for_retry: ticket_id_for_retry)
@@ -140,7 +140,7 @@ describe OpenMarket::Api do
140
140
  it "should be in the XML" do
141
141
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
142
142
  expect(args[0]).to eq("/wmp")
143
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><delivery receipt_requested=\"true\" url=\"#{dr_url}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
143
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><delivery receipt_requested=\"true\" url=\"#{dr_url}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
144
144
  original.call(*args, &block)
145
145
  end
146
146
  subject.send_sms(phone, "Test of OpenMarket API", dr_url: dr_url, carrier_id: carrier_id)
@@ -151,7 +151,7 @@ describe OpenMarket::Api do
151
151
  it "should be in the XML" do
152
152
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
153
153
  expect(args[0]).to eq("/wmp")
154
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><delivery receipt_requested=\"true\" url=\"#{dr_url}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message validity_period=\"1080\" text=\"Test of OpenMarket API\"\/><\/request>\z/
154
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><delivery receipt_requested=\"true\" url=\"#{dr_url}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message validity_period=\"1080\" text=\"Test of OpenMarket API\"\/><\/request>\z/
155
155
  original.call(*args, &block)
156
156
  end
157
157
  subject.send_sms(phone, "Test of OpenMarket API", dr_url: dr_url, carrier_id: carrier_id, minutes_to_retry: 18)
@@ -163,7 +163,7 @@ describe OpenMarket::Api do
163
163
  it "should be in the XML" do
164
164
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
165
165
  expect(args[0]).to eq("/wmp")
166
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><delivery receipt_requested=\"true\" url=\"#{dr_url}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message validity_period=\"3\" text=\"Test of OpenMarket API\"\/><\/request>\z/
166
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><delivery receipt_requested=\"true\" url=\"#{dr_url}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message validity_period=\"3\" text=\"Test of OpenMarket API\"\/><\/request>\z/
167
167
  original.call(*args, &block)
168
168
  end
169
169
  subject.send_sms(phone, "Test of OpenMarket API", dr_url: dr_url, carrier_id: carrier_id, minutes_to_retry: 1.0/divisor )
@@ -178,7 +178,7 @@ describe OpenMarket::Api do
178
178
  it "should be in the XML" do
179
179
  expect(OpenMarket::Api::Http).to receive(:post).and_wrap_original do |original, *args, &block|
180
180
  expect(args[0]).to eq("/wmp")
181
- expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.1\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
181
+ expect(args[1][:body]).to match /\A<\?xml version=\"1.0\" encoding=\"UTF-8\"\?><request version=\"3.0\" protocol=\"wmp\" type=\"submit\"><user agent=\"openmarket_rubygem\/SMS\/0\.0\.6\"\/><account id=\"#{id}\" password=\"#{password}\"\/><option charge_type=\"0\" program_id=\"#{program_id}\" mlc=\"0\"\/><source ton=\"3\" address=\"#{short_code}\"\/><destination ton=\"1\" address=\"1#{phone}\" carrier=\"#{carrier_id}\"\/><message text=\"Test of OpenMarket API\"\/><\/request>\z/
182
182
  original.call(*args, &block)
183
183
  end
184
184
  subject.send_sms(phone, "Test of OpenMarket API", carrier_id: carrier_id, short_code: short_code)
@@ -210,7 +210,7 @@ describe OpenMarket::Api do
210
210
  status = get_status
211
211
  break if 4 == status.status_code
212
212
  i += 1
213
- end while i < 5
213
+ end while i < 10
214
214
  expect(status.code).to eq(0)
215
215
  expect(status.description).to eq("No Error")
216
216
  expect(status.status_code).to eq(4)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openmarket
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Isaac Betesh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-09 00:00:00.000000000 Z
11
+ date: 2015-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler