This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathactive_rest_client.gemspec
39 lines (35 loc) · 1.85 KB
/
active_rest_client.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'active_rest_client/version'
Gem::Specification.new do |spec|
spec.name = "active_rest_client"
spec.version = ActiveRestClient::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["Which Ltd", "Andy Jeffries"]
spec.email = ["[email protected]", "[email protected]"]
spec.description = %q{Accessing REST services in an ActiveRecord style}
spec.summary = %q{This gem is for accessing REST services in an ActiveRecord style. ActiveResource already exists for this, but it doesn't work where the resource naming doesn't follow Rails conventions, it doesn't have in-built caching and it's not as flexible in general.}
spec.homepage = "http://whichdigital.github.io/"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3"
spec.add_development_dependency "webmock"
spec.add_development_dependency "rspec_junit_formatter"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "simplecov-rcov"
spec.add_development_dependency "guard-rspec"
spec.add_development_dependency 'terminal-notifier-guard'
spec.add_development_dependency 'coveralls'
spec.add_development_dependency "api-auth", ">= 1.3.1"
spec.add_development_dependency 'typhoeus'
spec.add_runtime_dependency "multi_json"
spec.add_runtime_dependency "crack"
spec.add_runtime_dependency "activesupport"
spec.add_runtime_dependency "faraday"
end