genki-merb_dynamic_sass 0.0.3 → 0.0.3.1
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.
- data/Rakefile +1 -1
- data/lib/merb_dynamic_sass.rb +4 -12
- metadata +2 -1
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ AUTHOR = "Yukiko Kawamoto"
|
|
9
9
|
EMAIL = "yu0420@gmail.com"
|
10
10
|
HOMEPAGE = "http://github.com/yukiko"
|
11
11
|
SUMMARY = "Merb Dynamic Sass is a Merb Slice that provides more handy way to use Sass engine."
|
12
|
-
GEM_VERSION = "0.0.3"
|
12
|
+
GEM_VERSION = "0.0.3.1"
|
13
13
|
|
14
14
|
spec = Gem::Specification.new do |s|
|
15
15
|
s.rubyforge_project = 'merb'
|
data/lib/merb_dynamic_sass.rb
CHANGED
@@ -7,7 +7,7 @@ if defined?(Merb::Plugins)
|
|
7
7
|
|
8
8
|
# Register the Slice for the current host application
|
9
9
|
# * This slice is not intended to be used in production environment
|
10
|
-
Merb::Slices::register(__FILE__) unless Merb.environment == "production"
|
10
|
+
Merb::Slices::register(__FILE__)# unless Merb.environment == "production"
|
11
11
|
|
12
12
|
# Slice configuration - set this in a before_app_loads callback.
|
13
13
|
# By default a Slice uses its own layout, so you can swicht to
|
@@ -22,17 +22,9 @@ if defined?(Merb::Plugins)
|
|
22
22
|
module MerbDynamicSass
|
23
23
|
|
24
24
|
# Slice metadata
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
def self.version
|
30
|
-
"0.0.1"
|
31
|
-
end
|
32
|
-
|
33
|
-
def self.author
|
34
|
-
"Yukiko Kawamoto"
|
35
|
-
end
|
25
|
+
self.description = "MerbDynamicSass is a slice to provide more handy way to use Sass engine."
|
26
|
+
self.version = "0.0.1"
|
27
|
+
self.author = "Yukiko Kawamoto"
|
36
28
|
|
37
29
|
# Stub classes loaded hook - runs before LoadClasses BootLoader
|
38
30
|
# right after a slice's classes have been loaded internally.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: genki-merb_dynamic_sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.3
|
4
|
+
version: 0.0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yukiko Kawamoto
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- app/views
|
65
65
|
- app/views/layout
|
66
66
|
- app/views/layout/merb_dynamic_sass.html.erb
|
67
|
+
- app/views/stylesheets
|
67
68
|
- public/javascripts
|
68
69
|
- public/javascripts/master.js
|
69
70
|
- public/stylesheets
|