act_with_booleans 0.0.3 → 0.0.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 +4 -4
- data/.github/workflows/rake.yml +10 -14
- data/.gitignore +1 -0
- data/.ruby-gemset +1 -1
- data/README.md +3 -5
- data/act_with_booleans.gemspec +1 -2
- data/lib/act_with_booleans/version.rb +2 -1
- metadata +5 -7
- data/.github/workflows/lint.yml +0 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a1762002b1c5d4f306f6a8e12e45fdec641ad0efba59e5c73a4882a9331e410
|
|
4
|
+
data.tar.gz: 3ac016617687d41dc3c84f90c39486a25b278f6f8dc7434220b50f6d4d5ab7cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 052e9ab681b552860948a481df24e3ce16462034983d6bc8a535292e8f0564fbf0119e99d8ad2cf55a288e2d156e1b725136045704effa5b41699602f3244278
|
|
7
|
+
data.tar.gz: ca371c13cafa8fcfc9ec5f38f232eb795db3aa850f601fe65cf5655db7a52f1dc1d72e95323df78f62fb499ae7f5cafb0e396069ca346ee457d838c16030d39a
|
data/.github/workflows/rake.yml
CHANGED
|
@@ -8,19 +8,15 @@ jobs:
|
|
|
8
8
|
strategy:
|
|
9
9
|
fail-fast: false
|
|
10
10
|
matrix:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
test_command: ["bundle exec rake test"]
|
|
14
|
-
runs-on: ${{ matrix.os }}
|
|
11
|
+
ruby_version: ["3.0", 3.2]
|
|
12
|
+
runs-on: ubuntu-latest
|
|
15
13
|
|
|
16
14
|
steps:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
bundle
|
|
25
|
-
bundle update
|
|
26
|
-
- run: ${{ matrix.test_command }}
|
|
15
|
+
- uses: actions/checkout@v3
|
|
16
|
+
- name: Set up Ruby
|
|
17
|
+
uses: ruby/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
ruby-version: ${{ matrix.ruby_version }}
|
|
20
|
+
bundler-cache: true
|
|
21
|
+
- name: Build and test with Rake
|
|
22
|
+
run: bundle exec rake
|
data/.gitignore
CHANGED
data/.ruby-gemset
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
rails-7.
|
|
1
|
+
rails-7.1
|
data/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ActWithBooleans
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/act_with_booleans)
|
|
4
|
+
[](https://rubygems.org/gems/act_with_booleans)
|
|
4
5
|
|
|
5
6
|
A Ruby gem handling booleans placed in an integer.
|
|
6
7
|
|
|
7
8
|
Defines setters and getters to access the booleans.
|
|
8
9
|
|
|
9
|
-
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
12
|
As usual:
|
|
@@ -116,6 +116,4 @@ Further reading:
|
|
|
116
116
|
## Miscellaneous
|
|
117
117
|
|
|
118
118
|
Copyright (c) 2023 Dittmar Krall (www.matiq.com),
|
|
119
|
-
released under the MIT license
|
|
120
|
-
|
|
121
|
-
* https://opensource.org/licenses/MIT
|
|
119
|
+
released under the [MIT license](https://opensource.org/licenses/MIT).
|
data/act_with_booleans.gemspec
CHANGED
|
@@ -9,11 +9,10 @@ Gem::Specification.new do |s|
|
|
|
9
9
|
s.description = %(Handles booleans packed in an integer)
|
|
10
10
|
s.authors = ["Dittmar Krall"]
|
|
11
11
|
s.email = ["dittmar.krall@matiq.com"]
|
|
12
|
-
s.homepage = "
|
|
12
|
+
s.homepage = "https://github.com/matique/act_with_booleans"
|
|
13
13
|
|
|
14
14
|
s.license = "MIT"
|
|
15
15
|
s.platform = Gem::Platform::RUBY
|
|
16
|
-
s.metadata["source_code_uri"] = "https://github.com/matique/act_with_booleans"
|
|
17
16
|
|
|
18
17
|
s.files = `git ls-files -z`.split("\x0")
|
|
19
18
|
s.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: act_with_booleans
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dittmar Krall
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -59,7 +59,6 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
-
- ".github/workflows/lint.yml"
|
|
63
62
|
- ".github/workflows/rake.yml"
|
|
64
63
|
- ".gitignore"
|
|
65
64
|
- ".ruby-gemset"
|
|
@@ -91,11 +90,10 @@ files:
|
|
|
91
90
|
- test/origin_test.rb
|
|
92
91
|
- test/size_test.rb
|
|
93
92
|
- test/test_helper.rb
|
|
94
|
-
homepage:
|
|
93
|
+
homepage: https://github.com/matique/act_with_booleans
|
|
95
94
|
licenses:
|
|
96
95
|
- MIT
|
|
97
|
-
metadata:
|
|
98
|
-
source_code_uri: https://github.com/matique/act_with_booleans
|
|
96
|
+
metadata: {}
|
|
99
97
|
post_install_message:
|
|
100
98
|
rdoc_options: []
|
|
101
99
|
require_paths:
|
|
@@ -111,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
109
|
- !ruby/object:Gem::Version
|
|
112
110
|
version: '0'
|
|
113
111
|
requirements: []
|
|
114
|
-
rubygems_version: 3.4.
|
|
112
|
+
rubygems_version: 3.4.20
|
|
115
113
|
signing_key:
|
|
116
114
|
specification_version: 4
|
|
117
115
|
summary: Ruby gem act_with_booleans
|
data/.github/workflows/lint.yml
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
name: Lint
|
|
2
|
-
on: push
|
|
3
|
-
jobs:
|
|
4
|
-
lint:
|
|
5
|
-
runs-on: ubuntu-latest
|
|
6
|
-
steps:
|
|
7
|
-
- name: Checkout code
|
|
8
|
-
uses: actions/checkout@v3
|
|
9
|
-
- name: Set up Ruby
|
|
10
|
-
uses: ruby/setup-ruby@v1
|
|
11
|
-
with:
|
|
12
|
-
bundler-cache: true
|
|
13
|
-
- name: Run Standard
|
|
14
|
-
run: bundle exec standardrb
|