recurly 2.5.4 → 2.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/recurly.rb +18 -0
- data/lib/recurly/version.rb +1 -1
- metadata +21 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bb8fbde37c70b1e64c348ce6a5fb926194de63ad57a1aa9913afd42880a8acdd
|
4
|
+
data.tar.gz: 201a6232dd1570bb55191301e0bae22e1d761a3e871a15f0d39a2835b90364c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a220fe45b5b2a7de8d4c9d9ba18a21dc2dc2acd213fce443115f3b89b664007cb9b589ba2fded161e1ab164d9c3f1bd23cd99ed13a0dc6f92181d18ad70bc04
|
7
|
+
data.tar.gz: 8010a639e611d44709d71851e71142a8f790bbf34dc139f4f355695615240393b55c28299a47cfe467c94bb82b31e0f2efc78f3e098ac5817452861953493c42
|
data/lib/recurly.rb
CHANGED
@@ -80,6 +80,8 @@ module Recurly
|
|
80
80
|
end
|
81
81
|
|
82
82
|
# Assigns a logger to log requests/responses and more.
|
83
|
+
# The logger can only be set if the environment variable
|
84
|
+
# `RECURLY_INSECURE_DEBUG` equals `true`.
|
83
85
|
#
|
84
86
|
# @return [Logger, nil]
|
85
87
|
# @example
|
@@ -91,6 +93,22 @@ module Recurly
|
|
91
93
|
# Recurly.logger = nil # Or Recurly.logger = Logger.new nil
|
92
94
|
attr_accessor :logger
|
93
95
|
|
96
|
+
def logger=(logger)
|
97
|
+
if ENV['RECURLY_INSECURE_DEBUG'].to_s.downcase == 'true'
|
98
|
+
@logger = logger
|
99
|
+
puts <<-MSG
|
100
|
+
[WARNING] Recurly logger enabled. The logger has the potential to leak
|
101
|
+
PII and should never be used in production environments.
|
102
|
+
MSG
|
103
|
+
else
|
104
|
+
puts <<-MSG
|
105
|
+
[WARNING] Recurly logger has been disabled. If you wish to use it,
|
106
|
+
only do so in a non-production environment and make sure
|
107
|
+
the `RECURLY_INSECURE_DEBUG` environment variable is set to `true`.
|
108
|
+
MSG
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
94
112
|
# Convenience logging method includes a Logger#progname dynamically.
|
95
113
|
# @return [true, nil]
|
96
114
|
def log level, message
|
data/lib/recurly/version.rb
CHANGED
metadata
CHANGED
@@ -1,55 +1,55 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recurly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.
|
4
|
+
version: 2.5.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '11.1'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '11.1'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: minitest
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - ~>
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '5.8'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - ~>
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '5.8'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: webmock
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - ~>
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '1.24'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.24'
|
55
55
|
description: 'An API client library for Recurly: http://recurly.com'
|
@@ -60,17 +60,20 @@ extensions: []
|
|
60
60
|
extra_rdoc_files:
|
61
61
|
- README.md
|
62
62
|
files:
|
63
|
+
- README.md
|
64
|
+
- bin/recurly
|
63
65
|
- lib/ecurly.rb
|
64
66
|
- lib/rails/generators/recurly/config_generator.rb
|
65
67
|
- lib/rails/recurly.rb
|
68
|
+
- lib/recurly.rb
|
66
69
|
- lib/recurly/account.rb
|
67
70
|
- lib/recurly/add_on.rb
|
68
71
|
- lib/recurly/address.rb
|
69
72
|
- lib/recurly/adjustment.rb
|
70
73
|
- lib/recurly/all.rb
|
74
|
+
- lib/recurly/api.rb
|
71
75
|
- lib/recurly/api/errors.rb
|
72
76
|
- lib/recurly/api/net_http_adapter.rb
|
73
|
-
- lib/recurly/api.rb
|
74
77
|
- lib/recurly/billing_info.rb
|
75
78
|
- lib/recurly/coupon.rb
|
76
79
|
- lib/recurly/error.rb
|
@@ -81,18 +84,19 @@ files:
|
|
81
84
|
- lib/recurly/money.rb
|
82
85
|
- lib/recurly/plan.rb
|
83
86
|
- lib/recurly/redemption.rb
|
87
|
+
- lib/recurly/resource.rb
|
84
88
|
- lib/recurly/resource/association.rb
|
85
89
|
- lib/recurly/resource/errors.rb
|
86
90
|
- lib/recurly/resource/pager.rb
|
87
|
-
- lib/recurly/resource.rb
|
88
|
-
- lib/recurly/subscription/add_ons.rb
|
89
91
|
- lib/recurly/subscription.rb
|
92
|
+
- lib/recurly/subscription/add_ons.rb
|
90
93
|
- lib/recurly/subscription_add_on.rb
|
91
94
|
- lib/recurly/tax_detail.rb
|
92
|
-
- lib/recurly/transaction/errors.rb
|
93
95
|
- lib/recurly/transaction.rb
|
96
|
+
- lib/recurly/transaction/errors.rb
|
94
97
|
- lib/recurly/usage.rb
|
95
98
|
- lib/recurly/version.rb
|
99
|
+
- lib/recurly/webhook.rb
|
96
100
|
- lib/recurly/webhook/account_notification.rb
|
97
101
|
- lib/recurly/webhook/billing_info_updated_notification.rb
|
98
102
|
- lib/recurly/webhook/canceled_account_notification.rb
|
@@ -117,38 +121,33 @@ files:
|
|
117
121
|
- lib/recurly/webhook/transaction_notification.rb
|
118
122
|
- lib/recurly/webhook/updated_subscription_notification.rb
|
119
123
|
- lib/recurly/webhook/void_payment_notification.rb
|
120
|
-
- lib/recurly/
|
124
|
+
- lib/recurly/xml.rb
|
121
125
|
- lib/recurly/xml/nokogiri.rb
|
122
126
|
- lib/recurly/xml/rexml.rb
|
123
|
-
- lib/recurly/xml.rb
|
124
|
-
- lib/recurly.rb
|
125
|
-
- README.md
|
126
|
-
- bin/recurly
|
127
127
|
homepage: https://github.com/recurly/recurly-client-ruby
|
128
128
|
licenses:
|
129
129
|
- MIT
|
130
130
|
metadata: {}
|
131
131
|
post_install_message:
|
132
132
|
rdoc_options:
|
133
|
-
- --main
|
133
|
+
- "--main"
|
134
134
|
- README.md
|
135
135
|
require_paths:
|
136
136
|
- lib
|
137
137
|
required_ruby_version: !ruby/object:Gem::Requirement
|
138
138
|
requirements:
|
139
|
-
- -
|
139
|
+
- - ">="
|
140
140
|
- !ruby/object:Gem::Version
|
141
141
|
version: 1.9.3
|
142
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
|
-
- -
|
144
|
+
- - ">="
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
148
|
rubyforge_project:
|
149
|
-
rubygems_version: 2.
|
149
|
+
rubygems_version: 2.7.6
|
150
150
|
signing_key:
|
151
151
|
specification_version: 4
|
152
152
|
summary: Recurly API Client
|
153
153
|
test_files: []
|
154
|
-
has_rdoc: true
|