]>
Commit | Line | Data |
---|---|---|
823e558b BB |
1 | Gem::Specification.new do |s| |
2 | s.name = 'lyricli' | |
b434f05e | 3 | s.version = '0.0.2' |
823e558b BB |
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' | |
b434f05e | 9 | s.licenses = ['BSD-3-Clause'] |
823e558b BB |
10 | |
11 | s.files = Dir['lib/**/*.rb'] + Dir['bin/*'] | |
12 | s.files += Dir['[A-Z]*'] + Dir['spec/**/*'] | |
ac4c2838 | 13 | s.files += Dir['config/**/*', 'lib/**/*.scpt'] |
823e558b | 14 | |
b9f550e9 BB |
15 | s.executables << 'lrc' |
16 | ||
823e558b | 17 | # Runtime Dependencies |
b434f05e BB |
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' | |
823e558b BB |
22 | |
23 | # Development Dependencies | |
b434f05e BB |
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' | |
823e558b | 28 | end |