Sha256: c7f64cd7d7c7e172cb8f0e1bf11fa80922eb48de5e6155884ee6929523c94773

Contents?: true

Size: 1.04 KB

Versions: 2

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/maxmeyer/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

2 entries across 2 versions & 1 rubygems

Version Path
pointrb-0.1.2 pointrb.gemspec
pointrb-0.1.1 pointrb.gemspec