Sha256: b2817fb51416957b98a189525e517471a5a7a5e85bd865a602ad4efc7b162761

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'twfy/version'

Gem::Specification.new do |spec|
  spec.name          = "twfy"
  spec.version       = Twfy::VERSION
  spec.authors       = ["Tom Hipkin", "Martin Owen", "Bruce Williams"]
  spec.email         = ["brwcodes@gmail.com", "tomhipkin@gmail.com"]
  spec.description   = "Ruby library to interface with the TheyWorkForYou API."
  spec.summary       = "Ruby library to interface with the TheyWorkForYou API. TheyWorkForYou.com is a non-partisan, volunteer-run website which aims to make it easy for people to keep tabs on their elected and unelected representatives in Parliament."
  spec.homepage      = "http://github.com/bruce/twfy"
  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_dependency "multi_json"
  spec.add_dependency "paginator", "~> 1.2"
  spec.add_development_dependency "bundler", "~> 1.11"
  spec.add_development_dependency "json"
  spec.add_development_dependency "vcr"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "webmock"
  spec.add_development_dependency "minitest"
  spec.add_development_dependency "minitest-vcr"

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
twfy-1.1.1 twfy.gemspec