rents 1.0.0 → 1.0.1
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/.gitignore +1 -0
- data/Contributing.md +203 -0
- data/Gemfile +3 -2
- data/README.md +1 -0
- data/lib/generators/templates/rents.rb +3 -3
- data/lib/rents/array.rb +6 -0
- data/lib/rents/config/enums/brands.yml +45 -0
- data/lib/rents/config/enums/currencies.yml +35 -0
- data/lib/rents/config/enums/payment_methods.yml +20 -0
- data/lib/rents/config/enums/recurrence_periods.yml +18 -0
- data/lib/rents/config/enums/transaction_codes.yml +31 -0
- data/lib/rents/config/proxy.example.yml +4 -0
- data/lib/rents/connection.rb +87 -12
- data/lib/rents/transaction.rb +61 -5
- data/lib/rents/version.rb +1 -1
- data/lib/rents.rb +43 -5
- data/modeling/API Routes.png +0 -0
- data/rents.gemspec +1 -1
- data/spec/file_helper.rb +42 -0
- data/spec/helpers.rb +12 -0
- data/spec/rents/status_spec.rb +3 -0
- data/spec/rents/transaction_spec.rb +662 -247
- metadata +22 -11
- /data/{modelagem → modeling}/Sequence - APIClient.asta +0 -0
- /data/{modelagem → modeling}/Structure - ClassDiagram.asta +0 -0
- /data/{modelagem → modeling}/WorkFlow - LocalGEM.asta +0 -0
- /data/{modelagem → modeling}/WorkFlow - LocalGEM.png +0 -0
- /data/{modelagem → modeling}/useful_files/card_operators/cielo/test_cards.txt +0 -0
- /data/{modelagem → modeling}/useful_files/card_operators/cielo/test_keys.txt +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rents
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilton Garcia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01
|
11
|
+
date: 2015-04-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.7'
|
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
|
-
version: '1.
|
26
|
+
version: '1.7'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -212,6 +212,7 @@ extensions: []
|
|
212
212
|
extra_rdoc_files: []
|
213
213
|
files:
|
214
214
|
- ".gitignore"
|
215
|
+
- Contributing.md
|
215
216
|
- Gemfile
|
216
217
|
- LICENSE.txt
|
217
218
|
- README.md
|
@@ -220,6 +221,13 @@ files:
|
|
220
221
|
- lib/generators/rents/install_generator.rb
|
221
222
|
- lib/generators/templates/rents.rb
|
222
223
|
- lib/rents.rb
|
224
|
+
- lib/rents/array.rb
|
225
|
+
- lib/rents/config/enums/brands.yml
|
226
|
+
- lib/rents/config/enums/currencies.yml
|
227
|
+
- lib/rents/config/enums/payment_methods.yml
|
228
|
+
- lib/rents/config/enums/recurrence_periods.yml
|
229
|
+
- lib/rents/config/enums/transaction_codes.yml
|
230
|
+
- lib/rents/config/proxy.example.yml
|
223
231
|
- lib/rents/connection.rb
|
224
232
|
- lib/rents/currency.rb
|
225
233
|
- lib/rents/hash.rb
|
@@ -227,13 +235,15 @@ files:
|
|
227
235
|
- lib/rents/string.rb
|
228
236
|
- lib/rents/transaction.rb
|
229
237
|
- lib/rents/version.rb
|
230
|
-
-
|
231
|
-
-
|
232
|
-
-
|
233
|
-
-
|
234
|
-
-
|
235
|
-
-
|
238
|
+
- modeling/API Routes.png
|
239
|
+
- modeling/Sequence - APIClient.asta
|
240
|
+
- modeling/Structure - ClassDiagram.asta
|
241
|
+
- modeling/WorkFlow - LocalGEM.asta
|
242
|
+
- modeling/WorkFlow - LocalGEM.png
|
243
|
+
- modeling/useful_files/card_operators/cielo/test_cards.txt
|
244
|
+
- modeling/useful_files/card_operators/cielo/test_keys.txt
|
236
245
|
- rents.gemspec
|
246
|
+
- spec/file_helper.rb
|
237
247
|
- spec/helpers.rb
|
238
248
|
- spec/rents/conversions_spec.rb
|
239
249
|
- spec/rents/currency_spec.rb
|
@@ -260,11 +270,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
260
270
|
version: '0'
|
261
271
|
requirements: []
|
262
272
|
rubyforge_project:
|
263
|
-
rubygems_version: 2.
|
273
|
+
rubygems_version: 2.4.5
|
264
274
|
signing_key:
|
265
275
|
specification_version: 4
|
266
276
|
summary: Rent$ payment Gateway & Intermediary ruby gem
|
267
277
|
test_files:
|
278
|
+
- spec/file_helper.rb
|
268
279
|
- spec/helpers.rb
|
269
280
|
- spec/rents/conversions_spec.rb
|
270
281
|
- spec/rents/currency_spec.rb
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|