forked from sumoheavy/jira-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjira-ruby.gemspec
More file actions
27 lines (23 loc) · 910 Bytes
/
jira-ruby.gemspec
File metadata and controls
27 lines (23 loc) · 910 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'jira/version'
Gem::Specification.new do |s|
s.name = 'jira-ruby'
s.version = JIRA::VERSION
s.authors = ['SUMO Heavy Industries']
s.homepage = 'http://www.sumoheavy.com'
s.summary = %q{Ruby Gem for use with the Atlassian JIRA REST API}
s.description = %q{API for JIRA}
s.licenses = ['OSL-3.0']
s.rubyforge_project = 'jira-ruby'
s.files = Dir["lib/**/*", "LICENSE.txt", "README.md"]
s.test_files = Dir["spec/**/*"]
s.executables = Dir["bin/**/*"]
s.require_paths = ['lib']
s.add_development_dependency 'railties'
s.add_runtime_dependency 'oauth', '~> 0.5.6'
s.add_runtime_dependency 'activesupport'
s.add_development_dependency 'webmock', '~> 1.18.0'
s.add_development_dependency 'rspec', '~> 3.12.0'
s.add_development_dependency 'rake', '~> 10.3.2'
end