monetra 0.1.23 → 0.1.24
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 +7 -0
- data/Rakefile +1 -1
- data/lib/monetra/connection.rb +2 -2
- data/monetra.gemspec +4 -4
- metadata +36 -41
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ca6cc11ef2a23baf267648d54c8bab5dfd38e07a
|
4
|
+
data.tar.gz: 21a7d4d15df8da93b24f0fe8392e09bcd02febb9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3cb5b9d34c2cd27564bd2380732c6e2b1e02d83a9edc606faa4642616c24c62570c7c0744ea34b6f47fd78d7bd9be050a8622016ca893e6d01e66f6f50b3c01f
|
7
|
+
data.tar.gz: 7dd3d000b7f0654f4fb26d308d88889a6f0e3b71718bf9dd785546bba3c7e9dc9a5bdbb7cb1e22c1a988d79c80820f57fa109b024bada49948b367a508f88d0d
|
data/Rakefile
CHANGED
@@ -3,7 +3,7 @@ require 'psych'
|
|
3
3
|
require 'rake'
|
4
4
|
require 'echoe'
|
5
5
|
YAML::ENGINE.yamler = 'syck'
|
6
|
-
Echoe.new('monetra', '0.1.
|
6
|
+
Echoe.new('monetra', '0.1.24') do |p|
|
7
7
|
p.description = "Wine Library Monetra gem to interface with their API"
|
8
8
|
p.url = "http://github.com/winelibrary/monetra"
|
9
9
|
p.author = ["Dan Ahern", "John Kassimatis", "Brian Woolley"]
|
data/lib/monetra/connection.rb
CHANGED
@@ -14,7 +14,7 @@ module Monetra
|
|
14
14
|
|
15
15
|
private
|
16
16
|
def ssl_certificate
|
17
|
-
if RUBY_VERSION.to_f
|
17
|
+
if RUBY_VERSION.to_f > 1.9
|
18
18
|
# base.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
19
19
|
base.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
20
20
|
case
|
@@ -23,7 +23,7 @@ module Monetra
|
|
23
23
|
when File.exists?('/etc/ssl/certs') # Ubuntu
|
24
24
|
base.ca_path = '/etc/ssl/certs'
|
25
25
|
when File.exists?('/usr/lib/ssl/certs/ca-certificates.crt') # heroku
|
26
|
-
base.ca_file = '/usr/lib/ssl/certs/ca-certificates.crt'
|
26
|
+
base.ca_file = '/usr/lib/ssl/certs/ca-certificates.crt'
|
27
27
|
when File.exists?('/opt/local/share/curl/curl-ca-bundle.crt') # Mac OS X
|
28
28
|
base.ca_file = '/opt/local/share/curl/curl-ca-bundle.crt'
|
29
29
|
end
|
data/monetra.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "monetra"
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.24"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Dan Ahern, John Kassimatis, Brian Woolley"]
|
9
|
-
s.date = "
|
9
|
+
s.date = "2013-04-20"
|
10
10
|
s.description = "Wine Library Monetra gem to interface with their API"
|
11
11
|
s.email = ["gems@danahern.com", "yonnage@gmail.com", "bwoolley@gmail.com"]
|
12
12
|
s.extra_rdoc_files = ["lib/monetra.rb", "lib/monetra/configuration.rb", "lib/monetra/connection.rb", "lib/monetra/parse.rb", "lib/monetra/transaction.rb", "lib/monetra/transaction/admin.rb", "lib/monetra/transaction/engine.rb", "lib/monetra/transaction/token.rb", "lib/monetra/transaction/user.rb"]
|
@@ -15,11 +15,11 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Monetra"]
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
s.rubyforge_project = "monetra"
|
18
|
-
s.rubygems_version = "
|
18
|
+
s.rubygems_version = "2.0.0"
|
19
19
|
s.summary = "Wine Library Monetra gem to interface with their API"
|
20
20
|
|
21
21
|
if s.respond_to? :specification_version then
|
22
|
-
s.specification_version =
|
22
|
+
s.specification_version = 4
|
23
23
|
|
24
24
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
25
25
|
s.add_runtime_dependency(%q<builder>, [">= 0"])
|
metadata
CHANGED
@@ -1,38 +1,37 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: monetra
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
version: 0.1.23
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.24
|
6
5
|
platform: ruby
|
7
|
-
authors:
|
6
|
+
authors:
|
8
7
|
- Dan Ahern, John Kassimatis, Brian Woolley
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2013-04-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
16
14
|
name: builder
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: "0"
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
24
20
|
type: :runtime
|
25
|
-
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
26
27
|
description: Wine Library Monetra gem to interface with their API
|
27
|
-
email:
|
28
|
+
email:
|
28
29
|
- gems@danahern.com
|
29
30
|
- yonnage@gmail.com
|
30
31
|
- bwoolley@gmail.com
|
31
32
|
executables: []
|
32
|
-
|
33
33
|
extensions: []
|
34
|
-
|
35
|
-
extra_rdoc_files:
|
34
|
+
extra_rdoc_files:
|
36
35
|
- lib/monetra.rb
|
37
36
|
- lib/monetra/configuration.rb
|
38
37
|
- lib/monetra/connection.rb
|
@@ -42,7 +41,7 @@ extra_rdoc_files:
|
|
42
41
|
- lib/monetra/transaction/engine.rb
|
43
42
|
- lib/monetra/transaction/token.rb
|
44
43
|
- lib/monetra/transaction/user.rb
|
45
|
-
files:
|
44
|
+
files:
|
46
45
|
- Manifest
|
47
46
|
- Rakefile
|
48
47
|
- lib/monetra.rb
|
@@ -57,33 +56,29 @@ files:
|
|
57
56
|
- monetra.gemspec
|
58
57
|
homepage: http://github.com/winelibrary/monetra
|
59
58
|
licenses: []
|
60
|
-
|
59
|
+
metadata: {}
|
61
60
|
post_install_message:
|
62
|
-
rdoc_options:
|
61
|
+
rdoc_options:
|
63
62
|
- --line-numbers
|
64
63
|
- --inline-source
|
65
64
|
- --title
|
66
65
|
- Monetra
|
67
|
-
require_paths:
|
66
|
+
require_paths:
|
68
67
|
- lib
|
69
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
- !ruby/object:Gem::Version
|
80
|
-
version: "1.2"
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '1.2'
|
81
78
|
requirements: []
|
82
|
-
|
83
79
|
rubyforge_project: monetra
|
84
|
-
rubygems_version:
|
80
|
+
rubygems_version: 2.0.0
|
85
81
|
signing_key:
|
86
|
-
specification_version:
|
82
|
+
specification_version: 4
|
87
83
|
summary: Wine Library Monetra gem to interface with their API
|
88
84
|
test_files: []
|
89
|
-
|