-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathcoffee-rails.gemspec
25 lines (21 loc) · 986 Bytes
/
coffee-rails.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
$:.push File.expand_path("../lib", __FILE__)
require "coffee/rails/version"
Gem::Specification.new do |s|
s.name = "coffee-rails"
s.version = Coffee::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Santiago Pastorino"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Coffee Script adapter for the Rails asset pipeline.}
s.description = %q{Coffee Script adapter for the Rails asset pipeline.}
s.rubyforge_project = "coffee-rails"
s.add_runtime_dependency 'coffee-script', '>= 2.2.0'
s.add_runtime_dependency 'railties', '~> 3.1.0.rc1'
s.add_runtime_dependency 'actionpack', '~> 3.1.0.rc1'
s.add_runtime_dependency 'sprockets', '>= 2.0.0.beta.9'
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