-
Notifications
You must be signed in to change notification settings - Fork 12
/
kindle.gemspec
28 lines (25 loc) · 1.11 KB
/
kindle.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require_relative "lib/kindle"
Gem::Specification.new do |s|
s.name = "kindle"
s.version = Kindle::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Matt Petty"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/lodestone/kindle"
s.summary = %q{Manage your kindle highlights with ruby, output in JSON, Markdown, and CSV formats}
s.description = %q{Manage your Amazon Kindle highlights: Sync and cache to an ActiveRecord database and output in various formats}
s.rubyforge_project = "kindle"
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_runtime_dependency "gli"
s.add_runtime_dependency "sqlite3"
s.add_runtime_dependency "activerecord", "~>5.0.0"
s.add_runtime_dependency "nokogiri"
s.add_runtime_dependency "mechanize"
s.add_runtime_dependency "rainbow"
s.add_runtime_dependency "pry"
end