forked from AlexWayfer/gorilla_patch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgorilla-patch.gemspec
More file actions
28 lines (23 loc) · 940 Bytes
/
gorilla-patch.gemspec
File metadata and controls
28 lines (23 loc) · 940 Bytes
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
# frozen_string_literal: true
require 'date'
Gem::Specification.new do |s|
s.name = 'gorilla-patch'
s.version = '2.9.0'
s.date = Date.today.to_s
s.summary = 'Refining core classes'
s.description = 'Refine Ruby Core classes with methods like Active Support.'
s.authors = ['Alexander Popov']
s.email = 'alex.wayfer@gmail.com'
s.files = Dir[File.join('lib', '**', '{*,.*}')]
s.homepage = 'https://github.com/AlexWayfer/gorilla-patch'
s.license = 'MIT'
s.required_ruby_version = '>= 2.1.0'
s.add_development_dependency 'codecov', '~> 0'
s.add_development_dependency 'rake', '~> 12'
s.add_development_dependency 'rspec', '~> 3'
s.add_development_dependency 'rubocop', '~> 0.52'
s.add_development_dependency 'simplecov', '~> 0'
## For Inflections testing
s.add_development_dependency 'inflecto-refinements', '~> 0'
s.add_development_dependency 'sequel', '~> 5'
end