-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcore_ext.gemspec
33 lines (27 loc) · 1.25 KB
/
core_ext.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
$LOAD_PATH.unshift 'lib'
require "core_ext/version"
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "core_ext"
s.version = CoreExt::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "ActiveSupport's core_ext for non Rails projects"
s.description = "Utility classes and Ruby extensions for non Rails projects"
s.homepage = "http://github.com/rpanachi/core_ext"
s.email = ["[email protected]"]
s.authors = ["Rodrigo Panachi"]
s.license = "MIT"
s.required_ruby_version = '>= 2.2.2'
s.files = Dir['README.md', 'LICENSE', 'lib/**/*']
s.require_path = 'lib'
s.rdoc_options.concat ['--encoding', 'UTF-8']
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'minitest', '~> 5.9.0'
s.add_runtime_dependency 'bigdecimal', '~> 1.2.0'
s.add_runtime_dependency 'builder', '~> 3.2'
s.add_runtime_dependency 'i18n', '~> 0.7'
s.add_runtime_dependency 'json', '~> 1.7', '>= 1.7.7'
s.add_runtime_dependency 'tzinfo', '~> 1.1'
s.add_runtime_dependency 'concurrent-ruby', '~> 1.0'
s.add_runtime_dependency 'method_source', '~> 0.8'
end