Afip 0.1.0 → 0.1.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/Afip.rb +9 -9
  3. data/lib/Afip/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cfe6f02c91320fc91fc681609d3741e98fe8443b
4
- data.tar.gz: aa47f09c8f80ed81f10825a563c0097456de626d
3
+ metadata.gz: c44d1855f1f1844a4745cce85cdd919db4286ef4
4
+ data.tar.gz: 0b3146d5b0fd7718f7298426dd599ecdc8f33142
5
5
  SHA512:
6
- metadata.gz: ab4808f882f2c5474ca936b827ab90448d886b79990091d3baebf255761b65d6d5b55d1d2fcef50b3c2b367e76a30a213d14d796b76f720876ae36959096c5d1
7
- data.tar.gz: 064c1d05730ab72fed015d10637502a87c1835f194a3625dd2d1182ee672ec340f6ad92dfc6afbee94e75436f83baf73aa55c82e6a631ceeeb033c0274351c8a
6
+ metadata.gz: f8f08e2292ce4cbf8c93b434a365625fd32b65664fbaf17b906cd5ca9dd3edc78a6864ed369f9a84c5d9ca085baa78dab75a61daa9cf58e8ca2c126a78d49080
7
+ data.tar.gz: 2984ec6b14ed59738607ae81498bcea3db05a66205e130de2bb7d0dcb4fd83e9616eeffaa0c303fe11ed7324a6e72780a7677ed2010af53dc30d967dc52c9d9b
data/lib/Afip.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  require "Afip/version"
2
2
  require "bundler/setup"
3
- require "afip/constants"
3
+ require "Afip/constants"
4
4
  require "savon"
5
- require "afip/core_ext/float"
6
- require "afip/core_ext/hash"
7
- require "afip/core_ext/string"
5
+ require "Afip/core_ext/float"
6
+ require "Afip/core_ext/hash"
7
+ require "Afip/core_ext/string"
8
8
 
9
9
  require 'net/http'
10
10
  require 'net/https'
@@ -15,11 +15,11 @@ module Afip
15
15
 
16
16
  class NullOrInvalidAttribute < StandardError; end
17
17
 
18
- autoload :Authorizer, "afip/authorizer"
19
- autoload :AuthData, "afip/auth_data"
20
- autoload :Padron, "afip/padron"
21
- autoload :Wsaa, "afip/wsaa"
22
- autoload :Bill, "afip/bill"
18
+ autoload :Authorizer, "Afip/authorizer"
19
+ autoload :AuthData, "Afip/auth_data"
20
+ autoload :Padron, "Afip/padron"
21
+ autoload :Wsaa, "Afip/wsaa"
22
+ autoload :Bill, "Afip/bill"
23
23
 
24
24
 
25
25
  class << self
data/lib/Afip/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Afip
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Afip
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Facundo A. Díaz Martínez