forked from pioneerworks/heap-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheap.gemspec
More file actions
33 lines (25 loc) · 880 Bytes
/
heap.gemspec
File metadata and controls
33 lines (25 loc) · 880 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
30
31
32
# -*- encoding: utf-8 -*-
require_relative 'lib/heap/version'
Gem::Specification.new do |s|
s.name = "heap"
s.version = HeapAPI::VERSION
s.authors = ["Victor Costan"]
s.date = "2016-04-07"
s.description = "Implements Heap's server-side API"
s.email = "victor@heapanalytics.com"
s.homepage = "http://github.com/heap/heap-ruby"
s.licenses = ["MIT"]
s.required_rubygems_version = ">= 1.3.6"
s.summary = "Heap server-side API client"
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency 'faraday', '~> 1.9'
s.add_runtime_dependency 'faraday_middleware', '~> 1.2'
s.add_development_dependency 'rake', '>= 0.8.7'
s.add_development_dependency 'bundler', '>= 1.0'
end