# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "jiralicious/version" Gem::Specification.new do |s| s.name = "jiralicious" s.version = Jiralicious::VERSION s.platform = Gem::Platform::RUBY s.homepage = "http://github.com/jstewart/jiralicious" s.license = "MIT" s.summary = %Q{A Ruby library for interacting with JIRA's REST API} s.description = %Q{A Ruby library for interacting with JIRA's REST API} s.email = "jstewart@fusionary.com" s.authors = ["Jason Stewart"] s.add_runtime_dependency 'crack', '~> 0.1.8' if Gem::Version.new(RUBY_VERSION) > Gem::Version.new('1.9.2') s.add_runtime_dependency 'httparty', '>= 0.10' else s.add_runtime_dependency 'httparty', '>= 0.10', '< 0.12.0' end s.add_runtime_dependency 'hashie', '>= 1.1', '< 3.0.0' s.add_runtime_dependency 'json', '>= 1.6', '< 1.9.0' s.add_runtime_dependency 'oauth' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('1.9.0') s.add_runtime_dependency 'nokogiri' else s.add_runtime_dependency 'nokogiri', '< 1.6' end s.add_development_dependency 'rspec', '~> 2.6' s.add_development_dependency 'rake' s.add_development_dependency 'fakeweb', '~> 1.3.0' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end