forked from beamwastaken/golf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgolf.gemspec
30 lines (26 loc) · 1.03 KB
/
golf.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- 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 = ["[email protected]"]
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.add_dependency('json')
s.add_dependency('rack')
s.add_dependency('hpricot')
s.add_dependency('haml')
s.add_dependency('compass')
s.bindir = 'bin'
s.executables = ['golf']
s.rubyforge_project = "golf"
s.files = `git ls-files`.split("\n").select { |x| !x.include?('golf-java') }
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