forked from mattb/instapaper_full
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstapaper_full.gemspec
29 lines (24 loc) · 1.08 KB
/
instapaper_full.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "instapaper_full/version"
Gem::Specification.new do |s|
s.name = "instapaper_full"
s.version = InstapaperFull::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matt Biddulph", "Tom Taylor"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/mattb/instapaper_full"
s.summary = %q{Wrapper for the Instapaper Full Developer API}
s.description = %q{See http://www.instapaper.com/api/full}
s.rubyforge_project = "instapaper_full"
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("faraday")
s.add_dependency("faraday_middleware")
s.add_dependency("simple_oauth", "~> 0.1")
s.add_development_dependency("rake")
s.add_development_dependency("test-unit", "~> 2.4.2")
s.add_development_dependency("webmock", "~> 1.7.8")
end