vantiv_lite 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8c91c1fa1527e5eaa1e94d100c3e3bf4e56b806c
4
- data.tar.gz: 1bd58157041ce8fb7a6215587f8129bf9f07d9e5
3
+ metadata.gz: 145bce8be8a54f2181fb4b7c6acb270222394fe5
4
+ data.tar.gz: 8e90b8343b8ad3464cccb12320dba5257979e20a
5
5
  SHA512:
6
- metadata.gz: d1e0c35fb1d8cdd08f16da4ae9ff1a12db86344ec6ecb0f5b431897fd65674f02523e3bb9bb41c2d7aeb233303ee2b99e5bab2ca7178802e36f35af732631e56
7
- data.tar.gz: f6ba9b13570f4395d3fb40c3f69025d94a5ec75bfc550cc86eaf9daa3641266e3df4e80d3233d9517f32eb7de2d74d690fd85e83a03a26d5f32bb43d1e07a5da
6
+ metadata.gz: 356438db716dec57f83a740ce3e7ec6a180dbfa5be38c6d271f1419d6f79bc3f54eba54f5769bc4c38407c1619a341cf9fa39bd672455d76207ade9a43aa092c
7
+ data.tar.gz: 96148c67becce2e6f691210ce8d44fb1c2b46dff1ee518de22b1c92601c1b47ef60d95dbff54b4e07e15dd668f73daefa689e18c28eb54989a4290f5222591d7
data/README.md CHANGED
@@ -19,9 +19,9 @@ Pretty standard gem stuff.
19
19
 
20
20
  $ gem install vantiv_lite
21
21
 
22
- When using [Bundler](https://bundler.io) or requiring this library in general, it's important to note that it will attempt to load it's XML add-ons by default If Nokogiri or Ox is already defined, it will use them in that order. Otherwise, it will use the default of REXML. The only consideration is that REXML will get required if neither optional library is already required.
22
+ When using [Bundler](https://bundler.io) or requiring this library in general, it's important to note that this gem will attempt to load its XML add-ons by default if `Ox` or `Nokogiri` is already defined, it will use them in that order. Otherwise, it will use the default of `REXML`. The only consideration is that `REXML` will get required if neither optional library is already required.
23
23
 
24
- So, ensure your XML libs load first or just manually load it after the fact.
24
+ So, ensure you load your project's XML libs (if you're using them) first.
25
25
 
26
26
  ## Configuration
27
27
 
data/lib/vantiv_lite.rb CHANGED
@@ -14,7 +14,7 @@ module VantivLite
14
14
 
15
15
  def env_config
16
16
  Config::OPTS.each_with_object({}) do |k, h|
17
- env_key = "vaniv_#{k}"
17
+ env_key = "vantiv_#{k}"
18
18
  h[k] = ENV[env_key] if ENV.key?(env_key)
19
19
  end
20
20
  end
@@ -3,7 +3,7 @@
3
3
  module VantivLite
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- TINY = 2
6
+ TINY = 3
7
7
  VERSION = [MAJOR, MINOR, TINY].join('.').freeze
8
8
 
9
9
  def self.version
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vantiv_lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-05-17 00:00:00.000000000 Z
12
+ date: 2018-05-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler