-
Notifications
You must be signed in to change notification settings - Fork 83
/
active_utils.gemspec
32 lines (25 loc) · 1.05 KB
/
active_utils.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "active_utils/version"
Gem::Specification.new do |s|
s.name = "active_utils"
s.version = ActiveUtils::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Shopify"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/shopify/active_utils"
s.summary = %q{Common utils used by active_merchant, active_fulfillment, and active_shipping}
s.license = 'MIT'
s.required_ruby_version = ">= 2.7"
s.rubyforge_project = "active_utils"
s.add_dependency('activesupport', '>= 4.2')
s.add_dependency('i18n')
s.add_development_dependency('rake')
s.add_development_dependency('minitest')
s.add_development_dependency('mocha')
s.metadata['allowed_push_host'] = 'https://rubygems.org'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end