forked from bouchard/thumbs_up
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththumbs_up.gemspec
27 lines (21 loc) · 1.03 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
# -*- 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.required_rubygems_version = '>= 1.6.2'
s.homepage = "http://github.com/brady8/thumbs_up"
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 MIT-LICENSE README.md Rakefile)
s.require_paths = ["lib"]
s.add_runtime_dependency('activerecord')
s.add_development_dependency('simplecov')
s.add_development_dependency('bundler')
s.add_development_dependency('mysql2')
s.add_development_dependency('rake')
end