-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjironimo.gemspec
32 lines (27 loc) · 1.34 KB
/
jironimo.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
26
27
28
29
30
31
32
# coding: utf-8
config = File.expand_path('../config', __FILE__)
require "#{config}/version"
Gem::Specification.new do |spec|
spec.name = "jironimo"
spec.version = Jironimo::VERSION
spec.authors = ["Brian Caquelin"]
spec.email = ["b07507@freescale.com"]
spec.summary = "Top level wrapper for the gem jira-ruby that interacts with the JIRA issue tracking system"
spec.homepage = "http://origen-sdk.org/jironimo"
spec.required_ruby_version = '>= 1.9.3'
spec.required_rubygems_version = '>= 1.8.11'
# Only the files that are hit by these wildcards will be included in the
# packaged gem, the default should hit everything in most cases but this will
# need to be added to if you have any custom directories
spec.files = Dir["lib/**/*.rb", "templates/**/*", "config/**/*.rb",
"bin/*", "lib/tasks/**/*.rake", "pattern/**/*.rb",
"program/**/*.rb"
]
spec.executables = []
spec.require_paths = ["lib"]
# Add any gems that your plugin needs to run within a host application
spec.add_runtime_dependency "origen"
spec.add_runtime_dependency "jira-ruby", ">= 0.1.13"
# Add any gems that your plugin needs for its development environment only
#spec.add_development_dependency "doc_helpers", ">= 1.7.0"
end