gem-licenses 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +8 -0
- data/README.md +2 -2
- data/RELEASING.md +67 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/gem-licenses.gemspec +1 -1
- data/lib/gem-licenses/install_tasks.rb +1 -1
- data/lib/gem-licenses/version.rb +2 -2
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e25c2c59d98ae5182e7d558f673a20736a83001c
|
4
|
+
data.tar.gz: 72a3c6587573bd014d345eacc3417c945fc76005
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 867c045c697593fe444bfee464d3efca397d36e68125e31fa527fbf7f0b2dc1ec3bbc6c557b33e62f3e492ad25d3ab348fcdf1d9e8835d555281d14f27a4f1cb
|
7
|
+
data.tar.gz: e61205a3e28641d52b5c2f252a51fc3a0cd0e01a74bcd14a283a820920a5366e8de0502a698d7b2b3cb5bcf32e62534330bbb0c17547ed1392a89f335e367a18
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
#### 0.2.2 (Next)
|
2
|
+
|
3
|
+
* Your contribution here.
|
4
|
+
|
5
|
+
#### 0.2.1 (5/31/2016)
|
6
|
+
|
7
|
+
* [#10](https://github.com/dblock/gem-licenses/pull/10): Rename class (from `Gem::Licenses` to `Gem::GemLicenses`) in order to avoid conflict with Rubygems 2.5 - [@caiosba](https://github.com/caiosba).
|
8
|
+
|
1
9
|
#### 0.2.0 (7/17/2015)
|
2
10
|
|
3
11
|
* [#6](https://github.com/dblock/gem-licenses/pull/6): Use HTTPS for rubygems.org - [@O-I](https://github.com/O-I).
|
data/README.md
CHANGED
@@ -28,7 +28,7 @@ end
|
|
28
28
|
Install Rake tasks from Rakefile.
|
29
29
|
|
30
30
|
```
|
31
|
-
Gem::
|
31
|
+
Gem::GemLicenses.install_tasks
|
32
32
|
```
|
33
33
|
|
34
34
|
To list licenses try the following Rake task.
|
@@ -56,4 +56,4 @@ This project is licenced under the MIT license, see [LICENSE](LICENSE) for detai
|
|
56
56
|
Copyright
|
57
57
|
=========
|
58
58
|
|
59
|
-
Copyright (c) Daniel Doubrovkine, 2011-
|
59
|
+
Copyright (c) Daniel Doubrovkine, 2011-2016, Artsy, Inc.
|
data/RELEASING.md
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# Releasing Gem-Licenses
|
2
|
+
|
3
|
+
There're no hard rules about when to release gem-licenses. Release bug fixes frequenty, features not so frequently and breaking API changes rarely.
|
4
|
+
|
5
|
+
### Release
|
6
|
+
|
7
|
+
Run tests, check that all tests succeed locally.
|
8
|
+
|
9
|
+
```
|
10
|
+
bundle install
|
11
|
+
rake
|
12
|
+
```
|
13
|
+
|
14
|
+
Check that the last build succeeded in [Travis CI](https://travis-ci.org/dblock/gem-licenses) for all supported platforms.
|
15
|
+
|
16
|
+
Increment the version, modify [lib/gem-licenses/version.rb](lib/gem-licenses/version.rb).
|
17
|
+
|
18
|
+
* Increment the third number if the release has bug fixes and/or very minor features, only (eg. change `0.2.1` to `0.2.2`).
|
19
|
+
* Increment the second number if the release contains major features or breaking API changes (eg. change `0.2.1` to `0.3.0`).
|
20
|
+
|
21
|
+
Change "Next Release" in [CHANGELOG.md](CHANGELOG.md) to the new version.
|
22
|
+
|
23
|
+
```
|
24
|
+
### 0.2.2 (7/10/2015)
|
25
|
+
```
|
26
|
+
|
27
|
+
Remove the line with "Your contribution here.", since there will be no more contributions to this release.
|
28
|
+
|
29
|
+
Commit your changes.
|
30
|
+
|
31
|
+
```
|
32
|
+
git add README.md CHANGELOG.md lib/gem-licenses/version.rb
|
33
|
+
git commit -m "Preparing for release, 0.2.2."
|
34
|
+
git push origin master
|
35
|
+
```
|
36
|
+
|
37
|
+
Release.
|
38
|
+
|
39
|
+
```
|
40
|
+
$ rake release
|
41
|
+
|
42
|
+
gem-licenses 0.2.2 built to pkg/gem-licenses-0.2.2.gem.
|
43
|
+
Tagged v0.2.2.
|
44
|
+
Pushed git commits and tags.
|
45
|
+
Pushed gem-licenses 0.2.2 to rubygems.org.
|
46
|
+
```
|
47
|
+
|
48
|
+
### Prepare for the Next Version
|
49
|
+
|
50
|
+
Add the next release to [CHANGELOG.md](CHANGELOG.md).
|
51
|
+
|
52
|
+
```
|
53
|
+
Next Release
|
54
|
+
============
|
55
|
+
|
56
|
+
* Your contribution here.
|
57
|
+
```
|
58
|
+
|
59
|
+
Increment the third version number in [lib/gem-licenses/version.rb](lib/gem-licenses/version.rb).
|
60
|
+
|
61
|
+
Comit your changes.
|
62
|
+
|
63
|
+
```
|
64
|
+
git add CHANGELOG.md lib/gem-licenses/version.rb
|
65
|
+
git commit -m "Preparing for next development iteration, 0.2.3."
|
66
|
+
git push origin master
|
67
|
+
```
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/gem-licenses.gemspec
CHANGED
@@ -3,7 +3,7 @@ require 'gem-licenses/version'
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'gem-licenses'
|
6
|
-
s.version = Gem::
|
6
|
+
s.version = Gem::GemLicenses::VERSION
|
7
7
|
s.authors = ['Daniel Doubrovkine']
|
8
8
|
s.email = 'dblock@dblock.org'
|
9
9
|
s.platform = Gem::Platform::RUBY
|
data/lib/gem-licenses/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gem-licenses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Doubrovkine
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: dblock@dblock.org
|
@@ -26,6 +26,7 @@ files:
|
|
26
26
|
- Gemfile
|
27
27
|
- LICENSE
|
28
28
|
- README.md
|
29
|
+
- RELEASING.md
|
29
30
|
- Rakefile
|
30
31
|
- VERSION
|
31
32
|
- common_licenses/bsd
|
@@ -71,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
72
|
version: 1.3.6
|
72
73
|
requirements: []
|
73
74
|
rubyforge_project:
|
74
|
-
rubygems_version: 2.
|
75
|
+
rubygems_version: 2.4.5
|
75
76
|
signing_key:
|
76
77
|
specification_version: 4
|
77
78
|
summary: Attempts to figure out what licenses various gems use.
|