muck-engine 0.2.25 → 0.2.26
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/README.rdoc +8 -0
- data/VERSION +1 -1
- data/app/views/layouts/global/_head.html.erb +2 -2
- data/muck-engine.gemspec +2 -2
- metadata +2 -2
data/README.rdoc
CHANGED
|
@@ -148,5 +148,13 @@ Here's an example taken from the muck project:
|
|
|
148
148
|
|
|
149
149
|
end
|
|
150
150
|
|
|
151
|
+
== Development Notes
|
|
152
|
+
es-CO.yml is missing a space on line 91:
|
|
153
|
+
|
|
154
|
+
record_invalid:"Falla de validación: {{errors}}"
|
|
155
|
+
|
|
156
|
+
should be:
|
|
157
|
+
record_invalid: "Falla de validación: {{errors}}"
|
|
158
|
+
|
|
151
159
|
|
|
152
160
|
Copyright (c) 2009 Tatemai, released under the MIT license
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.26
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
<% else -%>
|
|
13
13
|
<%= stylesheet_link_tag %W{ reset styles blueprint/screen.css }, :cache => true %>
|
|
14
14
|
<% end -%>
|
|
15
|
+
<%= google_load_jquery %>
|
|
16
|
+
<%= google_load_jquery_ui %>
|
|
15
17
|
<%= javascript_include_tag %w{
|
|
16
|
-
jquery/jquery.js
|
|
17
|
-
jquery/jquery-ui.js
|
|
18
18
|
jquery/jrails.js
|
|
19
19
|
jquery/jquery.jgrowl.js
|
|
20
20
|
jquery/jquery.tips.js
|
data/muck-engine.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{muck-engine}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.26"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Justin Ball", "Joel Duffin"]
|
|
12
|
-
s.date = %q{2010-01-
|
|
12
|
+
s.date = %q{2010-01-14}
|
|
13
13
|
s.description = %q{The base engine for the muck system. Contains common tables, custom for, css and javascript.}
|
|
14
14
|
s.email = %q{justin@tatemae.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: muck-engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Ball
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2010-01-
|
|
13
|
+
date: 2010-01-14 00:00:00 -07:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|