mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-03-25 08:55:49 +00:00
26 lines
979 B
Ruby
26 lines
979 B
Ruby
# -*- encoding: utf-8 -*-
|
|
require File.expand_path('../lib/instapaper/version', __FILE__)
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = "instapaper"
|
|
gem.version = Instapaper::VERSION
|
|
|
|
gem.author = "Steve Agalloco"
|
|
gem.email = "steve.agalloco@gmail.com"
|
|
gem.homepage = "https://github.com/spagalloco/instapaper"
|
|
gem.summary = %q{Ruby Instapaper Client}
|
|
gem.description = %q{Ruby Client for Instapaper's Full API}
|
|
|
|
gem.add_development_dependency 'kramdown'
|
|
gem.add_development_dependency 'simplecov'
|
|
|
|
gem.add_runtime_dependency 'faraday_middleware', '~> 0.7'
|
|
gem.add_runtime_dependency 'multi_json', '~> 1'
|
|
gem.add_runtime_dependency 'rash'
|
|
gem.add_runtime_dependency 'simple_oauth'
|
|
|
|
gem.files = `git ls-files`.split("\n")
|
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
gem.require_paths = ["lib"]
|
|
end
|