Sha256: 5cc7230dc329dd6938ae608217dde5a856b881cd91fe36a5e015a0fceee35a1e

Contents?: true

Size: 1.46 KB

Versions: 1

Compression:

Stored size: 1.46 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'nugrant/version'

Gem::Specification.new do |gem|
  gem.name          = "nugrant"
  gem.version       = Nugrant::VERSION
  gem.authors       = ["Matthieu Vachon"]
  gem.email         = ["matthieu.o.vachon@gmail.com"]
  gem.homepage      = "https://github.com/maoueh/nugrant"
  gem.summary       = "Library to handle user specific parameters from various location."
  gem.description   = <<-EOF
     Nugrant is a library to easily handle parameters that need to be
     injected into an application via different sources (system, user,
     project, defaults).

     Nugrant can also be directly used as a Vagrant plugin. By activating
     this gem with Vagrant, it will be possible to define user specific
     parameters that will be injected directly into the Vagrantfile. This
     is useful if you need to share a Vagrantfile to multiple developers
     but would like to customize some parameters for each user differently.
  EOF

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.requirements << "json if you plan to use json parameters format"

  gem.add_dependency 'multi_json', '~> 1.7'

  gem.add_development_dependency "rake"
  gem.add_development_dependency "json"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nugrant-2.0.0.dev2 nugrant.gemspec