forked from fastly/fastly-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfastly.gemspec
More file actions
23 lines (20 loc) · 856 Bytes
/
Copy pathfastly.gemspec
File metadata and controls
23 lines (20 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'fastly/gem_version'
Gem::Specification.new do |s|
s.name = "fastly"
s.version = Fastly::VERSION
s.authors = ["Fastly Inc"]
s.email = ["support@fastly.com"]
s.homepage = "http://github.com/fastly/fastly-ruby"
s.summary = %q{Client library for the Fastly acceleration system}
s.description = %q{Client library for the Fastly acceleration system}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'json'
s.add_dependency 'curb', '>=0.7.15'
s.add_dependency 'curb-fu', '>=0.6.1'
s.add_development_dependency 'rdoc', '>=3.4'
end