-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtowerdata-rails.gemspec
More file actions
35 lines (31 loc) · 1.33 KB
/
towerdata-rails.gemspec
File metadata and controls
35 lines (31 loc) · 1.33 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tower_data/version'
Gem::Specification.new do |spec|
spec.name = "towerdata-rails"
spec.version = TowerData::VERSION
spec.authors = ["Andrew Fallows"]
spec.email = ["andrew.fallows@elocal.com"]
spec.description = <<-DESC
Provides methods for invoking the TowerData REST API, as well as ActiveModel validators
which use TowerData to verify email address and phone number
DESC
spec.summary = %q{Ruby wrapper for TowerData API}
spec.homepage = "http://www.github.com/eLocal/towerdata-rails"
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 "activemodel", '>3.0'
spec.add_dependency "httparty"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "vcr"
spec.add_development_dependency "webmock"
spec.add_development_dependency "rspec"
spec.add_development_dependency "guard"
spec.add_development_dependency "guard-rspec"
spec.add_development_dependency "guard-bundler"
end