-
Notifications
You must be signed in to change notification settings - Fork 21
/
twee2.gemspec
executable file
·43 lines (38 loc) · 2.03 KB
/
twee2.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
31
32
33
34
35
36
37
38
39
40
41
42
43
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'twee2/version'
Gem::Specification.new do |spec|
spec.name = "twee2"
spec.version = Twee2::VERSION
spec.authors = ["Dan Q"]
spec.email = ["[email protected]"]
spec.summary = %q{Command-line tool to compile Twee-style (.tw, .twine) interactive fiction source files to Twine 2-style (non-Tiddlywiki) output.}
spec.description = <<-EOF
Designed for those who preferred the Twee (for Twine 1) approach to source management, because the command-line is awesome,
but who want to take advantage of the new features in Twine 2.
Note that this is NOT a Twine 1 to Twine 2 converter, although parts of its functionality go some way to achieving this goal.
EOF
spec.homepage = "https://github.com/Dan-Q/twee2"
spec.license = "GPL-2.0"
spec.files = `git ls-files -z`.split("\x0")
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '~> 2'
spec.add_development_dependency 'rake', '~> 10'
spec.add_development_dependency 'middleman', '>= 3.4.0'
spec.add_runtime_dependency 'builder', '~> 3.2', '>= 3.2.2'
spec.add_runtime_dependency 'bundler', '~> 1.6'
spec.add_runtime_dependency 'coffee-script', '~> 2.4', '>= 2.4.1'
spec.add_runtime_dependency 'coffee-script-source', '~> 1.9', '>= 1.9.1.1'
spec.add_runtime_dependency 'execjs', '~> 2.6', '>= 2.6.0'
spec.add_runtime_dependency 'filewatcher', '~> 0.5', '>= 0.5.2'
spec.add_runtime_dependency 'haml', '~> 4.0', '>= 4.0.7'
spec.add_runtime_dependency 'nokogiri', '~> 1.6', '>= 1.6.6.2'
spec.add_runtime_dependency 'sass', '~> 3.2', '>= 3.2.19'
spec.add_runtime_dependency 'thor', '~> 0.19', '>= 0.19.1'
spec.add_runtime_dependency 'tilt', '~> 2.0', '>= 2.0.1'
spec.add_runtime_dependency 'trollop', '~> 2.1', '>= 2.1.2'
end