monetra 0.1.10 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest +1 -0
- data/Rakefile +1 -1
- data/lib/monetra/configuration.rb +1 -1
- data/lib/monetra/connection.rb +2 -1
- data/monetra.gemspec +14 -14
- metadata +3 -3
data/Manifest
CHANGED
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.11') do |p|
|
7
7
|
p.description = "A gem that uses the Monetra API to perform actions"
|
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
@@ -8,7 +8,8 @@ module Monetra
|
|
8
8
|
def post(data)
|
9
9
|
base.use_ssl = Monetra::Configuration.use_ssl?
|
10
10
|
if RUBY_VERSION.to_f == 1.9
|
11
|
-
base.verify_mode = OpenSSL::SSL::
|
11
|
+
base.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
12
|
+
base.ca_file = '/usr/lib/ssl/certs/ca-certificates.crt' if File.exists?('/usr/lib/ssl/certs/ca-certificates.crt') # Ubuntu
|
12
13
|
base.ca_path = '/etc/ssl/certs' if File.exists?('/etc/ssl/certs') # Ubuntu
|
13
14
|
base.ca_file = '/opt/local/share/curl/curl-ca-bundle.crt' if File.exists?('/opt/local/share/curl/curl-ca-bundle.crt') # Mac OS X
|
14
15
|
end
|
data/monetra.gemspec
CHANGED
@@ -1,22 +1,22 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
|
-
s.name =
|
5
|
-
s.version = "0.1.
|
4
|
+
s.name = "monetra"
|
5
|
+
s.version = "0.1.11"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = [
|
9
|
-
s.date =
|
10
|
-
s.description =
|
11
|
-
s.email = [
|
12
|
-
s.extra_rdoc_files = [
|
13
|
-
s.files = [
|
14
|
-
s.homepage =
|
15
|
-
s.rdoc_options = [
|
16
|
-
s.require_paths = [
|
17
|
-
s.rubyforge_project =
|
18
|
-
s.rubygems_version =
|
19
|
-
s.summary =
|
8
|
+
s.authors = ["Dan Ahern, John Kassimatis, Brian Woolley"]
|
9
|
+
s.date = "2012-01-31"
|
10
|
+
s.description = "A gem that uses the Monetra API to perform actions"
|
11
|
+
s.email = ["gems@danahern.com", "yonnage@gmail.com", "bwoolley@gmail.com"]
|
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"]
|
13
|
+
s.files = ["Manifest", "Rakefile", "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", "monetra.gemspec"]
|
14
|
+
s.homepage = "http://github.com/winelibrary/monetra"
|
15
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Monetra"]
|
16
|
+
s.require_paths = ["lib"]
|
17
|
+
s.rubyforge_project = "monetra"
|
18
|
+
s.rubygems_version = "1.8.10"
|
19
|
+
s.summary = "A gem that uses the Monetra API to perform actions"
|
20
20
|
|
21
21
|
if s.respond_to? :specification_version then
|
22
22
|
s.specification_version = 3
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: monetra
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.11
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Dan Ahern, John Kassimatis, Brian Woolley
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2012-01-31 00:00:00 Z
|
14
14
|
dependencies: []
|
15
15
|
|
16
16
|
description: A gem that uses the Monetra API to perform actions
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements: []
|
72
72
|
|
73
73
|
rubyforge_project: monetra
|
74
|
-
rubygems_version: 1.8.
|
74
|
+
rubygems_version: 1.8.10
|
75
75
|
signing_key:
|
76
76
|
specification_version: 3
|
77
77
|
summary: A gem that uses the Monetra API to perform actions
|