Sha256: 803ecc79f67c1e92f53e39599d884b6048825e616ee6c2c0e2891495a84ee392

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'figly/version'

Gem::Specification.new do |spec|
  spec.name          = "figly"
  spec.version       = Figly::VERSION
  spec.authors       = ["Ryan Canty"]
  spec.email         = ["jrcanty@gmail.com"]
  spec.summary       = %q{A tiny gem that allows you to access config settings from YAML, TOML, or JSON}
  spec.description   = %q{If you ever wanted to access a config Hash using the dot operator, this is the gem for you.}
  spec.homepage      = ""
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(spec)/})
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "toml"
  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "rspec"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
figly-1.1.0 figly.gemspec
figly-1.0.4 figly.gemspec
figly-1.0.3 figly.gemspec
figly-1.0.2 figly.gemspec
figly-1.0.1 figly.gemspec