-
Notifications
You must be signed in to change notification settings - Fork 115
/
recommendable.gemspec
33 lines (26 loc) · 1.03 KB
/
recommendable.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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'recommendable/version'
Gem::Specification.new do |s|
s.name = 'recommendable'
s.version = Recommendable::VERSION
s.summary = 'A Like/Dislike recommendation engine for Ruby apps using Redis'
s.description = <<EOF
A Like/Dislike recommendation engine for Ruby apps using Redis.
EOF
s.license = 'MIT'
s.files = Dir['lib/**/*']
s.test_files = Dir['test/**/*']
s.has_rdoc = 'yard'
s.authors = ['David Celis']
s.email = %w[[email protected]]
s.homepage = 'https://github.com/davidcelis/recommendable'
s.add_dependency 'activesupport', '>= 3.0.0'
s.add_dependency 'redis', '>= 2.2.0'
s.add_dependency 'hooks', '>= 0.2.1'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest', '>= 5.0'
s.add_development_dependency 'minifacture'
s.add_development_dependency 'yard'
s.add_development_dependency 'rails', '>= 3.1.0'
s.add_development_dependency 'database_cleaner'
end