This repository was archived by the owner on May 18, 2018. It is now read-only.
forked from fullcontact/fullcontact-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfullcontact.gemspec
More file actions
40 lines (35 loc) · 1.55 KB
/
Copy pathfullcontact.gemspec
File metadata and controls
40 lines (35 loc) · 1.55 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
36
37
38
39
40
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "fullcontact/version"
Gem::Specification.new do |s|
s.add_development_dependency 'maruku', '~> 0.6'
s.add_development_dependency 'nokogiri', '~> 1.4'
s.add_development_dependency 'rake', '~> 0.9'
s.add_development_dependency 'rspec', '~> 2.6'
s.add_development_dependency 'simplecov', '~> 0.4'
s.add_development_dependency 'webmock', '~> 1.6'
s.add_development_dependency 'yard', '~> 0.7'
s.add_runtime_dependency 'hashie', '~> 1.0.0'
s.add_runtime_dependency 'faraday', '~> 0.7.0'
s.add_runtime_dependency 'faraday_middleware', '~> 0.7.0'
s.add_runtime_dependency 'multi_json', '~> 1.0.0'
s.add_runtime_dependency 'multi_xml', '~> 0.4.0'
s.add_runtime_dependency 'rash', '~> 0.3.0'
s.author = "Brandon West"
s.description = %q{A Ruby wrapper for the FullContact API}
s.email = ['brawest@gmail.com']
s.post_install_message = '
-------------------------------------------------------------
Follow me on Twitter! http://twitter.com/brandonmwest
-------------------------------------------------------------
'
s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
s.files = `git ls-files`.split("\n")
s.homepage = 'https://github.com/brandonmwest/rainmaker'
s.name = 'fullcontact'
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
s.summary = %q{Ruby wrapper for the FullContact API}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = FullContact::VERSION
end