Sha256: ace10b29c80c8809bec504e52ccf5056d4abafaf5f990aed8811c1f65eb8036a

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

Contents

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

Gem::Specification.new do |gem|
  gem.name          = "pointrb"
  gem.version       = PointRb::VERSION
  gem.authors       = ["Max Meyer"]
  gem.email         = ["dev@fedux.org"]
  gem.description   = %q{Initialize project diretory base on templates}
  gem.summary   = <<-EOF
  PointRb is a project initializer which helps you to create a directory structure
  for your project. It supports profiles so that you can use different layouts for 
  different projects: library, webapplication etc.
  EOF
  gem.homepage      = "https://www.github.com/max_meyer/pointrb"

  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.add_runtime_dependency 'active_support'
  gem.add_runtime_dependency 'middleware'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pointrb-0.0.1 pointrb.gemspec