catarse_moip 2.3.5 → 2.3.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: 344c36a8fed0b4c53949562fee1feabd419cea52
4
- data.tar.gz: 833ac6e545acf8db63daf96af3a25c4c398bf26c
3
+ metadata.gz: 292517b36fffd4d8d67041e5a76bd6c8ad8194ba
4
+ data.tar.gz: 9bff0bb7d02d42ad8db94c400bde5e2e7dc1051d
5
5
  SHA512:
6
- metadata.gz: ef56b20b4ecd2be6a39d2fde01d2ab9d44a2e7d72eb439ee5e92257cda0bc42bfcb3b44e81c0e7fc937e157a9284a4f59c5efd034645544068f7b2f66848ab39
7
- data.tar.gz: c7e8db509efcb22edefb45b7bfd5574df75fc2ba6940d7488c86f67bb44abfcefe4c1a6dbe34379376d46b481ac8da845b7b1eca68cc467faac5087a399408a0
6
+ metadata.gz: 098817dba512473eabd06ed765a7b7fc1e545312f7f93af322fed241a3dc5f45337f55485548dacce203c213792a2ffa37d2ef90a43b8d5b57662fe171917f17
7
+ data.tar.gz: a0a9d44b71900a81a5552c9d443d3a595504e2b4145e05df26252d5bfb8a91855be1320fbbe072772f7891903d40a10f2fdcc5eaa6ee7c82d4e2ee7e88878201
@@ -10,7 +10,7 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- catarse_moip (2.3.4)
13
+ catarse_moip (2.3.6)
14
14
  enumerate_it
15
15
  libxml-ruby (~> 2.6.0)
16
16
  rails (~> 4.0)
@@ -42,13 +42,13 @@ GEM
42
42
  multi_json (~> 1.3)
43
43
  thread_safe (~> 0.1)
44
44
  tzinfo (~> 0.3.37)
45
- arel (4.0.1)
45
+ arel (4.0.2)
46
46
  atomic (1.1.14)
47
47
  builder (3.1.4)
48
48
  crack (0.1.8)
49
49
  database_cleaner (1.1.1)
50
50
  diff-lcs (1.2.4)
51
- enumerate_it (1.2.0)
51
+ enumerate_it (1.2.3)
52
52
  activesupport (>= 3.0.0)
53
53
  erubis (2.7.0)
54
54
  factory_girl (4.2.0)
@@ -69,7 +69,7 @@ GEM
69
69
  multi_json (1.8.0)
70
70
  nokogiri (1.5.10)
71
71
  pg (0.17.0)
72
- polyglot (0.3.3)
72
+ polyglot (0.3.5)
73
73
  rack (1.5.2)
74
74
  rack-test (0.6.2)
75
75
  rack (>= 1.0)
@@ -98,7 +98,7 @@ GEM
98
98
  rspec-core (~> 2.14.0)
99
99
  rspec-expectations (~> 2.14.0)
100
100
  rspec-mocks (~> 2.14.0)
101
- sprockets (2.10.1)
101
+ sprockets (2.12.2)
102
102
  hike (~> 1.2)
103
103
  multi_json (~> 1.0)
104
104
  rack (~> 1.0)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # CatarseMoip [![Build Status](https://travis-ci.org/catarse/catarse_moip.png)](https://travis-ci.org/catarse/catarse_moip)
1
+ # CatarseMoip [![Code Climate](https://codeclimate.com/github/catarse/catarse_moip.png)](https://codeclimate.com/github/catarse/catarse_moip)
2
2
 
3
3
  Catarse moip integration with [Catarse](http://github.com/catarse/catarse) crowdfunding platform
4
4
 
@@ -1,5 +1,5 @@
1
1
  ::MoIP.setup do |config|
2
- config.uri = (PaymentEngines.configuration[:moip_uri] rescue nil) || ''
3
- config.token = (PaymentEngines.configuration[:moip_token] rescue nil) || ''
4
- config.key = (PaymentEngines.configuration[:moip_key] rescue nil) || ''
2
+ config.uri = (PaymentEngines.configuration.get_without_cache(:moip_uri) rescue nil) || ''
3
+ config.token = (PaymentEngines.configuration.get_without_cache(:moip_token) rescue nil) || ''
4
+ config.key = (PaymentEngines.configuration.get_without_cache(:moip_key) rescue nil) || ''
5
5
  end
@@ -1,3 +1,3 @@
1
1
  module CatarseMoip
2
- VERSION = "2.3.5"
2
+ VERSION = "2.3.6"
3
3
  end
@@ -13,7 +13,7 @@ development:
13
13
  encoding: utf-8
14
14
  database: catarse_development
15
15
  pool: 5
16
- username: ton
16
+ username: catarse
17
17
 
18
18
 
19
19
  # Connect on a TCP socket. Omitted by default since the client uses a
@@ -35,12 +35,11 @@ development:
35
35
  # re-generated from your development database when you run "rake".
36
36
  # Do not set this db to the same as development or production.
37
37
  test: &test
38
- host: localhost
39
38
  adapter: postgresql
40
39
  encoding: utf-8
41
40
  database: catarse_test
42
41
  pool: 5
43
- username: ton
42
+ username: catarse
44
43
 
45
44
 
46
45
  production:
@@ -48,4 +47,4 @@ production:
48
47
  encoding: utf-8
49
48
  database: catarse_production
50
49
  pool: 5
51
- username: ton
50
+ username: catarse
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: catarse_moip
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.5
4
+ version: 2.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antônio Roberto Silva
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-04-22 00:00:00.000000000 Z
13
+ date: 2014-09-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -199,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
199
  version: '0'
200
200
  requirements: []
201
201
  rubyforge_project:
202
- rubygems_version: 2.2.0
202
+ rubygems_version: 2.2.2
203
203
  signing_key:
204
204
  specification_version: 4
205
205
  summary: MoIP integration with Catarse