-
Notifications
You must be signed in to change notification settings - Fork 33
/
modis.gemspec
44 lines (38 loc) · 1.55 KB
/
modis.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'modis/version'
Gem::Specification.new do |gem|
gem.name = "modis"
gem.version = Modis::VERSION
gem.authors = ["Ian Leitch"]
gem.email = ["port001@gmail.com"]
gem.description = "ActiveModel + Redis"
gem.summary = "ActiveModel + Redis"
gem.homepage = "https://github.com/rpush/modis"
gem.license = "MIT"
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.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.3.0"
gem.add_runtime_dependency 'activemodel', '>= 5.2'
gem.add_runtime_dependency 'activesupport', '>= 5.2'
gem.add_runtime_dependency 'redis', '>= 3.0'
gem.add_runtime_dependency 'connection_pool', '>= 2'
if defined? JRUBY_VERSION
gem.platform = 'java'
gem.add_runtime_dependency 'msgpack-jruby'
else
gem.add_runtime_dependency 'msgpack', '>= 0.5'
end
gem.add_development_dependency "appraisal"
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'codeclimate-test-reporter'
gem.add_development_dependency 'cane'
gem.add_development_dependency 'rubocop', '0.81.0'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'hiredis', '>= 0.5'
gem.add_development_dependency 'github_changelog_generator'
end