brighter_planet_layout 0.2.43 → 0.2.44
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/VERSION +1 -1
- data/app/views/layouts/brighter_planet.html.erb +2 -6
- data/brighter_planet_layout.gemspec +6 -3
- data/cdn/javascripts/prototype.rails-2.3.10.js +4320 -0
- data/cdn/javascripts/prototype.rails-3.0.3.js +6001 -0
- data/cdn/javascripts/rails.rails-3.0.3.js +175 -0
- data/lib/brighter_planet_layout.rb +4 -3
- metadata +8 -5
- /data/cdn/javascripts/{prototype.js → prototype.rails-3.0.1.js} +0 -0
- /data/cdn/javascripts/{rails.js → rails.rails-3.0.1.js} +0 -0
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.44
|
|
@@ -12,16 +12,12 @@
|
|
|
12
12
|
<% end %>
|
|
13
13
|
<!-- END brighter_planet_layout stylesheets -->
|
|
14
14
|
<!-- START brighter_planet_layout javascripts -->
|
|
15
|
-
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/prototype.js") %>
|
|
15
|
+
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/prototype.rails-#{Rails::VERSION::STRING}.js") %>
|
|
16
16
|
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/effects.js") %>
|
|
17
17
|
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/dragdrop.js") %>
|
|
18
18
|
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/controls.js") %>
|
|
19
19
|
<% if ::Rails::VERSION::MAJOR == 3 %>
|
|
20
|
-
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/rails.js") %>
|
|
21
|
-
<% end %>
|
|
22
|
-
<% if File.exist? File.join(::BrighterPlanetLayout.rails_root, 'public', 'javascripts', 'slider.js') %>
|
|
23
|
-
<!-- required by scriptaculous_slider -->
|
|
24
|
-
<%= javascript_include_tag "slider" %>
|
|
20
|
+
<%= javascript_include_tag brighter_planet_layout_cdn_url("/javascripts/rails.rails-#{Rails::VERSION::STRING}.js") %>
|
|
25
21
|
<% end %>
|
|
26
22
|
<% if File.exist? File.join(::BrighterPlanetLayout.rails_root, 'public', 'javascripts', 'application.js') %>
|
|
27
23
|
<%= javascript_include_tag "application" %>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{brighter_planet_layout}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.44"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Andy Rossmeissl", "Seamus Abshere"]
|
|
@@ -33,8 +33,11 @@ Gem::Specification.new do |s|
|
|
|
33
33
|
"cdn/javascripts/controls.js",
|
|
34
34
|
"cdn/javascripts/dragdrop.js",
|
|
35
35
|
"cdn/javascripts/effects.js",
|
|
36
|
-
"cdn/javascripts/prototype.js",
|
|
37
|
-
"cdn/javascripts/rails.js",
|
|
36
|
+
"cdn/javascripts/prototype.rails-2.3.10.js",
|
|
37
|
+
"cdn/javascripts/prototype.rails-3.0.1.js",
|
|
38
|
+
"cdn/javascripts/prototype.rails-3.0.3.js",
|
|
39
|
+
"cdn/javascripts/rails.rails-3.0.1.js",
|
|
40
|
+
"cdn/javascripts/rails.rails-3.0.3.js",
|
|
38
41
|
"cdn/stylesheets/brighter_planet.css",
|
|
39
42
|
"cdn/stylesheets/fonts/DejaVuSansMono-Oblique.eot",
|
|
40
43
|
"cdn/stylesheets/fonts/DejaVuSansMono-Oblique.ttf",
|