]> git.r.bdr.sh - rbdr/lyricli.rb/blame - lyricli.gemspec
Change error names to favor convention
[rbdr/lyricli.rb] / lyricli.gemspec
CommitLineData
823e558b
BB
1Gem::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/**/*']
6f33706c 12 s.files += Dir['lib/**/*.json', 'lib/**/*.scpt']
823e558b 13
b9f550e9
BB
14 s.executables << 'lrc'
15
823e558b
BB
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'
26end