Sha256: bcd648a6808222cef4e180f83313fb0d5609d79f61a1efb51846c1c6ffcba328

Contents?: true

Size: 1.04 KB

Versions: 1

Compression:

Stored size: 1.04 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 directory 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 'activesupport'
  gem.add_runtime_dependency 'middleware'
  gem.add_runtime_dependency 'rubytree'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pointrb-0.1.0 pointrb.gemspec