-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathconfigurable_engine.gemspec
More file actions
28 lines (22 loc) · 1.09 KB
/
configurable_engine.gemspec
File metadata and controls
28 lines (22 loc) · 1.09 KB
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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'configurable_engine/version'
Gem::Specification.new do |spec|
spec.name = 'configurable_engine'
spec.version = ConfigurableEngine::VERSION
spec.authors = ['Paul Campbell', 'Michael Glass']
spec.description = 'Configurable is a Rails 4 engine that allows you to set up config variables in a config file, specifying default values for all environmentspec. These variables can then be set on a per-app basis using a user facing configuration screen. '
spec.email = '[email protected]'
spec.extra_rdoc_files = [
'LICENSE.txt',
'README.md'
]
spec.files = Dir['*.txt', '*.md', 'lib/**/*', 'app/**/*', 'config/**/*'] - ['config/cucumber.yml']
spec.homepage = 'http://github.com/paulca/configurable_engine'
spec.licenses = ['MIT']
spec.require_paths = ['lib']
spec.summary = 'Database-backed configuration for Rails 7, with defaults from config file.'
spec.add_dependency 'rails', '>=7.0.0', '<8.0.0'
spec.metadata['rubygems_mfa_required'] = 'true'
end