-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgazette.gemspec
30 lines (24 loc) · 1.15 KB
/
gazette.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
30
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "gazette/version"
Gem::Specification.new do |s|
s.name = "gazette"
s.version = Gazette::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jeff Pollard"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Simple Ruby wrapper gem to interact with the Instapaper API.}
s.description = %q{Simple Ruby wrapper gem to interact with the Instapaper API. Supports authenticate and add API methods, as well as https, jsonp and all other features of the API.}
s.rubyforge_project = "gazette"
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(%q<yard>, ["> 0.6.0"])
s.add_dependency(%q<bluecloth>, ["> 2.0.0"])
s.add_development_dependency(%q<rspec>, ["~> 2.4.0"])
s.add_development_dependency(%q<rake>)
s.add_development_dependency(%q<rcov>, ["~> 0.9.0"])
s.add_development_dependency(%q<fakeweb>, ["> 1.2.0"])
end