-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcage.gemspec.mustache
More file actions
32 lines (29 loc) · 1.1 KB
/
cage.gemspec.mustache
File metadata and controls
32 lines (29 loc) · 1.1 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "cage"
s.version = {{{ version }}}
s.authors = ["Steven! Ragnarök"]
s.email = ["steven@nuclearsandwich.com"]
s.homepage = "https://github.com/nuclearsandwich/cage"
s.summary = "A Faraday Cage for your HTTP Interactions."
s.description = <<-DESC
Curl can be a bit unfriendly, especially to developers just starting out. Cage
wraps Faraday and Pry in order to provide an attractive and helpful interface to
the web APIs in your life.
DESC
s.files = {{{ files }}}
s.test_files = {{{ test_files }}}
s.executables = {{{ bin_files }}}
s.require_paths = %w[lib]
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "mustache"
s.add_runtime_dependency "faraday"
s.add_runtime_dependency "faraday_middleware"
s.add_runtime_dependency "multi_xml"
s.add_runtime_dependency "json"
s.add_runtime_dependency "nokogiri"
s.add_runtime_dependency "pry"
s.add_runtime_dependency "trollop"
end