active_merchant-epsilon 0.5.1 → 0.5.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de0b3aa4a30a45fb2382fd5ffc122fa5ee478aaa
4
- data.tar.gz: 44fbd6b127ffcf0fa4d463928a697664d94d6f25
3
+ metadata.gz: 027d869020a5fa2f81b4c998ae5340c8f585ffd9
4
+ data.tar.gz: f9d188d78f44ee648c036f478f1642d8bf55fddc
5
5
  SHA512:
6
- metadata.gz: 1f7e2bafadd6cd3568cc254bf51d1191b2e4fb387f92ae48280ebecf7e8f4c646e0280bae804515d126b56c56d94ec410a9a3486e0245c78c64d6802f25901c9
7
- data.tar.gz: cc2295750c7519d4fca101273b89ae1272c39988e2c28a84de1557517c6590fa93f19ece59f7701fe6d3da6f34b631fee08d92ce2739d06b009ff27c8c255993
6
+ metadata.gz: 36ec0e43f981fbc297111186ef3d7be5e7e07ac534d0c8f5e5cf46b81432b7574d25b32cfabb0dd591e194c39aa88f711ad9e6b8f8a98658b4a5f959dee9b643
7
+ data.tar.gz: 67cc6118ec0c7d66128be94796312b5806de5d371955f5028b42892dbd963ddd89c9e43502cad8f95edaa7a413be9473cc9b84c944e64b265ef065bce4bf34b9
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 2.1.6
5
+ - 2.2.2
6
+ script: bundle exec rake test:remote
data/README.md CHANGED
@@ -1,7 +1,9 @@
1
1
  # ActiveMerchant::Epsilon
2
+ [![Gem](https://img.shields.io/gem/v/active_merchant-epsilon.svg?style=flat-square)](https://rubygems.org/gems/active_merchant-epsilon)
3
+ [![Build Status](https://travis-ci.org/pepabo/active_merchant-epsilon.svg?branch=master)](https://travis-ci.org/pepabo/active_merchant-epsilon)
2
4
  [![wercker status](https://app.wercker.com/status/43c6648e20f325c8c0a560c36e89781c/s/master "wercker status")](https://app.wercker.com/project/bykey/43c6648e20f325c8c0a560c36e89781c)
3
5
 
4
- Epsilon integration for ActiveMerchant.
6
+ [Epsilon](http://www.epsilon.jp/) integration for ActiveMerchant.
5
7
 
6
8
  ## Installation
7
9
 
@@ -180,7 +182,7 @@ gateway = ActiveMerchant::Billing::EpsilonConvenienceStoreGateway.new
180
182
  convenience_store = ActiveMerchant::Billing::ConvenienceStore.new(
181
183
  code: ActiveMerchant::Billing::ConvenienceStore::Code::LAWSON,
182
184
  full_name_kana: 'ヤマダ タロウ',
183
- phone_nubmer: '0312345678'
185
+ phone_number: '0312345678'
184
186
  )
185
187
 
186
188
  purchase_detail = {
@@ -48,7 +48,7 @@ module ActiveMerchant
48
48
  end
49
49
 
50
50
  def valid_code?(code)
51
- [SEVEN_ELEVEN, FAMILY_MART, LAWSON, SEICO_MART].include?(code.to_i)
51
+ [Code::SEVEN_ELEVEN, Code::FAMILY_MART, Code::LAWSON, Code::SEICO_MART].include?(code.to_i)
52
52
  end
53
53
  end
54
54
  end
@@ -1,5 +1,5 @@
1
1
  module ActiveMerchant
2
2
  module Epsilon
3
- VERSION = "0.5.1"
3
+ VERSION = "0.5.2"
4
4
  end
5
5
  end
data/wercker.yml CHANGED
@@ -9,10 +9,3 @@ build:
9
9
  - script:
10
10
  name: rake test:unit
11
11
  code: bundle exec rake test:remote
12
-
13
- after-steps:
14
- - 2get/ikachan-notify@0.0.2:
15
- url: $IRC_URL
16
- channel: "#ruby"
17
- passed-message: "%02[CI]%0f $WERCKER_APPLICATION_NAME: $WERCKER_BUILD_URL build of $WERCKER_GIT_BRANCH %02%0301,03PASSED%0f"
18
- failed-message: "%02[CI]%0f $WERCKER_APPLICATION_NAME: $WERCKER_BUILD_URL build of $WERCKER_GIT_BRANCH %02%0301,04FAILED%0f"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_merchant-epsilon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kenichi TAKAHASHI
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-25 00:00:00.000000000 Z
11
+ date: 2015-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemerchant
@@ -145,6 +145,7 @@ extra_rdoc_files: []
145
145
  files:
146
146
  - ".env.sample"
147
147
  - ".gitignore"
148
+ - ".travis.yml"
148
149
  - CHANGELOG.md
149
150
  - Gemfile
150
151
  - LICENSE.txt