-
Notifications
You must be signed in to change notification settings - Fork 0
/
rivendell-import.gemspec
52 lines (44 loc) · 2.1 KB
/
rivendell-import.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/rivendell/import/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Alban Peignier","Martin Kirchgessner"]
gem.email = ["[email protected]"]
gem.description = %q{Import sound in Rivendell (as rivendell-import), fetching metadata in Disco}
gem.summary = %q{Warning: conflicts with rivendell-import !}
gem.homepage = "https://github.com/rivendell-disco-import/"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "rivendell-disco-import"
gem.require_paths = ["lib"]
gem.version = Rivendell::Import::VERSION
# 2.0 requires ruby 1.9.3
gem.add_runtime_dependency 'listen', '~> 1.3.1'
gem.add_runtime_dependency 'httmultiparty'
# 0.12.0 requires ruby 1.9.3
gem.add_runtime_dependency 'httparty', '0.11.0'
gem.add_runtime_dependency 'mime-types', '~> 2.4.3'
gem.add_runtime_dependency 'rivendell-api', '~> 0.9'
gem.add_runtime_dependency 'trollop'
gem.add_runtime_dependency 'activerecord', '~> 3.2.8'
gem.add_runtime_dependency 'activesupport', '~> 3.2.8'
gem.add_runtime_dependency 'mail'
gem.add_runtime_dependency 'sqlite3'
gem.add_runtime_dependency 'SyslogLogger', '~> 2.0'
gem.add_runtime_dependency 'taglib-ruby'
gem.add_runtime_dependency 'sinatra'
gem.add_runtime_dependency 'sinatra-flash'
gem.add_runtime_dependency 'will_paginate', '~> 3.0.0'
gem.add_runtime_dependency 'daemons'
gem.add_runtime_dependency 'rivendell-db', '~> 0.3'
gem.add_development_dependency "simplecov"
gem.add_development_dependency "rspec"
gem.add_development_dependency "guard"
gem.add_development_dependency "guard-rspec"
gem.add_development_dependency "guard-cucumber"
gem.add_development_dependency "rake"
gem.add_development_dependency "rdoc"
gem.add_development_dependency "cucumber"
gem.add_development_dependency "database_cleaner"
# gem.add_development_dependency "remarkable_activerecord"
end