license-cli 0.1.1 → 0.1.2
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 +9 -24
- data/lib/license/cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d424a6dcaa4ba5b260670782547d0846e1a01c9f2672ed2b505794783bdc2db9
|
4
|
+
data.tar.gz: d6b4879c46fd884182ea478db273876b5dd042d9dc9c64d90de7607453012f02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82ff7a4b70e9e0f96fa399e142a7db3483c0f1d4c6ce81c22b82be74b047a0603fab48a2759841b618c1477a0780c563a5bec088a2b76e0e06f07be97f0faee3
|
7
|
+
data.tar.gz: 17cc66cbff0f79a87617ef1eee572c07c0dfb2c22c2cce5a2b1e38c4cb379f3e1795e1834831b5e1c885a36e4892e28ccc39c35feb9dcf315675cc64bdeada27
|
data/README.md
CHANGED
@@ -1,38 +1,23 @@
|
|
1
|
-
# License
|
1
|
+
# License-CLI
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
This gem helps you to add license information to your project.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'license-cli'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle install
|
7
|
+
gem install license_cli
|
18
8
|
|
19
|
-
|
20
|
-
|
21
|
-
$ gem install license-cli
|
9
|
+
Bundler isn't recommended, but it's possible to use it.
|
22
10
|
|
23
11
|
## Usage
|
24
12
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
-
|
31
|
-
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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
13
|
+
1. Open terminal and run `license` command.
|
14
|
+
2. Select the license you want to add.
|
15
|
+
3. Fill some fields such as `name`, `email` and `year`.
|
16
|
+
4. Done!
|
32
17
|
|
33
18
|
## Contributing
|
34
19
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
20
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/sevenc-nanashi/license-cli.
|
36
21
|
|
37
22
|
## License
|
38
23
|
|
data/lib/license/cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: license-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sevenc-nanashi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-09-
|
11
|
+
date: 2021-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tty-prompt
|