forked from paulca/configurable_engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configurable_engine.gemspec
29 lines (24 loc) · 1.3 KB
/
configurable_engine.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$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 3/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']
#re-enable test files when they're actually used. In the mean time, lets leave them out to reduce our gem size.
#spec.test_files = Dir['features/**/*', 'spec/**/*', 'gemfiles/**/*'] + %w{config/cucumber.yml .rspec tasks/cucumber.rake}
spec.homepage = "http://github.com/paulca/configurable_engine"
spec.licenses = ["MIT"]
spec.require_paths = ["lib"]
spec.rubygems_version = "2.0.3"
spec.summary = "Database-backed configuration for Rails 3, with defaults from config file."
spec.add_dependency "rails", ">3.1.0"
end