1 Gem::Specification.new do |s|
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 s.licenses = ['BSD-3-Clause']
11 s.files = Dir['lib/**/*.rb'] + Dir['bin/*']
12 s.files += Dir['[A-Z]*'] + Dir['spec/**/*']
13 s.files += Dir['config/**/*', 'lib/**/*.scpt']
15 s.executables << 'lrc'
17 # Runtime Dependencies
18 s.add_runtime_dependency 'nokogiri', '~> 1.5'
19 s.add_runtime_dependency 'multi_json', '~> 1.3'
20 s.add_runtime_dependency 'rdio', '~> 0.1'
21 s.add_runtime_dependency 'launchy', '~> 2.1'
23 # Development Dependencies
24 s.add_development_dependency 'ruby-debug19', '~> 0.11'
25 s.add_development_dependency 'yard', '~> 0.8'
26 s.add_development_dependency 'thin', '~> 1.5'
27 s.add_development_dependency 'rspec', '~> 2.11'