kount-ris 0.1.1 → 0.1.2

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: 9983785d3a0f8df9194080c584a973fbe05d7514
4
- data.tar.gz: 7aad1680ec47d2f6667cdd9a990d0b8eda30cd0a
3
+ metadata.gz: 7eb0e704f3e78ec07d63a9a1890a61275c64e8c9
4
+ data.tar.gz: 92e1c56045de22e08c551a9611f9eafe2b2b4c80
5
5
  SHA512:
6
- metadata.gz: 414cd54febb4939098d080597918c667ff6a90e13d291a5a2d6210352a2ed26c82822d9601f68398722dce50d517523a3b1871aa3ef8a29b9a49f39cc6234103
7
- data.tar.gz: 6ea32c4b170495492aee19add286ac61e3511cab9ee57093863f0490914764ad02fd51951b126ebf187792227801c551074203d04e9a83363b7b0fb224dcd709
6
+ metadata.gz: 9ac0dfc63f23e013a326f7b0c8b99136ba995c0c04abc7bab6c44d7bbae5575c1f582815fdf30d54aaa9dc3045b95bf00e3566003744482502ef335a3d1611af
7
+ data.tar.gz: f2afd5d8176813c63fa14aedf2643580b7b94b6c3bf60ec20883c2bb30e45d036581e6f8d8c15d42c1187be0fbad507a427cf43e346b607faa117c24676e9f34
@@ -1,10 +1,10 @@
1
1
  module Kount
2
2
  class Configuration
3
- mattr_accessor :merchant_id, :company_server_url, :api_key, :gateway_id, :site_id, :salt, :api_host
4
- mattr_accessor :api_version, :response_format, :payment_type, :currency_code, :shipping_method
5
- mattr_accessor :logger, :simple_log_level, :simple_log_file, :simple_log_path
6
-
7
3
  class << self
4
+ attr_accessor :merchant_id, :company_server_url, :api_key, :gateway_id, :site_id, :salt, :api_host
5
+ attr_accessor :api_version, :response_format, :payment_type, :currency_code, :shipping_method
6
+ attr_accessor :logger, :simple_log_level, :simple_log_file, :simple_log_path
7
+
8
8
  def set(conf = {})
9
9
  conf.each { |setting, value| self.send("#{setting}=", value) }
10
10
  end
@@ -1,7 +1,4 @@
1
1
  require 'kount/ris/engine'
2
- require_relative '../../app/models/kount'
3
- require_relative '../../app/models/kount/ris'
4
- require_relative '../../app/models/kount/configuration'
5
2
 
6
3
  module Kount
7
4
  module RIS
@@ -1,7 +1,7 @@
1
1
  module Kount
2
2
  module RIS
3
3
  class Engine < ::Rails::Engine
4
- # isolate_namespace Kount::RIS
4
+ isolate_namespace Kount::RIS
5
5
  # config.generators.api_only = true
6
6
  # config.eager_load_paths.concat Dir["#{config.root}/doc/*"].select { |f| File.directory? f }
7
7
  # config.autoload_paths.concat Dir["#{config.root}/app/models/**"]
@@ -1,5 +1,5 @@
1
1
  module Kount
2
2
  module RIS
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kount-ris
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - blaq reports