forked from pilotcreative/vote_fu
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy paththumbs_up.gemspec
31 lines (25 loc) · 1.19 KB
/
thumbs_up.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'thumbs_up/version'
Gem::Specification.new do |s|
s.name = 'thumbs_up'
s.version = ThumbsUp::VERSION
s.homepage = 'https://github.com/bouchard/thumbs_up'
s.license = 'MIT'
s.summary = 'Voting for ActiveRecord with multiple vote sources and karma calculation.'
s.description = 'ThumbsUp provides dead-simple voting capabilities to ActiveRecord models with karma calculation, a la stackoverflow.com.'
s.authors = ['Brady Bouchard', 'Peter Jackson', 'Cosmin Radoi', 'Bence Nagy', 'Rob Maddox', 'Wojciech Wnetrzak']
s.email = ['[email protected]']
s.files = Dir.glob('{lib,rails,test}/**/*') + %w(CHANGELOG.md Gemfile LICENSE README.md Rakefile)
s.require_paths = ['lib']
s.add_runtime_dependency('activerecord', '> 4.2', '< 8')
s.add_runtime_dependency('statistics2')
s.add_development_dependency('minitest')
s.add_development_dependency('simplecov')
s.add_development_dependency('bundler')
s.add_development_dependency('mysql2', '> 0.3.20')
s.add_development_dependency('pg')
s.add_development_dependency('sqlite3')
s.add_development_dependency('rake')
end