forked from ckdake/setler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setler.gemspec
27 lines (22 loc) · 1.23 KB
/
setler.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "setler/version"
Gem::Specification.new do |s|
s.name = "setler"
s.version = Setler::VERSION
s.authors = ["Chris Kelly"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/ckdake/setler"
s.summary = %q{Settler lets you use the 'Feature Flags' pettern or add settings to models.}
s.description = %q{Setler is a Gem that lets one easily implement the "Feature Flags" pattern, or add settings to individual models. This is a cleanroom implementation of what the 'rails-settings' gem does. It's been forked all over the place, and my favorite version of it doesn't have any tests and doesn't work with settings associated with models.}
s.rubyforge_project = "setler"
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"]
s.add_dependency('activerecord', '>=3.0.0')
s.add_dependency('rails', '>=3.0.0')
s.add_development_dependency('sqlite3')
s.add_development_dependency('rake')
s.add_development_dependency('cover_me')
end