salute 0.1.2 → 0.2.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/README.md +2 -8
- data/lib/salute/version.rb +1 -1
- data/salute.gemspec +1 -3
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2d4075d5896b926294bb6c1e15ab79326da3048
|
|
4
|
+
data.tar.gz: 86364661822c715c0a121f3db517ad9e7c9bcc90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6ed2c6c8844e519cc1984dba51e3b8097233a444cf65a247e1a0678c8ab15d926e659c608d3bed7b73df0a0ed503e06a63850965dbb840db77440959fcbd504
|
|
7
|
+
data.tar.gz: 6d476bbc330f50d42eaf218fb68e462ff67956d9c8d3c18e6813c8baa0ce4515371ac3751b975636ee31aaf692d7d12f2f3fba0d1611e96cd90f1acc0379d7a0
|
data/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# Salute
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
Salute is a simple Ruby gem that welcomes the user to your application, and is based on `cli-ui`.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -22,7 +20,7 @@ Or install it yourself as:
|
|
|
22
20
|
|
|
23
21
|
## Usage
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
To use the welcomer, simply add `Salute.do "<any string>"` to your program.
|
|
26
24
|
|
|
27
25
|
## Development
|
|
28
26
|
|
|
@@ -30,10 +28,6 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
30
28
|
|
|
31
29
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
30
|
|
|
33
|
-
## Contributing
|
|
34
|
-
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/salute.
|
|
36
|
-
|
|
37
31
|
## License
|
|
38
32
|
|
|
39
33
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/lib/salute/version.rb
CHANGED
data/salute.gemspec
CHANGED
|
@@ -8,9 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = Salute::VERSION
|
|
9
9
|
spec.authors = ["Noah Simpson"]
|
|
10
10
|
spec.email = ["noah.simpson@shopify.com"]
|
|
11
|
-
|
|
12
|
-
spec.summary = 'To use the welcomer, simply add Salute.do "<name of application>" to your program.'
|
|
13
|
-
spec.description = "A gem that uses cli-kit for custom user greetings."
|
|
11
|
+
spec.summary = "A gem that uses cli-kit for custom user greetings."
|
|
14
12
|
spec.license = "MIT"
|
|
15
13
|
|
|
16
14
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: salute
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Noah Simpson
|
|
@@ -52,7 +52,7 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '5.0'
|
|
55
|
-
description:
|
|
55
|
+
description:
|
|
56
56
|
email:
|
|
57
57
|
- noah.simpson@shopify.com
|
|
58
58
|
executables: []
|
|
@@ -94,6 +94,5 @@ rubyforge_project:
|
|
|
94
94
|
rubygems_version: 2.6.14
|
|
95
95
|
signing_key:
|
|
96
96
|
specification_version: 4
|
|
97
|
-
summary:
|
|
98
|
-
program.
|
|
97
|
+
summary: A gem that uses cli-kit for custom user greetings.
|
|
99
98
|
test_files: []
|