Sha256: fc9322d00b8f3ca391dae72fb01f35d2f8904e34ff88277cf3699621d1e1a1ee

Contents?: true

Size: 1.85 KB

Versions: 4

Compression:

Stored size: 1.85 KB

Contents

# 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         = ["swlicensing@which.co.uk", "andy@andyjeffries.co.uk"]
  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"
  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_runtime_dependency "oj", "=2.1.4" # 2.1.7 breaks under linux
  spec.add_runtime_dependency "activesupport"
  spec.add_runtime_dependency "faraday", "~> 0.9"
  spec.add_runtime_dependency "patron", ">= 0.4.9" # 0.4.18 breaks against Curl v0.7.15 but works with webmock
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
active_rest_client-0.9.72 active_rest_client.gemspec
active_rest_client-0.9.71 active_rest_client.gemspec
active_rest_client-0.9.70 active_rest_client.gemspec
active_rest_client-0.9.69 active_rest_client.gemspec