-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulp_assets.gemspec
32 lines (27 loc) · 1.17 KB
/
gulp_assets.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
31
32
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "gulp_assets/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "gulp_assets"
s.version = GulpAssets::VERSION
s.authors = ["Jan Varwig"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/hitfox/gulp_assets/"
s.summary = "Integrate Gulp with Rails"
s.description = <<-EOF
Rails Plugin to augment frontend development with a gulp/webpack based
workflow.
- Installs Javascript infrastructure in your Rails project to manage
frontend assets
- Provides view helpers to Rails that allow you to easily reference
gulp generated assets from Rails views
- Puts Livereload into the Rails middleware stack. This injects the
Livereload client into Rails-renderd pages, updates are triggered from
gulp.
EOF
s.license = "MIT"
s.files = Dir["{lib,template}/**/{.,}*", "MIT-LICENSE", "README.md"].reject{|p| p.start_with?("template/node_modules")}
s.add_runtime_dependency 'rails', '>= 3.1.0'
s.add_runtime_dependency "rack-livereload", "~> 0.3.16"
end