neorails-view_fu 0.4.20080711 → 0.6
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/lib/javascripter/helper.rb +1 -0
- data/lib/styler/helper.rb +3 -3
- data/view_fu.gemspec +3 -3
- metadata +2 -3
data/lib/javascripter/helper.rb
CHANGED
data/lib/styler/helper.rb
CHANGED
|
@@ -5,12 +5,12 @@ module Styler
|
|
|
5
5
|
input = [input].flatten
|
|
6
6
|
stylesheet_link_tag(*input)
|
|
7
7
|
end
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
# override this in your application_helper to clean it up
|
|
10
10
|
def stylesheets(options = {})
|
|
11
|
-
[stylesheet(:
|
|
11
|
+
[stylesheet(:all), page_stylesheets(options)].join("\n")
|
|
12
12
|
end
|
|
13
|
-
|
|
13
|
+
|
|
14
14
|
# returns an entire directory of stylesheets recursively
|
|
15
15
|
def stylesheet_folder(path)
|
|
16
16
|
if use_cache? # or browser_is? :ie
|
data/view_fu.gemspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'view_fu'
|
|
3
|
-
s.version = '0.
|
|
4
|
-
s.date = '2008-
|
|
3
|
+
s.version = '0.6'
|
|
4
|
+
s.date = '2008-08-9'
|
|
5
5
|
|
|
6
6
|
s.summary = "Lots of handy Rails View helpers. Includes the functionality of Headliner, Styler, and Javascripter"
|
|
7
7
|
s.description = "ViewFu is a Rails plugin that provides all the miscellaneous View tasks. It's a combination of the functionality of Styler, Javascripter, and Headline (from Patrick Crowley, the.railsi.st) - along with additional tweaks such as providing commonly used View Helpers Methods."
|
|
8
8
|
|
|
9
|
-
s.authors = ['Tyler Crocker'
|
|
9
|
+
s.authors = ['Tyler Crocker']
|
|
10
10
|
s.email = 'neorails@gmail.com'
|
|
11
11
|
s.homepage = 'http://github.com/neorails/view_fu'
|
|
12
12
|
|
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neorails-view_fu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: "0.6"
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tyler Crocker
|
|
8
|
-
- Patrick Crowley
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
11
|
|
|
13
|
-
date: 2008-
|
|
12
|
+
date: 2008-08-09 00:00:00 -07:00
|
|
14
13
|
default_executable:
|
|
15
14
|
dependencies:
|
|
16
15
|
- !ruby/object:Gem::Dependency
|