forked from erdgeist/roust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roust.gemspec
27 lines (22 loc) · 1015 Bytes
/
roust.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push(File.expand_path('../lib', __FILE__))
require 'roust/version'
Gem::Specification.new do |s|
s.name = 'roust'
s.version = Roust::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ['Lindsay Holmwood']
s.email = ['[email protected]']
s.summary = "Ruby client for RT's REST API"
s.description = "Roust is a Ruby API client to access Request Tracker's REST interface."
s.homepage = 'http://github.com/bulletproofnetworks/roust'
s.license = 'Apache 2.0'
s.required_ruby_version = '>= 2.0.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 = %w(lib)
s.add_runtime_dependency 'mail', '>= 2.5.4'
s.add_runtime_dependency 'httparty', '>= 0.13.1'
s.add_runtime_dependency 'activesupport', '>= 4.0.10'
end