gem-licenses 0.2.0 → 0.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e2644dc330eb91c98b3ecb88b7261580d112f17b
4
- data.tar.gz: e8af03bf7586f68d443f00af88eae071c71a9099
3
+ metadata.gz: e25c2c59d98ae5182e7d558f673a20736a83001c
4
+ data.tar.gz: 72a3c6587573bd014d345eacc3417c945fc76005
5
5
  SHA512:
6
- metadata.gz: c0d5bd2625309f20ae3d52bdd941996966cfcc5fd6e85c29150ec5c59f4e43f032234babc012c4a9c8b5f760bd31b5fa93ed95d9b93a6ea3658f39b801213135
7
- data.tar.gz: 1126f2db99bed3d1b68a2c63b264f25ed57a35d366abeedc1b3ab8d32d9f3d251b45b3d77acc8e8988141282e072c0b9b01baf2969d3fcd2391fe6afd90d0be4
6
+ metadata.gz: 867c045c697593fe444bfee464d3efca397d36e68125e31fa527fbf7f0b2dc1ec3bbc6c557b33e62f3e492ad25d3ab348fcdf1d9e8835d555281d14f27a4f1cb
7
+ data.tar.gz: e61205a3e28641d52b5c2f252a51fc3a0cd0e01a74bcd14a283a820920a5366e8de0502a698d7b2b3cb5bcf32e62534330bbb0c17547ed1392a89f335e367a18
@@ -2,6 +2,7 @@ sudo: false
2
2
 
3
3
  rvm:
4
4
  - 2.1.2
5
+ - 2.3.1
5
6
 
6
7
  language: ruby
7
8
 
@@ -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::Licenses.install_tasks
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-2015, Artsy, Inc.
59
+ Copyright (c) Daniel Doubrovkine, 2011-2016, Artsy, Inc.
@@ -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
@@ -18,4 +18,4 @@ require 'rake'
18
18
  Bundler::GemHelper.install_tasks
19
19
 
20
20
  require 'gem_licenses'
21
- Gem::Licenses.install_tasks
21
+ Gem::GemLicenses.install_tasks
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
@@ -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::Licenses::VERSION
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
@@ -1,5 +1,5 @@
1
1
  module Gem
2
- module Licenses
2
+ module GemLicenses
3
3
  def self.install_tasks
4
4
  spec = Gem::Specification.find_by_name('gem-licenses')
5
5
  Dir[File.join(spec.gem_dir, 'tasks/*.rake')].each do |file|
@@ -1,5 +1,5 @@
1
1
  module Gem
2
- module Licenses
3
- VERSION = '0.2.0'
2
+ module GemLicenses
3
+ VERSION = '0.2.1'
4
4
  end
5
5
  end
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.0
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: 2015-07-17 00:00:00.000000000 Z
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.2.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.