-
Notifications
You must be signed in to change notification settings - Fork 9
/
insales_api.gemspec
39 lines (33 loc) · 1.3 KB
/
insales_api.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
36
37
38
39
# frozen_string_literal: true
# $LOAD_PATH.push File.expand_path('lib', __dir__)
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'insales_api/version'
Gem::Specification.new do |s|
s.name = 'insales_api'
s.version = InsalesApi::VERSION::STRING
s.authors = 'InSales'
s.email = '[email protected]'
s.homepage = 'https://github.com/insales/insales_api'
s.summary = 'Gem for accessing the InSales REST web services'
s.description = 'Gem for accessing the InSales REST web services'
if s.respond_to?(:metadata) # old rubygems do not support metadata
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = "https://github.com/insales/insales_api"
s.metadata["changelog_uri"] = "https://github.com/insales/insales_api/blob/master/CHANGELOG.md"
end
s.required_ruby_version = '>= 1.9'
s.files = `git ls-files`.split("\n").reject do |f|
f.match(Regexp.union(
%r{^gemfiles/},
%r{^spec/},
/^\./,
/^Appraisals/,
/^Gemfile/,
/^Rakefile/
))
end
s.add_dependency('activeresource', ['>= 3.0.0'])
s.add_dependency('activesupport', ['>= 3.0.0'])
s.add_development_dependency 'rake', '>= 10.3'
s.add_development_dependency 'rspec', '~> 3.12'
end