Sha256: 4531783f0be995c8ee4acf597883afc36e0399b08b7c608fda76a67a28488de7
Contents?: true
Size: 959 Bytes
Versions: 1
Compression:
Stored size: 959 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'objectify_config/version' Gem::Specification.new do |spec| spec.name = "objectify_config" spec.version = ObjectifyConfig::VERSION spec.authors = ["Rajeev N B"] spec.email = ["rajeevrvis@gmail.com"] if spec.respond_to?(:metadata) end spec.summary = "Objectify your yml configuration files with support for arbitrary level of nesting" spec.homepage = "https://github.com/rShetty/objectify_config" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.8" spec.add_development_dependency "rake", "~> 10.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
objectify_config-0.1.0 | objectify_config.gemspec |