-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontactually-api.gemspec
More file actions
29 lines (23 loc) · 1000 Bytes
/
contactually-api.gemspec
File metadata and controls
29 lines (23 loc) · 1000 Bytes
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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'contactually/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'contactually-api'
s.version = Contactually::VERSION
s.authors = [ 'Johannes Heck' ]
s.homepage = 'https://github.com/railslove/contactually-api'
s.summary = 'A wrapper for the contactually.com api'
s.description = 'This is a simple wrapper for the contactually api. Try it!'
s.license = 'MIT'
s.files = Dir['{lib}/**/*'] + ['LICENSE.txt', 'Rakefile', 'README.md']
s.test_files = Dir['spec/**/*']
s.add_dependency 'activesupport', '~> 4.1'
s.add_dependency 'faraday', '~> 0.9'
s.add_dependency 'roar', '~> 0.12'
s.add_development_dependency 'pry-byebug', '~> 2.0'
s.add_development_dependency 'rake', '~> 10'
s.add_development_dependency 'rspec', '~> 3'
s.required_ruby_version = '>= 2.0'
end