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'
10 s.files = Dir['lib/**/*.rb'] + Dir['bin/*']
11 s.files += Dir['[A-Z]*'] + Dir['spec/**/*']
12 s.files += Dir['lib/**/*.json', 'lib/**/*.scpt']
14 s.executables << 'lrc'
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'
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'