-
Notifications
You must be signed in to change notification settings - Fork 5
/
locomotivecms_common.gemspec
29 lines (23 loc) · 1.24 KB
/
locomotivecms_common.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
# frozen_string_literal: true
require_relative 'lib/locomotive/common/version'
Gem::Specification.new do |spec|
spec.name = 'locomotivecms_common'
spec.version = Locomotive::Common::VERSION
spec.authors = ['Didier Lafforgue', 'Arnaud Sellenet', 'Joel Azemar']
spec.description = 'The LocomotiveCMS Common is a shared libraries package'
spec.summary = 'The LocomotiveCMS Common is a shared libraries package for all LocomotiveCMS dependencies'
spec.homepage = 'http://www.locomotivecms.com'
spec.homepage = 'https://github.com/locomotivecms/common'
spec.license = 'MIT'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'rake', '~> 13.0.1'
spec.add_dependency 'activesupport', '>= 5'
spec.add_dependency 'attr_extras', '~> 7.1.0'
spec.add_dependency 'colorize'
spec.add_dependency 'stringex', '~> 2.8.5'
spec.required_ruby_version = ['>= 3.0']
end