-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwordsmith.gemspec
25 lines (21 loc) · 939 Bytes
/
wordsmith.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
$LOAD_PATH.unshift 'lib'
require 'wordsmith/version'
Gem::Specification.new do |gem|
gem.name = "wordsmith"
gem.version = Wordsmith::VERSION
gem.authors = ["Amed Rodriguez", "Javier Saldana", "Rene Cienfuegos"]
gem.homepage = "https://github.com/tractical/wordsmith"
gem.summary = "The best way to publish ebooks. No, really."
gem.description = "Create, collaborate and publish ebooks easily."
gem.executables = "wordsmith"
gem.license = "MIT"
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.add_dependency "git"
gem.add_dependency "kindlegen", "~> 2.3"
gem.add_dependency "nokogiri", "~> 1.5"
gem.add_dependency "sass", "~> 3.1"
gem.add_development_dependency "rake"
gem.add_development_dependency "test-unit"
end