Sha256: bc3da1a4f3dfc2d1c2ee47ac3beb6696dfc5e61915a9f089bbcf61a4e8c6903b

Contents?: true

Size: 870 Bytes

Versions: 1

Compression:

Stored size: 870 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "golf/version"

Gem::Specification.new do |s|
  s.name        = "golf"
  s.version     = Golf::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Micha Niskin, Alan Dipert, Julio Capote"]
  s.email       = ["michaniskin@gmail.com"]
  s.homepage    = "http://golf.github.com"
  s.summary     = %q{Component based front end JS Framework}
  s.description = %q{Golf lets you write your interface in terms of reusable, simple components.}
  s.add_dependency('thor')

  s.bindir = 'bin'
  s.executables = ['golf']
  s.rubyforge_project = "golf"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
golf-0.0.1 golf.gemspec