catarse_pagarme 2.6.6 → 2.6.7
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 +4 -4
- data/Gemfile.lock +2 -7
- data/app/views/catarse_pagarme/pagarme/review.html.slim +6 -6
- data/lib/catarse_pagarme/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bde1496ec238e0d5eb66fb9539a1a438ff8db222
|
|
4
|
+
data.tar.gz: fe18515868434cf83ef8c5eff163e53e3ac0b98f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 984980c21c46981942229089382a7cf58c0d14350d1f7a2db5c531e3e55dc98914768dd6db1e3f9e01d5c8d1373def63d2237e3bbf724062fe75d41c4614874c
|
|
7
|
+
data.tar.gz: 0e2818fa88cb2984e19256f62d93516ac1b7eeb6646e0048dca151b8b69673b96a20575c6c037a139d899210077508699fba78a750d0e8dd200f5afdf30984bb
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
catarse_pagarme (2.6.
|
|
4
|
+
catarse_pagarme (2.6.7)
|
|
5
5
|
pagarme (~> 1.9.8)
|
|
6
6
|
rails (~> 4.0)
|
|
7
7
|
|
|
@@ -45,7 +45,6 @@ GEM
|
|
|
45
45
|
factory_girl_rails (4.4.1)
|
|
46
46
|
factory_girl (~> 4.4.0)
|
|
47
47
|
railties (>= 3.0.0)
|
|
48
|
-
hike (1.2.3)
|
|
49
48
|
http-cookie (1.0.2)
|
|
50
49
|
domain_name (~> 0.5)
|
|
51
50
|
i18n (0.6.11)
|
|
@@ -97,18 +96,14 @@ GEM
|
|
|
97
96
|
rspec-core (~> 2.14.0)
|
|
98
97
|
rspec-expectations (~> 2.14.0)
|
|
99
98
|
rspec-mocks (~> 2.14.0)
|
|
100
|
-
sprockets (
|
|
101
|
-
hike (~> 1.2)
|
|
102
|
-
multi_json (~> 1.0)
|
|
99
|
+
sprockets (3.0.3)
|
|
103
100
|
rack (~> 1.0)
|
|
104
|
-
tilt (~> 1.1, != 1.3.0)
|
|
105
101
|
sprockets-rails (2.2.4)
|
|
106
102
|
actionpack (>= 3.0)
|
|
107
103
|
activesupport (>= 3.0)
|
|
108
104
|
sprockets (>= 2.8, < 4.0)
|
|
109
105
|
thor (0.19.1)
|
|
110
106
|
thread_safe (0.3.4)
|
|
111
|
-
tilt (1.4.1)
|
|
112
107
|
treetop (1.4.15)
|
|
113
108
|
polyglot
|
|
114
109
|
polyglot (>= 0.3.1)
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
- current_user.credit_cards.each_with_index do |credit_card, i|
|
|
22
22
|
= label_tag "payment_subscription_card_#{credit_card.card_key}" do
|
|
23
23
|
.w-row.creditcard-records
|
|
24
|
-
.w-col.w-col-1
|
|
24
|
+
.w-col.w-col-1.w-sub-col
|
|
25
25
|
.w-radio.w-clearfix.back-payment-credit-card-radio-field
|
|
26
26
|
= radio_button_tag :payment_subscription_card, credit_card.card_key, i == 0, {"data-stored" => true}
|
|
27
|
-
.w-col.w-col-2
|
|
27
|
+
.w-col.w-col-2.w-sub-col
|
|
28
28
|
.fontsize-small.fontweight-semibold.text-success
|
|
29
29
|
= credit_card.card_brand.upcase
|
|
30
|
-
.w-col.w-col-5
|
|
30
|
+
.w-col.w-col-5.w-sub-col
|
|
31
31
|
.fontsize-small.fontweight-semibold.u-marginbottom-20
|
|
32
32
|
= "XXXX.XXXX.XXXX.#{credit_card.last_digits}"
|
|
33
33
|
.w-col.w-col-4
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
= select_tag :payment_card_installments, options_for_select(installments_for_select(payment)), class: 'w-select text-field text-field-creditcard'
|
|
36
36
|
= label_tag :payment_subscription_card_0 do
|
|
37
37
|
.w-row.creditcard-records
|
|
38
|
-
.w-col.w-col-1
|
|
38
|
+
.w-col.w-col-1.w-sub-col
|
|
39
39
|
.w-radio.w-clearfix.back-payment-credit-card-radio-field
|
|
40
40
|
= radio_button_tag :payment_subscription_card, 0
|
|
41
41
|
.w-col.w-col-11
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
| Por favor digite o nome escrito no cartão
|
|
52
52
|
.w-row
|
|
53
53
|
|
|
54
|
-
.w-col.w-col-9.w-col-small-9.w-col-tiny-9
|
|
54
|
+
.w-col.w-col-9.w-col-small-9.w-col-tiny-9.w-sub-col
|
|
55
55
|
= label_tag :payment_card_number, t('projects.contributions.edit.form_labels.payment_card_number'), class: 'fontweight-semibold field-label'
|
|
56
56
|
= phone_field_tag :payment_card_number, nil, class: 'w-input text-field', required: true
|
|
57
57
|
.fontsize-smaller.text-error.u-marginbottom-20.fa.fa-exclamation-triangle.w-hidden[data-error-for="payment_card_number"]
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
#payment_card_flag.fontsize-smallest.fontcolor-secondary.u-text-center.w-input.text-field
|
|
62
62
|
|
|
|
63
63
|
.w-row
|
|
64
|
-
.w-col.w-col-6.w-col-small-6.w-col-tiny-6
|
|
64
|
+
.w-col.w-col-6.w-col-small-6.w-col-tiny-6.w-sub-col
|
|
65
65
|
= label_tag :payment_card_source, t('projects.contributions.edit.form_labels.payment_card_source'), class: 'field-label fontweight-semibold w-hidden-medium'
|
|
66
66
|
= label_tag :payment_card_source, t('projects.contributions.edit.form_labels.payment_card_source_short'), class: 'field-label fontweight-semibold w-hidden-main w-hidden-small w-hidden-tiny'
|
|
67
67
|
= phone_field_tag :payment_card_source, nil, class: 'w-input text-field', required: true, autocomplete: 'off'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: catarse_pagarme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antônio Roberto Silva
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-
|
|
12
|
+
date: 2015-05-05 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|