forked from spastorino/coffee-rails
-
Notifications
You must be signed in to change notification settings - Fork 64
/
coffee-rails.gemspec
28 lines (24 loc) · 1.41 KB
/
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
26
27
28
$:.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 = ["santiago@wyeworks.com"]
s.homepage = "https://github.com/rails/coffee-rails"
s.summary = %q{CoffeeScript adapter for the Rails asset pipeline.}
s.description = %q{CoffeeScript adapter for the Rails asset pipeline.}
s.metadata = {
"bug_tracker_uri" => "https://github.com/rails/coffee-rails/issues",
"changelog_uri" => "https://github.com/rails/coffee-rails/blob/v#{s.version}/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/coffee-rails/#{s.version}",
"source_code_uri" => "https://github.com/rails/coffee-rails/tree/v#{s.version}",
}
s.add_runtime_dependency 'coffee-script', '>= 2.2.0'
s.add_runtime_dependency 'railties', '>= 5.2.0'
s.files = ["CHANGELOG.md","MIT-LICENSE","README.md","lib/assets/javascripts/coffee-script.js.erb","lib/coffee-rails.rb","lib/coffee/rails/engine.rb","lib/coffee/rails/js_hook.rb","lib/coffee/rails/template_handler.rb","lib/coffee/rails/version.rb","lib/rails/generators/coffee/assets/assets_generator.rb","lib/rails/generators/coffee/assets/templates/javascript.coffee"]
s.executables = []
s.require_paths = ["lib"]
s.license = "MIT"
end