-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvoting.gemspec
31 lines (25 loc) · 1.16 KB
/
voting.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'voting/version'
Gem::Specification.new do |spec|
spec.author = 'Washington Botelho'
spec.description = 'A Binomial proportion confidence interval voting system with scope and cache enabled.'
spec.files = Dir['lib/**/*'] + %w[CHANGELOG.md LICENSE README.md]
spec.homepage = 'https://github.com/wbotelhos/voting'
spec.license = 'MIT'
spec.name = 'voting'
spec.platform = Gem::Platform::RUBY
spec.summary = 'A Binomial proportion confidence interval voting system with scope and cache enabled.'
spec.test_files = Dir['spec/**/*']
spec.version = Voting::VERSION
spec.add_dependency 'activerecord'
spec.add_development_dependency 'database_cleaner'
spec.add_development_dependency 'factory_bot_rails'
spec.add_development_dependency 'pry-byebug'
spec.add_development_dependency 'rspec-rails'
spec.add_development_dependency 'rubocop-rspec'
spec.add_development_dependency 'shoulda-matchers'
spec.add_development_dependency 'sqlite3'
end