sinatra-chassis 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ namespace :assets do
|
|
7
7
|
end
|
8
8
|
Dir.glob("./public/**/*.coffee").each do |asset|
|
9
9
|
File.open(asset.gsub('.coffee', '.js'), 'w') do |f|
|
10
|
-
f.write(JSMin.minify(CoffeeScript.compile(File.read(asset))).strip)
|
10
|
+
f.write(JSMin.minify(CoffeeScript.compile(File.read(asset), bare: Tilt::CoffeeScriptTemplate.default_bare)).strip)
|
11
11
|
end
|
12
12
|
end
|
13
13
|
Dir.glob("./public/**/*.scss").each do |asset|
|
@@ -4,5 +4,5 @@ gem 'coffee-script', '>= 2.2.0'
|
|
4
4
|
gem 'jsmin', '>= 1.0.1'
|
5
5
|
gem 'sass', '>= 3.2.9'
|
6
6
|
gem 'sinatra', '>= 1.4.2'
|
7
|
-
gem 'sinatra-chassis', '>= 1.0.
|
7
|
+
gem 'sinatra-chassis', '>= 1.0.5', require: 'sinatra/chassis'
|
8
8
|
gem 'sinatra-contrib', '>= 1.4.0', require: 'sinatra/contrib'
|
data/sinatra-chassis.gemspec
CHANGED
@@ -4,7 +4,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
|
6
6
|
s.name = 'sinatra-chassis'
|
7
|
-
s.version = '1.0.
|
7
|
+
s.version = '1.0.5'
|
8
8
|
s.author = 'Jarrod Taylor'
|
9
9
|
s.email = 'jarrodtaylor@icloud.com'
|
10
10
|
s.homepage = 'http://jarrodtaylor.github.io/sinatra-chassis'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-chassis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-06-
|
12
|
+
date: 2013-06-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: coffee-script
|