Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
carnival / carnival.gemspec
Size: Mime:
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'carnival/version'

Gem::Specification.new do |gem|
  gem.name          = "carnival"
  gem.version       = Carnival::VERSION
  gem.authors       = ["Adam Keys"]
  gem.email         = ["akeys@xogrp.com"]
  gem.description   = %q{Random item and Heroku-ish name generator.}
  gem.summary       = %q{Carnival is a random item and Heroku-ish name generator.}
  gem.homepage      = "https://git.xogrp.com/Shared/carnival"

  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"]
end