-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
refinerycms.gemspec
33 lines (27 loc) · 1.35 KB
/
refinerycms.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
# frozen_string_literal: true
require File.expand_path('core/lib/refinery/version', __dir__)
version = Refinery::Version.to_s
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'refinerycms'
s.version = version
s.description = "A CMS for Ruby on Rails, supporting Rails 6+. It's developer friendly and easy to extend."
s.summary = 'A CMS for Ruby on Rails, supporting Rails 6+'
s.email = '[email protected]'
s.homepage = 'https://www.refinerycms.com'
s.authors = ['Philip Arndt', 'David Jones', 'Uģis Ozols', 'Brice Sanchez']
s.license = 'MIT'
s.bindir = 'exe'
s.executables = %w[refinerycms]
s.require_paths = %w[lib]
s.files = `git ls-files -- lib/* templates/*`.split("\n")
s.add_dependency 'refinerycms-core', version
s.add_dependency 'refinerycms-images', version
s.add_dependency 'refinerycms-pages', version
s.add_dependency 'refinerycms-resources', version
s.required_ruby_version = Refinery::Version.required_ruby_version
s.cert_chain = [File.expand_path('certs/parndt.pem', __dir__)]
if $PROGRAM_NAME =~ /gem\z/ && ARGV.include?('build') && ARGV.include?(__FILE__)
s.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
end