gem-versioner 1.0.0 → 1.1.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/LICENSE.txt +23 -17
- data/README.md +7 -2
- data/gem-versioner.gemspec +5 -6
- data/lib/rubygems/versioner/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3be6b44f3068cc1d1023b4356e7472d12f38abf
|
4
|
+
data.tar.gz: 423b75d2bedaa76e3583c1e14410a74c384165c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e475213731a39ea7836f5d72e4c545582360daf6852979fc930d29626c2aa966102f2e5df921f4155bcde228748658d616fe2e04dce8735673c816b041f2d77
|
7
|
+
data.tar.gz: 168e7b2082c44089ef9db17416c18123cba4f8f43cebf8c89618dadf1348794c0883bfb5ac24711f1c568bd134606be35267ec4aa9e5cf9d9593943a39ea643f
|
data/LICENSE.txt
CHANGED
@@ -1,21 +1,27 @@
|
|
1
|
-
|
1
|
+
Copyright (c) 2016, Funding Circle Ltd
|
2
|
+
All rights reserved.
|
2
3
|
|
3
|
-
|
4
|
+
Redistribution and use in source and binary forms, with or without
|
5
|
+
modification, are permitted provided that the following conditions are met:
|
4
6
|
|
5
|
-
|
6
|
-
of
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
7
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
8
|
+
list of conditions and the following disclaimer.
|
11
9
|
|
12
|
-
|
13
|
-
|
10
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
11
|
+
this list of conditions and the following disclaimer in the documentation
|
12
|
+
and/or other materials provided with the distribution.
|
14
13
|
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
14
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
15
|
+
may be used to endorse or promote products derived from this software without
|
16
|
+
specific prior written permission.
|
17
|
+
|
18
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
22
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
23
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
24
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
25
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
26
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
27
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
# Gem::Versioner
|
5
5
|
|
6
|
-
|
6
|
+
Gem that works as an extension for the build task of a Gem to allow pre release versions
|
7
7
|
|
8
8
|
## Installation
|
9
9
|
|
@@ -20,6 +20,9 @@ you can specify a pre release version by
|
|
20
20
|
|
21
21
|
This will build a gem with a version in the following format `${gem_version}.pre.${PRE_RELEASE}.${current_timestamp}` , for example: `0.0.1.pre.foo.20160919174006`
|
22
22
|
|
23
|
+
## Publishing
|
24
|
+
As soon as a new PR is merged to master CircleCI is responsible to publish the new version of the Gem to https://rubygems.org/
|
25
|
+
|
23
26
|
## Development
|
24
27
|
|
25
28
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
|
@@ -31,5 +34,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/Fundin
|
|
31
34
|
|
32
35
|
## License
|
33
36
|
|
34
|
-
|
37
|
+
Copyright © 2016 Funding Circle Ltd.
|
38
|
+
|
39
|
+
Distributed under the BSD 3-Clause License.
|
35
40
|
|
data/gem-versioner.gemspec
CHANGED
@@ -6,13 +6,12 @@ require 'rubygems/versioner/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = 'gem-versioner'
|
8
8
|
spec.version = Gem::Versioner::VERSION
|
9
|
-
spec.authors = 'Funding Circle
|
10
|
-
spec.email = '
|
9
|
+
spec.authors = 'Funding Circle Engineering'
|
10
|
+
spec.email = 'engineering+gem-versioner@fundingcircle.com'
|
11
11
|
|
12
|
-
spec.summary = '
|
13
|
-
spec.
|
14
|
-
spec.
|
15
|
-
spec.license = 'MIT'
|
12
|
+
spec.summary = 'Gem that works as an extension for the build task of a Gem to allow pre release versions'
|
13
|
+
spec.homepage = 'https://github.com/FundingCircle/gem-versioner'
|
14
|
+
spec.license = 'BSD-3'
|
16
15
|
|
17
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
17
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gem-versioner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Funding Circle
|
7
|
+
- Funding Circle Engineering
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-09-
|
11
|
+
date: 2016-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -52,8 +52,8 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description:
|
56
|
-
email:
|
55
|
+
description:
|
56
|
+
email: engineering+gem-versioner@fundingcircle.com
|
57
57
|
executables: []
|
58
58
|
extensions: []
|
59
59
|
extra_rdoc_files: []
|
@@ -74,9 +74,9 @@ files:
|
|
74
74
|
- lib/rubygems/versioner/build_plugin.rb
|
75
75
|
- lib/rubygems/versioner/version.rb
|
76
76
|
- lib/rubygems_plugin.rb
|
77
|
-
homepage: https://github.com/FundingCircle/gem-
|
77
|
+
homepage: https://github.com/FundingCircle/gem-versioner
|
78
78
|
licenses:
|
79
|
-
-
|
79
|
+
- BSD-3
|
80
80
|
metadata:
|
81
81
|
allowed_push_host: https://rubygems.org
|
82
82
|
post_install_message:
|
@@ -98,5 +98,6 @@ rubyforge_project:
|
|
98
98
|
rubygems_version: 2.4.5.1
|
99
99
|
signing_key:
|
100
100
|
specification_version: 4
|
101
|
-
summary:
|
101
|
+
summary: Gem that works as an extension for the build task of a Gem to allow pre release
|
102
|
+
versions
|
102
103
|
test_files: []
|