Sha256: 5ef63a00b2c75117e49ac86825fdeeb74135fc2505c6c98c29b40bb6871d5603
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
Gem::Specification.new do |spec| spec.name = "ultra_settings" spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip spec.authors = ["Brian Durand"] spec.email = ["bbdurand@gmail.com"] spec.summary = "Unified configuration for Rails applications that allows for configuration via environment variables, YAML files, and dynamic runtime setting." spec.homepage = "https://github.com/bdurand/ultra_settings" spec.license = "MIT" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. ignore_files = %w[ . Appraisals Gemfile Gemfile.lock Rakefile bin/ gemfiles/ spec/ ] spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } } end spec.require_paths = ["lib"] spec.required_ruby_version = ">= 2.5" spec.add_dependency "rails", ">= 5" spec.add_dependency "super_settings" spec.add_development_dependency "bundler" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ultra_settings-0.0.1.rc1 | ultra_settings.gemspec |