-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacceleration.gemspec
35 lines (31 loc) · 1.41 KB
/
acceleration.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
33
34
35
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path '../lib', __FILE__
require 'acceleration/version'
Gem::Specification.new do |s|
s.name = 'acceleration'
s.version = Acceleration::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Colin Dean']
s.email = ['[email protected]']
s.homepage = 'https://github.com/watson-explorer/acceleration-ruby'
product_name = 'IBM Watson Explorer Foundational Components Engine'
s.summary = "A succinct interface to to the #{product_name} REST API"
s.description = <<-END.gsub(/^ {6}/, '')
Acceleration provides a succinct, ActiveResource-style interface to a the
#{product_name} search platform instance's REST API. Acceleration is
derived from Velocity, the original name for Engine.
END
['nokogiri', 'rest-client'].each { |d| s.add_runtime_dependency d }
%w(semver pry bundler rake).each do |version_unspecified|
s.add_development_dependency version_unspecified
end
s.add_development_dependency 'guard', '~> 2.14.0'
s.add_development_dependency 'guard-bundler', '~> 2.1.0'
s.add_development_dependency 'guard-rubocop', '~> 1.2.0'
s.add_development_dependency 'ruby_gntp', '~> 0.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