guilded 1.0.8 → 1.0.9
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/History.txt +7 -2
- data/VERSION +1 -1
- data/guilded.gemspec +2 -2
- data/lib/guilded.rb +1 -1
- data/rails_generators/guilded_config/templates/load_guilded_settings.rb +2 -2
- metadata +3 -3
data/History.txt
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
= 1.0.8 2010-04-
|
|
1
|
+
= 1.0.8 2010-04-16
|
|
2
2
|
|
|
3
|
-
*
|
|
3
|
+
* Updated the Rails Guilded initializer to get rid of deprecated RAILS_ROOT in favor of Rails.root.
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
= 1.0.8 2010-03-12
|
|
7
|
+
|
|
8
|
+
* Removed the human attribute override in favor of using the Rails I18n implementation.
|
|
4
9
|
|
|
5
10
|
|
|
6
11
|
= 1.0.7 2010-02-19
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.9
|
data/guilded.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{guilded}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.9"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["C. Jason Harrelson (midas)"]
|
|
12
|
-
s.date = %q{2010-04-
|
|
12
|
+
s.date = %q{2010-04-16}
|
|
13
13
|
s.description = %q{Guilded intends to provide a toolset for creating and consuming reusable web components. Currently, this problem domain is filled with JavaScript frameworks. These frameworks are wonderful and work very well. However, they do not degrade gracefully and are not accessible (in most cases). Guilded seeks to provide the same level of "componentization" and ease of use without sacrificing degradability and accessibility. Guilded will achieve these goals by applying each technology at our disposal (HTML, CSS and JavaScript) to do as it was intended.}
|
|
14
14
|
s.email = %q{jason@lookforwardenterprises.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/guilded.rb
CHANGED
|
@@ -72,7 +72,7 @@ require 'guilded/rails/inactive_record/human_attribute_hint'
|
|
|
72
72
|
# <%= g_load_alerter :skin => 'blueish', :id => 'load_alerter' %>
|
|
73
73
|
#
|
|
74
74
|
module Guilded
|
|
75
|
-
VERSION = '1.0.
|
|
75
|
+
VERSION = '1.0.9'
|
|
76
76
|
end
|
|
77
77
|
|
|
78
78
|
ActionView::Base.send( :include, Guilded::Rails::ViewHelpers ) if defined?( ActionView )
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# on this one in order to work in different environments.
|
|
3
3
|
#
|
|
4
4
|
GUILDED_CONFIG = {
|
|
5
|
-
:js_path => "#{
|
|
5
|
+
:js_path => "#{Rails.root}/public/javascripts/",
|
|
6
6
|
:js_folder => "", # from the js_path
|
|
7
7
|
:jquery_js => "jquery/jquery-1.3.2.min.js", # from the js_path
|
|
8
8
|
:mootools_js => "mootools/mootools-1.2.3.min.js", # from the js_path
|
|
9
|
-
:css_path => "#{
|
|
9
|
+
:css_path => "#{Rails.root}/public/stylesheets/",
|
|
10
10
|
:css_folder => "guilded/", # from the css_path
|
|
11
11
|
:reset_css => "reset-min.css", # from the css_path
|
|
12
12
|
:environment => Rails.env
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 1.0.
|
|
8
|
+
- 9
|
|
9
|
+
version: 1.0.9
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- C. Jason Harrelson (midas)
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-04-
|
|
17
|
+
date: 2010-04-16 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|