Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions .github/workflows/release-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,14 @@ jobs:
sha: "${{ env.commit_sha }}"
})

# - id: publish
# name: Push to rubygems.org
# if: ${{ !env.ACT }}
# run: |
# gem build *.gemspec
# gem push *.gem
- id: configure-rubygems
name: Configure RubyGems credentials
if: ${{ !env.ACT }}
uses: rubygems/configure-rubygems-credentials@v2.0.0

- uses: rubygems/release-gem@v1
- id: publish
name: Push to rubygems.org
if: ${{ !env.ACT }}
run: |
gem build *.gemspec
gem push *.gem
21 changes: 10 additions & 11 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,21 @@ name: Ruby SDK Validation

on:
pull_request:
branches: [ master ]
branches: [master]

jobs:
validate:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1']
ruby-version: ["2.6", "2.7", "3.0", "3.1"]

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ script:
- bundle install --path vendor/bundle
- bundle exec rspec
- gem build fattureincloud_ruby_sdk.gemspec
- gem install ./fattureincloud_ruby_sdk-2.1.3.gem
- gem install ./fattureincloud_ruby_sdk-2.1.4.gem
14 changes: 4 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ All notable changes to this project will be documented in this file. See [standa

### 2.1.3 (2026-05-13)

### 2.1.3 (2026-05-13)

### 2.1.2 (2025-08-18)

### 2.1.1 (2024-10-31)
Expand Down Expand Up @@ -44,31 +42,27 @@ All notable changes to this project will be documented in this file. See [standa

### 2.0.6 (2022-03-16)


### Bug Fixes

* added filter parameter and detailed countries method ([0f78c48](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/0f78c487202d8cd8a2d68010a1876e45ee047000))
- added filter parameter and detailed countries method ([0f78c48](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/0f78c487202d8cd8a2d68010a1876e45ee047000))

### 2.0.5 (2022-03-01)


### Bug Fixes

* models are now nullable ([a6a4b50](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/a6a4b50a3d849b9bf3a706ef30e4cf290f36267a))
- models are now nullable ([a6a4b50](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/a6a4b50a3d849b9bf3a706ef30e4cf290f36267a))

### 2.0.4 (2022-02-08)


### Bug Fixes

* added einvoice rejection reason and refactor cashbook ([615496c](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/615496ca267c03509f8d24ba28c41f8f0972de64))
- added einvoice rejection reason and refactor cashbook ([615496c](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/615496ca267c03509f8d24ba28c41f8f0972de64))

### 2.0.3 (2022-01-25)


### Bug Fixes

* added get xml method ([ad2e07a](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/ad2e07afdd69397a01eabfb34f1fe3e1ba764eca))
- added get xml method ([ad2e07a](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/ad2e07afdd69397a01eabfb34f1fe3e1ba764eca))

### 2.0.2 (2022-01-10)

Expand Down
877 changes: 436 additions & 441 deletions README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions fattureincloud_ruby_sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Gem::Specification.new do |s|
s.metadata = {}

s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
s.add_dependency 'ostruct', '>= 0'

s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'

Expand Down
2 changes: 1 addition & 1 deletion lib/fattureincloud_ruby_sdk/api_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ApiClient
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
def initialize(config = Configuration.default)
@config = config
@user_agent = "FattureInCloud/2.1.3/Ruby-SDK"
@user_agent = "FattureInCloud/2.1.4/Ruby-SDK"
@default_headers = {
'Content-Type' => 'application/json',
'User-Agent' => @user_agent
Expand Down
2 changes: 1 addition & 1 deletion lib/fattureincloud_ruby_sdk/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module FattureInCloud_Ruby_Sdk
VERSION = '2.1.3'
VERSION = '2.1.4'
end
2 changes: 1 addition & 1 deletion sdk-version.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
info:
version: 2.1.3
version: 2.1.4
Loading