billomat 1.0.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/documentation.yml +4 -3
- data/.github/workflows/release.yml +48 -0
- data/.github/workflows/test.yml +5 -3
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +15 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Dockerfile +3 -3
- data/Gemfile +14 -0
- data/Makefile +4 -1
- data/README.md +27 -9
- data/billomat.gemspec +3 -16
- data/config/docker/.bashrc +3 -1
- data/lib/billomat/configuration.rb +12 -0
- data/lib/billomat/gateway.rb +1 -1
- data/lib/billomat/search.rb +8 -10
- data/lib/billomat/version.rb +1 -1
- metadata +10 -176
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db8e1e9679da101e6935b9e7d39eb71b690cee55361fc044adaeea8f258035fd
|
4
|
+
data.tar.gz: c6b5715bfb71b6ba5195316fe159c943fc933c3c18f9beeb98dda8f61d365ded
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3da6248dd1adea3abc0343694576f10ad31af6e3aba3f5bcf99473bc9ff08e00bdd33bf025cd1ef63a96b27fe581e4e042abc88ad31f6ac144f03b1cf4c5b2c
|
7
|
+
data.tar.gz: b7c8e90c897d16409c1ff61606c7f2d41fb8dd8ec439eaaade92641bb9d7956c059b41a39a7474868da08ff89d1bc2db8ad931377ebcab12dd1926df0741a887
|
@@ -12,19 +12,20 @@ jobs:
|
|
12
12
|
runs-on: ubuntu-22.04
|
13
13
|
timeout-minutes: 5
|
14
14
|
steps:
|
15
|
-
- uses: actions/checkout@
|
15
|
+
- uses: actions/checkout@v4
|
16
16
|
|
17
17
|
- name: Install the correct Ruby version
|
18
18
|
uses: ruby/setup-ruby@v1
|
19
19
|
with:
|
20
|
-
ruby-version: 2.
|
20
|
+
ruby-version: 2.7
|
21
21
|
bundler-cache: true
|
22
|
-
rubygems: '3.
|
22
|
+
rubygems: '3.4.22'
|
23
23
|
|
24
24
|
- name: Prepare the virtual environment
|
25
25
|
uses: hausgold/actions/ci@master
|
26
26
|
with:
|
27
27
|
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
28
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
28
29
|
settings: '${{ github.repository }}'
|
29
30
|
target: ci/gem-test
|
30
31
|
|
@@ -0,0 +1,48 @@
|
|
1
|
+
name: Release
|
2
|
+
run-name: Release ${{ github.event.inputs.VERSION }}
|
3
|
+
|
4
|
+
on:
|
5
|
+
workflow_dispatch:
|
6
|
+
inputs:
|
7
|
+
VERSION:
|
8
|
+
description: The new version to release. (eg. `1.0.0`) Check the
|
9
|
+
changelog for the latest version.
|
10
|
+
|
11
|
+
concurrency:
|
12
|
+
group: '${{ github.event.inputs.VERSION }}'
|
13
|
+
cancel-in-progress: true
|
14
|
+
|
15
|
+
jobs:
|
16
|
+
docs:
|
17
|
+
name: Release the gem
|
18
|
+
runs-on: ubuntu-22.04
|
19
|
+
timeout-minutes: 5
|
20
|
+
steps:
|
21
|
+
- uses: actions/checkout@v4
|
22
|
+
|
23
|
+
- name: Install Ruby 2.7
|
24
|
+
uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
ruby-version: 2.7
|
27
|
+
bundler-cache: true
|
28
|
+
rubygems: '3.4.22'
|
29
|
+
|
30
|
+
- name: Prepare the virtual environment
|
31
|
+
uses: hausgold/actions/ci@master
|
32
|
+
with:
|
33
|
+
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
34
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
35
|
+
settings: '${{ github.repository }}'
|
36
|
+
target: ci/gem-test
|
37
|
+
|
38
|
+
- name: Switch to SSH remotes for the Git repository
|
39
|
+
run: git-ssh-remotes
|
40
|
+
|
41
|
+
- name: Enforce version '${{ github.event.inputs.VERSION }}'
|
42
|
+
run: set-gem-version '${{ github.event.inputs.VERSION }}'
|
43
|
+
|
44
|
+
- name: Prepare the Git release commit
|
45
|
+
run: git-release-commit '${{ github.event.inputs.VERSION }}'
|
46
|
+
|
47
|
+
- name: Push the release Git commit/tag and package to the registry
|
48
|
+
run: make release
|
data/.github/workflows/test.yml
CHANGED
@@ -18,21 +18,22 @@ jobs:
|
|
18
18
|
strategy:
|
19
19
|
fail-fast: false
|
20
20
|
matrix:
|
21
|
-
ruby: ['2.
|
21
|
+
ruby: ['2.7']
|
22
22
|
steps:
|
23
|
-
- uses: actions/checkout@
|
23
|
+
- uses: actions/checkout@v4
|
24
24
|
|
25
25
|
- name: Install the correct Ruby version
|
26
26
|
uses: ruby/setup-ruby@v1
|
27
27
|
with:
|
28
28
|
ruby-version: ${{ matrix.ruby }}
|
29
29
|
bundler-cache: true
|
30
|
-
rubygems: '3.
|
30
|
+
rubygems: '3.4.22'
|
31
31
|
|
32
32
|
- name: Prepare the virtual environment
|
33
33
|
uses: hausgold/actions/ci@master
|
34
34
|
with:
|
35
35
|
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
36
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
36
37
|
settings: '${{ github.repository }}'
|
37
38
|
target: ci/gem-test
|
38
39
|
|
@@ -53,6 +54,7 @@ jobs:
|
|
53
54
|
uses: hausgold/actions/ci@master
|
54
55
|
with:
|
55
56
|
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
57
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
56
58
|
settings: '${{ github.repository }}'
|
57
59
|
target: ci/noop
|
58
60
|
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
### next
|
2
|
+
|
3
|
+
* TODO: Replace this bullet point with an actual description of a change.
|
4
|
+
|
5
|
+
### 1.2.0
|
6
|
+
|
7
|
+
* Moved the development dependencies from the gemspec to the Gemfile (#19)
|
8
|
+
* Introduce `after_response` callback (#22)
|
9
|
+
* Fix response parsing for responses exceeding the page size (#23)
|
10
|
+
* Dropped support for Ruby <2.7 (#24)
|
11
|
+
|
12
|
+
### 1.1.0
|
13
|
+
|
14
|
+
* Added support for Gem release automation
|
15
|
+
|
1
16
|
### 1.0.0
|
2
17
|
|
3
18
|
* Bundler >= 2.3 is from now on required as minimal version (#18)
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at development@hausgold.de. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
FROM hausgold/ruby:2.
|
1
|
+
FROM hausgold/ruby:2.7
|
2
2
|
MAINTAINER Hermann Mayer <hermann.mayer@hausgold.de>
|
3
3
|
|
4
4
|
# Update system gem
|
5
|
-
RUN gem update --system '3.
|
5
|
+
RUN gem update --system '3.4.22'
|
6
6
|
|
7
7
|
# Install system packages and the latest bundler
|
8
8
|
RUN apt-get update -yqqq && \
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
11
11
|
ca-certificates \
|
12
12
|
bash-completion inotify-tools && \
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
14
|
-
gem install bundler -v '~> 2.
|
14
|
+
gem install bundler -v '~> 2.4.22' --no-document --no-prerelease
|
15
15
|
|
16
16
|
# Add new web user
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
@@ -4,3 +4,17 @@ source 'https://rubygems.org'
|
|
4
4
|
|
5
5
|
# Specify your gem's dependencies in billomat.gemspec
|
6
6
|
gemspec
|
7
|
+
|
8
|
+
# Development dependencies
|
9
|
+
gem 'bundler', '~> 2.3'
|
10
|
+
gem 'countless', '~> 1.1'
|
11
|
+
gem 'guard-rspec', '~> 4.7'
|
12
|
+
gem 'irb', '~> 1.2'
|
13
|
+
gem 'rake', '~> 13.0'
|
14
|
+
gem 'rspec', '~> 3.12'
|
15
|
+
gem 'rubocop', '~> 1.28'
|
16
|
+
gem 'rubocop-rails', '~> 2.14'
|
17
|
+
gem 'rubocop-rspec', '~> 2.10'
|
18
|
+
gem 'simplecov', '>= 0.22'
|
19
|
+
gem 'yard', '>= 0.9.28'
|
20
|
+
gem 'yard-activesupport-concern', '>= 0.0.1'
|
data/Makefile
CHANGED
@@ -23,6 +23,7 @@ GREP ?= grep
|
|
23
23
|
ID ?= id
|
24
24
|
MKDIR ?= mkdir
|
25
25
|
RM ?= rm
|
26
|
+
TEST ?= test
|
26
27
|
XARGS ?= xargs
|
27
28
|
|
28
29
|
# Container binaries
|
@@ -33,6 +34,7 @@ RAKE ?= rake
|
|
33
34
|
RSPEC ?= rspec
|
34
35
|
RUBOCOP ?= rubocop
|
35
36
|
YARD ?= yard
|
37
|
+
RUBY_VERSION := ruby-version
|
36
38
|
|
37
39
|
# Define a generic shell run wrapper
|
38
40
|
# $1 - The command to run
|
@@ -98,7 +100,8 @@ test-style: \
|
|
98
100
|
|
99
101
|
test-style-ruby:
|
100
102
|
# Run the static code analyzer (rubocop)
|
101
|
-
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a
|
103
|
+
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
104
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '2.7' && true))
|
102
105
|
|
103
106
|
clean:
|
104
107
|
# Clean the dependencies
|
data/README.md
CHANGED
@@ -14,7 +14,9 @@ online accounting service.
|
|
14
14
|
- [Configuration](#configuration)
|
15
15
|
- [Basic usage](#basic-usage)
|
16
16
|
- [Development](#development)
|
17
|
+
- [Code of Conduct](#code-of-conduct)
|
17
18
|
- [Contributing](#contributing)
|
19
|
+
- [Releasing](#releasing)
|
18
20
|
|
19
21
|
## Installation
|
20
22
|
|
@@ -58,6 +60,11 @@ Billomat.configure do |config|
|
|
58
60
|
# https://www.billomat.com/en/api/basics/rate-limiting/
|
59
61
|
config.app_id = '12345'
|
60
62
|
config.app_secret = 'c3df...'
|
63
|
+
|
64
|
+
config.after_response = lambda do |response|
|
65
|
+
# API response callback, e.g. for inspecting the rate limit
|
66
|
+
# header via response.headers[:x_rate_limit_remaining]
|
67
|
+
end
|
61
68
|
end
|
62
69
|
```
|
63
70
|
|
@@ -87,17 +94,28 @@ client.delete
|
|
87
94
|
|
88
95
|
## Development
|
89
96
|
|
90
|
-
After checking out the repo, run `
|
91
|
-
`
|
92
|
-
prompt that will allow you to experiment.
|
97
|
+
After checking out the repo, run `make install` to install dependencies. Then,
|
98
|
+
run `make test` to run the tests. You can also run `make shell-irb` for an
|
99
|
+
interactive prompt that will allow you to experiment.
|
100
|
+
|
101
|
+
## Code of Conduct
|
93
102
|
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
git commits and tags, and push the `.gem` file to
|
98
|
-
[rubygems.org](https://rubygems.org).
|
103
|
+
Everyone interacting in the project codebase, issue tracker, chat
|
104
|
+
rooms and mailing lists is expected to follow the [code of
|
105
|
+
conduct](./CODE_OF_CONDUCT.md).
|
99
106
|
|
100
107
|
## Contributing
|
101
108
|
|
102
109
|
Bug reports and pull requests are welcome on GitHub at
|
103
|
-
https://github.com/hausgold/billomat.
|
110
|
+
https://github.com/hausgold/billomat. Make sure that every pull request adds
|
111
|
+
a bullet point to the [changelog](./CHANGELOG.md) file with a reference to the
|
112
|
+
actual pull request.
|
113
|
+
|
114
|
+
## Releasing
|
115
|
+
|
116
|
+
The release process of this Gem is fully automated. You just need to open the
|
117
|
+
Github Actions [Release
|
118
|
+
Workflow](https://github.com/hausgold/billomat/actions/workflows/release.yml)
|
119
|
+
and trigger a new run via the **Run workflow** button. Insert the new version
|
120
|
+
number (check the [changelog](./CHANGELOG.md) first for the latest release) and
|
121
|
+
you're done.
|
data/billomat.gemspec
CHANGED
@@ -31,20 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
32
32
|
spec.require_paths = ['lib']
|
33
33
|
|
34
|
-
spec.required_ruby_version = '>= 2.
|
35
|
-
|
36
|
-
spec.
|
37
|
-
|
38
|
-
spec.add_development_dependency 'bundler', '~> 2.3'
|
39
|
-
spec.add_development_dependency 'countless', '~> 1.1'
|
40
|
-
spec.add_development_dependency 'guard-rspec', '~> 4.7'
|
41
|
-
spec.add_development_dependency 'irb', '~> 1.2'
|
42
|
-
spec.add_development_dependency 'rake', '~> 13.0'
|
43
|
-
spec.add_development_dependency 'rspec', '~> 3.12'
|
44
|
-
spec.add_development_dependency 'rubocop', '~> 1.28'
|
45
|
-
spec.add_development_dependency 'rubocop-rails', '~> 2.14'
|
46
|
-
spec.add_development_dependency 'rubocop-rspec', '~> 2.10'
|
47
|
-
spec.add_development_dependency 'simplecov', '>= 0.22'
|
48
|
-
spec.add_development_dependency 'yard', '>= 0.9.28'
|
49
|
-
spec.add_development_dependency 'yard-activesupport-concern', '>= 0.0.1'
|
34
|
+
spec.required_ruby_version = '>= 2.7'
|
35
|
+
|
36
|
+
spec.add_runtime_dependency 'rest-client', '~> 2.1'
|
50
37
|
end
|
data/config/docker/.bashrc
CHANGED
@@ -16,7 +16,9 @@ sudo sed -i 's/autostart=.*/autostart=false/g' /etc/supervisor/conf.d/*
|
|
16
16
|
sudo supervisord >/dev/null 2>&1 &
|
17
17
|
|
18
18
|
# Wait for supervisord
|
19
|
-
while ! supervisorctl status >/dev/null 2>&1; do
|
19
|
+
while ! (sudo supervisorctl status | grep avahi) >/dev/null 2>&1; do
|
20
|
+
sleep 1
|
21
|
+
done
|
20
22
|
|
21
23
|
# Boot the mDNS stack
|
22
24
|
echo '# Start the mDNS stack'
|
@@ -4,5 +4,17 @@ module Billomat
|
|
4
4
|
# The +billomat+ gem configuration.
|
5
5
|
class Configuration
|
6
6
|
attr_accessor :api_key, :subdomain, :timeout, :app_id, :app_secret
|
7
|
+
attr_reader :after_response
|
8
|
+
|
9
|
+
# Sets a callback to be called for each API response
|
10
|
+
#
|
11
|
+
# @param [Proc] callback The callback
|
12
|
+
def after_response=(callback)
|
13
|
+
unless callback.respond_to?(:call)
|
14
|
+
raise ArgumentError, "callback must respond to `call'"
|
15
|
+
end
|
16
|
+
|
17
|
+
@after_response = callback
|
18
|
+
end
|
7
19
|
end
|
8
20
|
end
|
data/lib/billomat/gateway.rb
CHANGED
data/lib/billomat/search.rb
CHANGED
@@ -31,22 +31,20 @@ module Billomat
|
|
31
31
|
|
32
32
|
# Corrects the response to always return an array.
|
33
33
|
#
|
34
|
-
# @todo Due to a strange API behaviour we have to fix the
|
34
|
+
# @todo Due to a strange API behaviour we have to fix the response here.
|
35
35
|
# This may be fixed in a new API version.
|
36
36
|
#
|
37
37
|
# @param [Hash] resp The response from the gateway
|
38
38
|
# @return [Array<Billomat::Model::Base>]
|
39
39
|
def to_array(resp)
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
40
|
+
data = resp["#{name}s"][name]
|
41
|
+
case data
|
42
|
+
when Hash
|
43
|
+
[@resource.new(data)]
|
44
|
+
when Array
|
45
|
+
data.map { |d| @resource.new(d) }
|
46
46
|
else
|
47
|
-
|
48
|
-
@resource.new(c)
|
49
|
-
end
|
47
|
+
[]
|
50
48
|
end
|
51
49
|
end
|
52
50
|
|
data/lib/billomat/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: billomat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hermann Mayer
|
8
8
|
- Henning Vogt
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rest-client
|
@@ -25,174 +25,6 @@ dependencies:
|
|
25
25
|
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: '2.1'
|
28
|
-
- !ruby/object:Gem::Dependency
|
29
|
-
name: bundler
|
30
|
-
requirement: !ruby/object:Gem::Requirement
|
31
|
-
requirements:
|
32
|
-
- - "~>"
|
33
|
-
- !ruby/object:Gem::Version
|
34
|
-
version: '2.3'
|
35
|
-
type: :development
|
36
|
-
prerelease: false
|
37
|
-
version_requirements: !ruby/object:Gem::Requirement
|
38
|
-
requirements:
|
39
|
-
- - "~>"
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
version: '2.3'
|
42
|
-
- !ruby/object:Gem::Dependency
|
43
|
-
name: countless
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - "~>"
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: '1.1'
|
49
|
-
type: :development
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - "~>"
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: '1.1'
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: guard-rspec
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - "~>"
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '4.7'
|
63
|
-
type: :development
|
64
|
-
prerelease: false
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - "~>"
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '4.7'
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name: irb
|
72
|
-
requirement: !ruby/object:Gem::Requirement
|
73
|
-
requirements:
|
74
|
-
- - "~>"
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: '1.2'
|
77
|
-
type: :development
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - "~>"
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '1.2'
|
84
|
-
- !ruby/object:Gem::Dependency
|
85
|
-
name: rake
|
86
|
-
requirement: !ruby/object:Gem::Requirement
|
87
|
-
requirements:
|
88
|
-
- - "~>"
|
89
|
-
- !ruby/object:Gem::Version
|
90
|
-
version: '13.0'
|
91
|
-
type: :development
|
92
|
-
prerelease: false
|
93
|
-
version_requirements: !ruby/object:Gem::Requirement
|
94
|
-
requirements:
|
95
|
-
- - "~>"
|
96
|
-
- !ruby/object:Gem::Version
|
97
|
-
version: '13.0'
|
98
|
-
- !ruby/object:Gem::Dependency
|
99
|
-
name: rspec
|
100
|
-
requirement: !ruby/object:Gem::Requirement
|
101
|
-
requirements:
|
102
|
-
- - "~>"
|
103
|
-
- !ruby/object:Gem::Version
|
104
|
-
version: '3.12'
|
105
|
-
type: :development
|
106
|
-
prerelease: false
|
107
|
-
version_requirements: !ruby/object:Gem::Requirement
|
108
|
-
requirements:
|
109
|
-
- - "~>"
|
110
|
-
- !ruby/object:Gem::Version
|
111
|
-
version: '3.12'
|
112
|
-
- !ruby/object:Gem::Dependency
|
113
|
-
name: rubocop
|
114
|
-
requirement: !ruby/object:Gem::Requirement
|
115
|
-
requirements:
|
116
|
-
- - "~>"
|
117
|
-
- !ruby/object:Gem::Version
|
118
|
-
version: '1.28'
|
119
|
-
type: :development
|
120
|
-
prerelease: false
|
121
|
-
version_requirements: !ruby/object:Gem::Requirement
|
122
|
-
requirements:
|
123
|
-
- - "~>"
|
124
|
-
- !ruby/object:Gem::Version
|
125
|
-
version: '1.28'
|
126
|
-
- !ruby/object:Gem::Dependency
|
127
|
-
name: rubocop-rails
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
129
|
-
requirements:
|
130
|
-
- - "~>"
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
version: '2.14'
|
133
|
-
type: :development
|
134
|
-
prerelease: false
|
135
|
-
version_requirements: !ruby/object:Gem::Requirement
|
136
|
-
requirements:
|
137
|
-
- - "~>"
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: '2.14'
|
140
|
-
- !ruby/object:Gem::Dependency
|
141
|
-
name: rubocop-rspec
|
142
|
-
requirement: !ruby/object:Gem::Requirement
|
143
|
-
requirements:
|
144
|
-
- - "~>"
|
145
|
-
- !ruby/object:Gem::Version
|
146
|
-
version: '2.10'
|
147
|
-
type: :development
|
148
|
-
prerelease: false
|
149
|
-
version_requirements: !ruby/object:Gem::Requirement
|
150
|
-
requirements:
|
151
|
-
- - "~>"
|
152
|
-
- !ruby/object:Gem::Version
|
153
|
-
version: '2.10'
|
154
|
-
- !ruby/object:Gem::Dependency
|
155
|
-
name: simplecov
|
156
|
-
requirement: !ruby/object:Gem::Requirement
|
157
|
-
requirements:
|
158
|
-
- - ">="
|
159
|
-
- !ruby/object:Gem::Version
|
160
|
-
version: '0.22'
|
161
|
-
type: :development
|
162
|
-
prerelease: false
|
163
|
-
version_requirements: !ruby/object:Gem::Requirement
|
164
|
-
requirements:
|
165
|
-
- - ">="
|
166
|
-
- !ruby/object:Gem::Version
|
167
|
-
version: '0.22'
|
168
|
-
- !ruby/object:Gem::Dependency
|
169
|
-
name: yard
|
170
|
-
requirement: !ruby/object:Gem::Requirement
|
171
|
-
requirements:
|
172
|
-
- - ">="
|
173
|
-
- !ruby/object:Gem::Version
|
174
|
-
version: 0.9.28
|
175
|
-
type: :development
|
176
|
-
prerelease: false
|
177
|
-
version_requirements: !ruby/object:Gem::Requirement
|
178
|
-
requirements:
|
179
|
-
- - ">="
|
180
|
-
- !ruby/object:Gem::Version
|
181
|
-
version: 0.9.28
|
182
|
-
- !ruby/object:Gem::Dependency
|
183
|
-
name: yard-activesupport-concern
|
184
|
-
requirement: !ruby/object:Gem::Requirement
|
185
|
-
requirements:
|
186
|
-
- - ">="
|
187
|
-
- !ruby/object:Gem::Version
|
188
|
-
version: 0.0.1
|
189
|
-
type: :development
|
190
|
-
prerelease: false
|
191
|
-
version_requirements: !ruby/object:Gem::Requirement
|
192
|
-
requirements:
|
193
|
-
- - ">="
|
194
|
-
- !ruby/object:Gem::Version
|
195
|
-
version: 0.0.1
|
196
28
|
description: Wrapper for the Billomat API
|
197
29
|
email:
|
198
30
|
- hermann.mayer92@gmail.com
|
@@ -203,6 +35,7 @@ extra_rdoc_files: []
|
|
203
35
|
files:
|
204
36
|
- ".editorconfig"
|
205
37
|
- ".github/workflows/documentation.yml"
|
38
|
+
- ".github/workflows/release.yml"
|
206
39
|
- ".github/workflows/test.yml"
|
207
40
|
- ".gitignore"
|
208
41
|
- ".rspec"
|
@@ -210,6 +43,7 @@ files:
|
|
210
43
|
- ".simplecov"
|
211
44
|
- ".yardopts"
|
212
45
|
- CHANGELOG.md
|
46
|
+
- CODE_OF_CONDUCT.md
|
213
47
|
- Dockerfile
|
214
48
|
- Envfile
|
215
49
|
- Gemfile
|
@@ -249,7 +83,7 @@ files:
|
|
249
83
|
- lib/billomat/models/template.rb
|
250
84
|
- lib/billomat/search.rb
|
251
85
|
- lib/billomat/version.rb
|
252
|
-
homepage:
|
86
|
+
homepage:
|
253
87
|
licenses:
|
254
88
|
- MIT
|
255
89
|
metadata:
|
@@ -258,7 +92,7 @@ metadata:
|
|
258
92
|
changelog_uri: https://github.com/hausgold/billomat/blob/master/CHANGELOG.md
|
259
93
|
bug_tracker_uri: https://github.com/hausgold/billomat/issues
|
260
94
|
documentation_uri: https://www.rubydoc.info/gems/billomat
|
261
|
-
post_install_message:
|
95
|
+
post_install_message:
|
262
96
|
rdoc_options: []
|
263
97
|
require_paths:
|
264
98
|
- lib
|
@@ -266,15 +100,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
266
100
|
requirements:
|
267
101
|
- - ">="
|
268
102
|
- !ruby/object:Gem::Version
|
269
|
-
version: '2.
|
103
|
+
version: '2.7'
|
270
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
271
105
|
requirements:
|
272
106
|
- - ">="
|
273
107
|
- !ruby/object:Gem::Version
|
274
108
|
version: '0'
|
275
109
|
requirements: []
|
276
|
-
rubygems_version: 3.3.
|
277
|
-
signing_key:
|
110
|
+
rubygems_version: 3.3.26
|
111
|
+
signing_key:
|
278
112
|
specification_version: 4
|
279
113
|
summary: Wrapper for the Billomat API
|
280
114
|
test_files: []
|