verlane 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/verlane/tasks/verlane.rake +75 -0
- data/lib/verlane/tasks.rb +1 -0
- data/lib/verlane/version.rb +3 -0
- data/lib/verlane.rb +5 -0
- data/verlane.gemspec +25 -0
- metadata +96 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c2f69d58b64bbe826b41922d1af18d2d4c8f1120
|
4
|
+
data.tar.gz: 85c71b0c9be7f8d1641d47956eea24efcc124d36
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c7d765a6217de00e7b359f1ea9178a55cdd3b0bf3a2c3f2b53250f3f729998668179f81d18c104a65f3cf23bb0fd183046316e403e244f2d8d3bd0ad044bf5d5
|
7
|
+
data.tar.gz: 83d2f3bd9f01eede1235fa3a268e6f1e53529513fb48ec7275eb55bdec2c7ac2a5a4da6910226c30499d76887d0e1dab3706be11afd3c9123e955d64a7074663
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Mikko Kokkonen
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Verlane
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'verlane'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install verlane
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,75 @@
|
|
1
|
+
require 'versionomy'
|
2
|
+
require 'yaml'
|
3
|
+
|
4
|
+
VERSION = if File.exists?('VERSION')
|
5
|
+
Versionomy.parse(File.read('VERSION').strip)
|
6
|
+
else
|
7
|
+
Versionomy.create('0.0.1')
|
8
|
+
end
|
9
|
+
|
10
|
+
def bump_version(version)
|
11
|
+
field = case version.release_type
|
12
|
+
when :alpha
|
13
|
+
:alpha_version
|
14
|
+
when :beta
|
15
|
+
:beta_version
|
16
|
+
when :release_candidate
|
17
|
+
:release_candidate_version
|
18
|
+
else
|
19
|
+
:tiny2
|
20
|
+
end
|
21
|
+
version.bump(field)
|
22
|
+
end
|
23
|
+
|
24
|
+
def save_version(version)
|
25
|
+
yaml = if File.exists?('VERSION.yml')
|
26
|
+
YAML.load_file('VERSION.yml')
|
27
|
+
else
|
28
|
+
{}
|
29
|
+
end
|
30
|
+
yaml.merge!(version.values_hash)
|
31
|
+
|
32
|
+
File.open('VERSION.yml', 'w') {|io| io.write yaml.to_yaml}
|
33
|
+
File.open('VERSION', 'w') {|io| io.write version.to_s}
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
desc "Print current version #{VERSION.to_s}"
|
38
|
+
task :version do
|
39
|
+
puts "#{VERSION.to_s}"
|
40
|
+
end
|
41
|
+
|
42
|
+
namespace :version do
|
43
|
+
desc "Bumps build to next #{bump_version(VERSION).to_s}"
|
44
|
+
task :bump do
|
45
|
+
save_version(bump_version(VERSION))
|
46
|
+
end
|
47
|
+
|
48
|
+
namespace :bump do
|
49
|
+
VERSION.field_names[0..4].each do |field|
|
50
|
+
desc "Bump version to #{VERSION.bump(field).to_s}"
|
51
|
+
task field do
|
52
|
+
save_version(VERSION.bump(field))
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
desc "Release version #{VERSION.release.to_s}"
|
58
|
+
task :release do
|
59
|
+
save_version(VERSION.release)
|
60
|
+
end
|
61
|
+
|
62
|
+
desc "Prepare for release #{VERSION.bump(:minor).change(release_type: :beta).to_s}"
|
63
|
+
task :pre do
|
64
|
+
save_version(VERSION.bump(:minor).change(release_type: :beta))
|
65
|
+
end
|
66
|
+
|
67
|
+
namespace :pre do
|
68
|
+
VERSION.field_names[0..2].each do |field|
|
69
|
+
desc "Prepare for release #{VERSION.bump(field).change(release_type: :beta).to_s}"
|
70
|
+
task field do
|
71
|
+
save_version(VERSION.bump(field).change(release_type: :beta))
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
load 'verlane/tasks/verlane.rake'
|
data/lib/verlane.rb
ADDED
data/verlane.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'verlane/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "verlane"
|
8
|
+
spec.version = Verlane::VERSION
|
9
|
+
spec.authors = ["Mikko Kokkonen"]
|
10
|
+
spec.email = ["mikko@owlforestry.com"]
|
11
|
+
spec.description = %q{Simple version number management library, using Rake tasks}
|
12
|
+
spec.summary = %q{Manage version numbers}
|
13
|
+
spec.homepage = "https://github.com/owlforestry/verlane"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "versionomy"
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: verlane
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Mikko Kokkonen
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-07-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: versionomy
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: Simple version number management library, using Rake tasks
|
56
|
+
email:
|
57
|
+
- mikko@owlforestry.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- lib/verlane.rb
|
68
|
+
- lib/verlane/tasks.rb
|
69
|
+
- lib/verlane/tasks/verlane.rake
|
70
|
+
- lib/verlane/version.rb
|
71
|
+
- verlane.gemspec
|
72
|
+
homepage: https://github.com/owlforestry/verlane
|
73
|
+
licenses:
|
74
|
+
- MIT
|
75
|
+
metadata: {}
|
76
|
+
post_install_message:
|
77
|
+
rdoc_options: []
|
78
|
+
require_paths:
|
79
|
+
- lib
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
requirements: []
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 2.0.3
|
93
|
+
signing_key:
|
94
|
+
specification_version: 4
|
95
|
+
summary: Manage version numbers
|
96
|
+
test_files: []
|