fatture_in_cloud_ruby 0.2.0 → 0.2.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96e4f12d8e633f8775b4488850927397cdd4632c69402cb96cca958409efcf9c
4
- data.tar.gz: a712f49060c6ea6a8113e0fe535370d7562e0ffec0d7eecc12fce09338045308
3
+ metadata.gz: 9cf4bd7db4592e21d1a2fcedff50c9d4bb5812e2a1bb54f1119018d4a5938400
4
+ data.tar.gz: 94df36cf4391f42cd77f78aa572649b7a7dfdf1e7bfbdb1a69aac676d12e5ae0
5
5
  SHA512:
6
- metadata.gz: d012cc74dcb614d519cf27e75a0b8ef5dff36bcf440603789c7538d54e6cd3bc5cd50c53f256c45a757ee3c42a65a203d52b08d285582c4956fc14c3c55e4dba
7
- data.tar.gz: e70d97837321934c62b954dcf761a4b537d48610520995697308e6ee0d7bbf5e9b6a37f588143398aaaeaf0d4574f24a81226e8af2fb093abb4bd9fd2bad6275
6
+ metadata.gz: 4bb77c6b0712089678165dcc6f9a3bd3c43982a142380c3d411e23bf0fdaec3abec2540de477671b52898e7aadfe2b3eb803fb407e28a2f79094dc33ac541518
7
+ data.tar.gz: e0e72d657314cb173cb553bb6a27e0a292cca38ef3333e5cd79dda99d4455ecc319ef5f31025898e293be6ef841effb12bc383aee8b7a8cbb550829ac8f5cba1
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source "https://rubygems.org"
1
+ source 'https://rubygems.org'
2
2
 
3
3
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fatture_in_cloud_ruby (0.1.4)
4
+ fatture_in_cloud_ruby (0.2.4)
5
5
  api_struct (~> 1.0.5)
6
6
  dry-configurable (~> 0.8.0)
7
7
 
@@ -1,7 +1,7 @@
1
1
 
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "fatture_in_cloud_ruby/version"
4
+ require 'fatture_in_cloud_ruby/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "fatture_in_cloud_ruby"
@@ -9,12 +9,12 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Andrea Vanini"]
10
10
  spec.email = ["andrea.vanini@uidu.org"]
11
11
 
12
- spec.summary = 'A ruby API wrapper for FattureInCloud API'
13
- spec.description = 'A ruby API wrapper for FattureInCloud API'
12
+ spec.summary = "A ruby API wrapper for FattureInCloud API"
13
+ spec.description = "A ruby API wrapper for FattureInCloud API"
14
14
  spec.homepage = "https://github.com/uidu-org/fatture-in-cloud-ruby"
15
15
  spec.license = "MIT"
16
16
 
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
18
18
  # to allow pushing to a single host or delete this section to allow pushing to any host.
19
19
  if spec.respond_to?(:metadata)
20
20
  spec.metadata["homepage_uri"] = spec.homepage
@@ -27,18 +27,18 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  # Specify which files should be added to the gem when it is released.
29
29
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
30
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
30
+ spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
31
31
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
32
32
  end
33
33
  spec.bindir = "exe"
34
34
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
35
35
  spec.require_paths = ["lib"]
36
36
 
37
- spec.add_dependency 'api_struct', '~> 1.0.5'
38
- spec.add_dependency 'dry-configurable', '~> 0.8.0'
37
+ spec.add_dependency "api_struct", "~> 1.0.5"
38
+ spec.add_dependency "dry-configurable", "~> 0.8.0"
39
39
 
40
40
  spec.add_development_dependency "bundler", "~> 1.17"
41
41
  spec.add_development_dependency "rake", "~> 13.0"
42
- spec.add_development_dependency 'rspec', '~> 3.0'
43
- spec.add_development_dependency 'rubocop', '~> 0.78.0'
42
+ spec.add_development_dependency "rspec", "~> 3.0"
43
+ spec.add_development_dependency "rubocop", "~> 0.78.0"
44
44
  end
@@ -1,6 +1,6 @@
1
1
  module FattureInCloudRuby
2
2
  class Settings
3
- extend ::Dry::Configurable
3
+ extend Dry::Configurable
4
4
 
5
5
  setting :api_key
6
6
  setting :api_uid
@@ -1,3 +1,3 @@
1
1
  module FattureInCloudRuby
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.4"
3
3
  end
@@ -1,15 +1,11 @@
1
1
  require 'api_struct'
2
2
  require 'dry-configurable'
3
3
 
4
- # require 'fatture_in_cloud_ruby/settings'
4
+ require_relative 'fatture_in_cloud_ruby/version'
5
+ require_relative 'fatture_in_cloud_ruby/settings'
5
6
  require_relative 'fatture_in_cloud_ruby/api_struct_settings'
6
-
7
- require_relative "fatture_in_cloud_ruby/version"
8
- require_relative "fatture_in_cloud_ruby/clients/corrispettivi"
7
+ require_relative 'fatture_in_cloud_ruby/clients/corrispettivi'
9
8
 
10
9
  module FattureInCloudRuby
11
- extend Dry::Configurable
12
-
13
10
  class Error < StandardError; end
14
- # Your code goes here...
15
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fatture_in_cloud_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrea Vanini