]> git.r.bdr.sh - rbdr/lyricli.rb/blob - lyricli.gemspec
Document the errors... ish?
[rbdr/lyricli.rb] / lyricli.gemspec
1 Gem::Specification.new do |s|
2 s.name = 'lyricli'
3 s.version = '0.0.1'
4 s.summary = 'Lyricli is an awesome lyric client for your Command Line'
5 s.description = 'Lyricli is an awesome CLI tool to read the lyrics of your currently playing song right in the command line'
6 s.authors = ['Ben Beltran']
7 s.email = 'ben@nsovocal.com'
8 s.homepage = 'http://nsovocal.com/lyricli'
9
10 s.files = Dir['lib/**/*.rb'] + Dir['bin/*']
11 s.files += Dir['[A-Z]*'] + Dir['spec/**/*']
12 s.files += Dir['lib/**/*.json', 'lib/**/*.scpt']
13
14 s.executables << 'lrc'
15
16 # Runtime Dependencies
17 s.add_runtime_dependency 'nokogiri', '~> 1.5.5'
18 s.add_runtime_dependency 'multi_json', '~> 1.3.6'
19 s.add_runtime_dependency 'rdio', '~> 0.1.0'
20 s.add_runtime_dependency 'launchy', '~> 2.1.2'
21
22 # Development Dependencies
23 s.add_development_dependency 'ruby-debug19', '~> 0.11.6'
24 s.add_development_dependency 'yard', '~> 0.8.2.1'
25 s.add_development_dependency 'thin', '~> 1.5.0'
26 end