1234567891011121314151617181920212223242526272829303132333435 |
- # 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 = "huacnlee@gmail.com"
- 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 "rails", ">= 5.0.0"
- s.add_development_dependency "pg"
- s.add_development_dependency "minitest"
- s.add_development_dependency "rubocop"
- s.add_development_dependency "sqlite3"
- end
|