-
Notifications
You must be signed in to change notification settings - Fork 13
/
less-js-routes.gemspec
25 lines (23 loc) · 1.1 KB
/
less-js-routes.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/less-js-routes/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["stevenbristol"]
gem.email = ["stevenbristol@gmail.com"]
gem.description = "Named routes in your javascript"
gem.summary = "Named routes in your javascript!"
gem.homepage = "http://lesseverything.com"
#gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
#gem.files = Dir['lib/**/*.rb'] + Dir['lib/tasks/*']
gem.files = [
"lib/less-js-routes/config.rb",
"lib/less-js-routes/less-js-routes.rb",
"lib/less-js-routes/version.rb",
"lib/less-js-routes.rb",
"lib/less-js-routes/railtie.rb",
"lib/tasks/less_js_routes.tasks"
]
#gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "less-js-routes"
gem.require_paths = ["lib"]
gem.version = Less::Js::Routes::VERSION
end