-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstep-up.gemspec
More file actions
38 lines (31 loc) · 1.29 KB
/
step-up.gemspec
File metadata and controls
38 lines (31 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
version_file = File.expand_path "../GEM_VERSION", __FILE__
File.delete version_file if File.exists? version_file
require 'step-up'
Gem::Specification.new do |s|
s.name = "step-up"
s.version = StepUp::VERSION
s.authors = ["Marcelo Manzan", "Eric Fer"]
s.email = ["manzan@gmail.com", "eric.fer@gmail.com"]
s.homepage = "https://github.com/kawamanza/step-up"
s.summary = %q{The best way to manage your project's versioning}
s.description = %q{StepUp manages a project's versioning through its entire lifecycle}
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "step-up"
s.add_runtime_dependency "thor", "~> 0.14", ">= 0.14.6"
s.add_development_dependency "rspec", "~> 2.11", ">= 2.11.0"
s.add_development_dependency "mocha", "~> 0.12.0"
s.add_development_dependency "rake", "~> 10.4", ">= 10.4.2"
excepts = %w[
.gitignore
step-up.gemspec
]
tests = `git ls-files -- {test,spec,features}/*`.split("\n")
others = []
others << "GEM_VERSION" if File.exists?(version_file)
s.files = `git ls-files`.split("\n") - excepts - tests + others
s.test_files = tests
s.executables = %w(stepup)
end