easy_command 1.0.0.pre.rc2 → 1.0.0
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/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +15 -0
- data/README.md +21 -0
- data/lib/easy_command/as_command.rb +2 -2
- data/lib/easy_command/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d0f600e6e70dae4c9610e17dcf2be6b77b93a3f7101ab16fb79639b0b551b6f
|
4
|
+
data.tar.gz: 41ad8debe02a2e7276f423d90d82d98d9a23b2d477e2a5b1f51cab72dae7678b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e9f542e9d9ef0e67efc15b2a08f2ff6c277a279f6a92a34f3a55cb91af9942daf85231977bf555ed224c1e7932ec8ffa215b9c17a5d7fe9fa861449caff51b0
|
7
|
+
data.tar.gz: cf7d6e6fa5ff671a901b1a0e340406c935f9dd6b3542d8a2948ca4b6a56e0653c43b24f30372649e2dc58665620b3ab8fb6d0e6829a590d928339aea61b96ce3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.0.0](https://github.com/Swile/easy_command/compare/v1.0.0-rc3...v1.0.0) (2024-06-20)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* Official 1.0 release ([f6efbf9](https://github.com/Swile/easy_command/commit/f6efbf937f903b5e1febfe7955997b6c669d33ca))
|
9
|
+
* Update README with attribution in view of official release ([4891f17](https://github.com/Swile/easy_command/commit/4891f176c1a2ef81848c5aad2ac24275a48080d5))
|
10
|
+
|
11
|
+
## [1.0.0-rc3](https://github.com/Swile/easy_command/compare/v1.0.0-rc2...v1.0.0-rc3) (2024-06-20)
|
12
|
+
|
13
|
+
|
14
|
+
### Bug Fixes
|
15
|
+
|
16
|
+
* Fix require ([903492c](https://github.com/Swile/easy_command/commit/903492cf9d493230ae96207c17373fe16052699b))
|
17
|
+
|
3
18
|
## [1.0.0-rc2](https://github.com/Swile/easy_command/compare/v1.0.0-rc1...v1.0.0-rc2) (2024-06-20)
|
4
19
|
|
5
20
|
|
data/README.md
CHANGED
@@ -749,3 +749,24 @@ Requiring `easy_command/as_command` defines a `Command` alias that should provid
|
|
749
749
|
|
750
750
|
**Also: do remember that any other `require`s should still be updated to `easy_command` though.**
|
751
751
|
For example `require 'easy_command/spec_helpers'`.
|
752
|
+
|
753
|
+
# Acknowledgements
|
754
|
+
|
755
|
+
This gem is a fork of the [simple_command](https://github.com/nebulab/simple_command) gem. Thanks for their initial work.
|
756
|
+
|
757
|
+
We also thank all the contributors at Swile that took part in the internal development of this gem:
|
758
|
+
- Jérémie Bonal
|
759
|
+
- Alexandre Lamandé
|
760
|
+
- Champier Cyril
|
761
|
+
- Dorian Coffinet
|
762
|
+
- Guillaume Charneau
|
763
|
+
- Matthew Nguyen
|
764
|
+
- Benoît Barbe
|
765
|
+
- Cédric Murer
|
766
|
+
- Marine Sourin
|
767
|
+
- Jean-Yves Rivallan
|
768
|
+
- Houssem Eddine Bousselmi
|
769
|
+
- Julien Bouyoud
|
770
|
+
- Didier Bernaudeau
|
771
|
+
- Charles Duporge
|
772
|
+
- D'alberto Pierre-Julien
|
data/lib/easy_command/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_command
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swile
|
@@ -92,9 +92,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
92
|
version: '2.7'
|
93
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
|
-
- - "
|
95
|
+
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
97
|
+
version: '0'
|
98
98
|
requirements: []
|
99
99
|
rubygems_version: 3.1.6
|
100
100
|
signing_key:
|