forked from jgraichen/acfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acfs.gemspec
34 lines (27 loc) · 1.32 KB
/
acfs.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'acfs/version'
Gem::Specification.new do |spec|
spec.name = 'acfs'
spec.version = Acfs::VERSION
spec.authors = ['Jan Graichen']
spec.email = %w([email protected])
spec.description = 'API Client For Services'
spec.summary = 'An abstract API base client for service oriented application.'
spec.homepage = 'https://github.com/jgraichen/acfs'
spec.license = 'MIT'
spec.files = Dir['**/*'].grep(%r{^((bin|lib|test|spec|features)/|.*\.gemspec|.*LICENSE.*|.*README.*|.*CHANGELOG.*)})
spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w(lib)
spec.add_runtime_dependency 'activesupport', '>= 3.1'
spec.add_runtime_dependency 'activemodel', '>= 3.1'
spec.add_runtime_dependency 'actionpack', '>= 3.1'
spec.add_runtime_dependency 'multi_json'
# Bundle update w/o version resolves to 0.3.3 ...
spec.add_runtime_dependency 'typhoeus', '>= 0.6.5'
spec.add_runtime_dependency 'rack'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.version = "#{spec.version}.1.b#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS_BUILD_NUMBER']
end