-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtypingpool.gemspec
More file actions
33 lines (31 loc) · 1.27 KB
/
Copy pathtypingpool.gemspec
File metadata and controls
33 lines (31 loc) · 1.27 KB
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
#!/usr/bin/env gem build
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'typingpool/version'
Gem::Specification.new do |s|
s.name = 'typingpool'
s.version = Typingpool::VERSION
s.date = Time.now.strftime("%Y-%m-%d")
s.description = 'An app for transcribing audio using Mechanical Turk'
s.summary = s.description
s.license = 'MIT'
s.authors = ['Ryan Tate']
s.email = 'ryantate@ryantate.com'
s.homepage = 'http://github.com/ryantate/typingpool'
s.required_ruby_version = '>= 2.0'
s.requirements = ['ffmpeg', 'mp3splt', 'mp3wrap']
s.add_runtime_dependency('rturk', '~> 2.11.0')
s.add_runtime_dependency('highline', '>= 1.6')
s.add_runtime_dependency('nokogiri', '>= 1.5')
s.add_runtime_dependency('aws-sdk', '~> 1.8.0')
s.add_runtime_dependency('net-sftp', '>= 2.0.5')
s.add_development_dependency('minitest')
s.add_development_dependency('timecop')
s.add_development_dependency('vcr')
s.add_development_dependency('webmock', '>= 1.13.0')
s.add_development_dependency('rake', '>= 10.1.0')
s.require_path = 'lib'
s.test_files = `git ls-files -- test/test*`.split("\n")
s.bindir = 'bin'
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = `git ls-files`.split("\n")
end