-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoctoherder.gemspec
25 lines (23 loc) · 1020 Bytes
/
octoherder.gemspec
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
$:.unshift File.expand_path("../lib", __FILE__)
require "octoherder/version"
Gem::Specification.new do |s|
# These dependencies appear in the Gemfile.
s.add_development_dependency('rantly', '~> 0.3.1')
s.add_development_dependency('rspec', '>= 2.11')
s.platform = Gem::Platform::RUBY
s.summary = 'Helping herd your octocats.'
s.name = 'octoherder'
s.homepage = 'https://github.com/frankshearar/octoherder/'
s.email = '[email protected]'
s.license = 'MIT'
s.authors = ['Frank Shearar']
s.version = OctoHerder::VERSION
s.requirements << 'none'
s.executables << 'octoherder'
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
# ls-files shows only those files under version control.
s.files = `git ls-files lib`.split("\n")
s.test_files = `git ls-files test`.split("\n")
s.description = "Octoherder helps keep your various repositories' milestones and other project management info in sync."
end