scaffold_logic 1.6.1 → 1.6.2
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/lib/scaffold_logic/form_helper.rb +1 -1
- data/scaffold_logic.gemspec +10 -10
- metadata +5 -5
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.6.
|
|
1
|
+
1.6.2
|
|
@@ -107,7 +107,7 @@ module ScaffoldLogic
|
|
|
107
107
|
def tag_for_label_with_inline_help( label_text, field_id, help_text )
|
|
108
108
|
_html = ""
|
|
109
109
|
_html << %{<label for="#{field_id}">#{label_text}}
|
|
110
|
-
_html << %{<img src="/images/icons/help_icon.png" onclick="$('#{field_id}_help').toggle();"
|
|
110
|
+
_html << %{<img alt="Help Icon" class="inline_icon" src="/images/icons/help_icon.png" onclick="$('#{field_id}_help').toggle();" />}
|
|
111
111
|
_html << %{</label>}
|
|
112
112
|
_html << %{<div class="inline_help" id="#{field_id}_help" style="display: none;">}
|
|
113
113
|
_html << %{<p>#{help_text}</p>}
|
data/scaffold_logic.gemspec
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "1.6.
|
|
7
|
+
s.name = "scaffold_logic"
|
|
8
|
+
s.version = "1.6.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = [
|
|
12
|
-
s.date =
|
|
13
|
-
s.description =
|
|
14
|
-
s.email =
|
|
11
|
+
s.authors = ["Corey Ehmke"]
|
|
12
|
+
s.date = "2011-09-14"
|
|
13
|
+
s.description = "Scaffold and UI generator for SEO Logic applications."
|
|
14
|
+
s.email = "corey@seologic.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README.rdoc"
|
|
17
17
|
]
|
|
@@ -137,10 +137,10 @@ Gem::Specification.new do |s|
|
|
|
137
137
|
"lib/scaffold_logic/tab_interface_helper.rb",
|
|
138
138
|
"scaffold_logic.gemspec"
|
|
139
139
|
]
|
|
140
|
-
s.homepage =
|
|
141
|
-
s.require_paths = [
|
|
142
|
-
s.rubygems_version =
|
|
143
|
-
s.summary =
|
|
140
|
+
s.homepage = "http://github.com/ivanoblomov/scaffold_logic"
|
|
141
|
+
s.require_paths = ["lib"]
|
|
142
|
+
s.rubygems_version = "1.8.10"
|
|
143
|
+
s.summary = "Scaffold and UI generator for SEO Logic applications."
|
|
144
144
|
|
|
145
145
|
if s.respond_to? :specification_version then
|
|
146
146
|
s.specification_version = 3
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scaffold_logic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 11
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 6
|
|
9
|
-
-
|
|
10
|
-
version: 1.6.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.6.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Corey Ehmke
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-09-14 00:00:00 Z
|
|
19
19
|
dependencies: []
|
|
20
20
|
|
|
21
21
|
description: Scaffold and UI generator for SEO Logic applications.
|
|
@@ -176,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
176
176
|
requirements: []
|
|
177
177
|
|
|
178
178
|
rubyforge_project:
|
|
179
|
-
rubygems_version: 1.8.
|
|
179
|
+
rubygems_version: 1.8.10
|
|
180
180
|
signing_key:
|
|
181
181
|
specification_version: 3
|
|
182
182
|
summary: Scaffold and UI generator for SEO Logic applications.
|