-
Notifications
You must be signed in to change notification settings - Fork 202
/
rails-settings-cached.gemspec
36 lines (29 loc) · 1.31 KB
/
rails-settings-cached.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
34
35
36
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "rails-settings/version"
Gem::Specification.new do |s|
s.name = "rails-settings-cached"
s.version = RailsSettings.version
s.authors = ["Jason Lee"]
s.email = "[email protected]"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.homepage = "https://github.com/huacnlee/rails-settings-cached"
s.require_paths = ["lib"]
s.license = "MIT"
s.required_ruby_version = ">= 2.5"
s.summary = "The best solution for store global settings in Rails applications."
s.description = "
The best solution for store global settings in Rails applications.
This gem will managing a table of а global key, value pairs easy. Think of it like a
global Hash stored in your database, that uses simple ActiveRecord like methods for manipulation.
Keep track of any global setting that you dont want to hard code into your rails app.
You can store any kind of object. Strings, numbers, arrays, or any object.
"
s.add_dependency "railties", ">= 5.0.0"
s.add_dependency "activerecord", ">= 5.0.0"
s.add_development_dependency "pg"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "rubocop"
s.add_development_dependency "sqlite3"
end