refinerycms 0.9.7.9 → 0.9.7.10
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/Gemfile +1 -1
- data/changelog.md +7 -0
- data/db/schema.rb +16 -20
- data/features/step_definitions/refinery/core_steps.rb +1 -1
- data/test/fixtures/user_plugins.yml +1 -1
- data/themes/demolicious/views/layouts/application.html.erb +7 -1
- data/todo.md +6 -4
- data/vendor/plugins/dashboard/app/views/admin/dashboard/index.html.erb +1 -1
- data/vendor/plugins/images/app/models/image.rb +1 -1
- data/vendor/plugins/images/app/views/admin/images/_form.html.erb +1 -1
- data/vendor/plugins/images/app/views/admin/images/index.html.erb +1 -1
- data/vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb +8 -0
- data/vendor/plugins/inquiries/app/views/admin/inquiries/_submenu.html.erb +4 -4
- data/vendor/plugins/inquiries/app/views/admin/inquiries/index.html.erb +6 -2
- data/vendor/plugins/inquiries/app/views/admin/inquiries/show.html.erb +2 -1
- data/vendor/plugins/inquiries/app/views/admin/inquiries/spam.html.erb +6 -2
- data/vendor/plugins/inquiries/config/locales/da.yml +1 -1
- data/vendor/plugins/inquiries/config/locales/de.yml +1 -1
- data/vendor/plugins/inquiries/config/locales/en.yml +2 -0
- data/vendor/plugins/inquiries/config/locales/fr.yml +1 -1
- data/vendor/plugins/pages/app/views/admin/pages/index.html.erb +2 -4
- data/vendor/plugins/refinery/app/views/shared/_site_bar.html.erb +22 -12
- data/vendor/plugins/refinery/config/locales/de.yml +1 -0
- data/vendor/plugins/refinery/lib/refinery.rb +1 -1
- data/vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_form.html.erb +1 -1
- data/vendor/plugins/resources/app/models/resource.rb +1 -2
- data/vendor/plugins/resources/app/views/admin/resources/_form.html.erb +5 -3
- data/vendor/plugins/resources/app/views/admin/resources/_resource.html.erb +2 -1
- data/vendor/plugins/resources/app/views/admin/resources/index.html.erb +1 -1
- data/vendor/plugins/themes/readme.md +1 -1
- metadata +4 -9
data/Gemfile
CHANGED
@@ -45,7 +45,7 @@ end
|
|
45
45
|
|
46
46
|
#===REQUIRED FOR REFINERY GEM INSTALL===
|
47
47
|
# Leave the gem below disabled (commented out) if you're not using the gem install method.
|
48
|
-
# gem 'refinerycms', '= 0.9.7.
|
48
|
+
# gem 'refinerycms', '= 0.9.7.10'
|
49
49
|
#===END OF REFINERY GEM INSTALL REQUIREMENTS===
|
50
50
|
|
51
51
|
# Bundle gems for certain environments:
|
data/changelog.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## 0.9.7.10 [02 August 2010]
|
2
|
+
- Added options to site_bar partial to allow particular components to be disabled (CSS, JS, jQuery or cornering script) so that they don't interfere with these already being included in the theme. [Philip Arndt](http://github.com/parndt)
|
3
|
+
- Fixed the schema file as it was invalid somehow. [Steven Heidel](http://github.com/stevenheidel)
|
4
|
+
- Made search more consistent and added it to Spam/Ham. [Uģis Ozols](http://github.com/ugisozols)
|
5
|
+
- Fixed a bug with adding new resources. [Steven Heidel](http://github.com/stevenheidel)
|
6
|
+
- Fixed a range of issues with translation keys and grammar between different languages. [Uģis Ozols](http://github.com/ugisozols)
|
7
|
+
|
1
8
|
## 0.9.7.9 [30 July 2010]
|
2
9
|
|
3
10
|
- Added a theme generator to create the basic file structure of a new theme. [David Jones](http://github.com/djones) and [Levi Cole](http://github.com/levicole)
|
data/db/schema.rb
CHANGED
@@ -9,20 +9,23 @@
|
|
9
9
|
#
|
10
10
|
# It's strongly recommended to check this file into your version control system.
|
11
11
|
|
12
|
-
ActiveRecord::Schema.define(:version =>
|
12
|
+
ActiveRecord::Schema.define(:version => 20100729221735) do
|
13
13
|
|
14
14
|
create_table "images", :force => true do |t|
|
15
|
-
t.
|
16
|
-
t.string "
|
17
|
-
t.
|
18
|
-
t.
|
19
|
-
t.integer "
|
15
|
+
t.integer "parent_id"
|
16
|
+
t.string "content_type"
|
17
|
+
t.string "filename"
|
18
|
+
t.string "thumbnail"
|
19
|
+
t.integer "size"
|
20
|
+
t.integer "width"
|
21
|
+
t.integer "height"
|
22
|
+
t.string "image_type"
|
20
23
|
t.datetime "created_at"
|
21
24
|
t.datetime "updated_at"
|
22
|
-
t.string "image_uid", :null => false
|
23
|
-
t.string "image_ext"
|
24
25
|
end
|
25
26
|
|
27
|
+
add_index "images", ["parent_id"], :name => "index_images_on_parent_id"
|
28
|
+
|
26
29
|
create_table "inquiries", :force => true do |t|
|
27
30
|
t.string "name"
|
28
31
|
t.string "email"
|
@@ -55,12 +58,6 @@ ActiveRecord::Schema.define(:version => 20100708014636) do
|
|
55
58
|
add_index "page_parts", ["id"], :name => "index_page_parts_on_id"
|
56
59
|
add_index "page_parts", ["page_id"], :name => "index_page_parts_on_page_id"
|
57
60
|
|
58
|
-
create_table "page_translations", :force => true do |t|
|
59
|
-
t.integer "page_id"
|
60
|
-
t.string "custom_title"
|
61
|
-
t.string "meta_keywords"
|
62
|
-
end
|
63
|
-
|
64
61
|
create_table "pages", :force => true do |t|
|
65
62
|
t.string "title"
|
66
63
|
t.integer "parent_id"
|
@@ -98,13 +95,12 @@ ActiveRecord::Schema.define(:version => 20100708014636) do
|
|
98
95
|
add_index "refinery_settings", ["name"], :name => "index_refinery_settings_on_name"
|
99
96
|
|
100
97
|
create_table "resources", :force => true do |t|
|
101
|
-
t.string "
|
102
|
-
t.string "
|
103
|
-
t.integer "
|
98
|
+
t.string "content_type"
|
99
|
+
t.string "filename"
|
100
|
+
t.integer "size"
|
101
|
+
t.integer "parent_id"
|
104
102
|
t.datetime "created_at"
|
105
103
|
t.datetime "updated_at"
|
106
|
-
t.string "file_uid", :null => false
|
107
|
-
t.string "file_ext"
|
108
104
|
end
|
109
105
|
|
110
106
|
create_table "roles", :force => true do |t|
|
@@ -134,7 +130,7 @@ ActiveRecord::Schema.define(:version => 20100708014636) do
|
|
134
130
|
t.integer "position"
|
135
131
|
end
|
136
132
|
|
137
|
-
add_index "user_plugins", ["name"], :name => "
|
133
|
+
add_index "user_plugins", ["name"], :name => "index_user_plugins_on_name"
|
138
134
|
add_index "user_plugins", ["user_id", "name"], :name => "index_unique_user_plugins", :unique => true
|
139
135
|
|
140
136
|
create_table "users", :force => true do |t|
|
@@ -2,7 +2,13 @@
|
|
2
2
|
<html>
|
3
3
|
<%= render :partial => "/shared/head", :locals => {:theme => true} %>
|
4
4
|
<body>
|
5
|
-
<%= render :partial => "/shared/site_bar"
|
5
|
+
<%= render :partial => "/shared/site_bar",
|
6
|
+
:locals => {
|
7
|
+
:exclude_css => false,
|
8
|
+
:exclude_cornering_library => false,
|
9
|
+
:exclude_site_bar_javascript => false,
|
10
|
+
:exclude_jquery => false
|
11
|
+
} %>
|
6
12
|
<div id='page_container'>
|
7
13
|
<div id='page'>
|
8
14
|
<%= render :partial => "/shared/ie6check" if request.env['HTTP_USER_AGENT'] =~ /MSIE/ -%>
|
data/todo.md
CHANGED
@@ -3,10 +3,9 @@
|
|
3
3
|
## Solid Test Coverage
|
4
4
|
|
5
5
|
* Add Cucumber for the whole of Refinery. (top priority)
|
6
|
-
* Add
|
7
|
-
|
8
|
-
|
9
|
-
* Add RSpec for the whole of Refinery.
|
6
|
+
* Add RSpec for the whole of Refinery, particularly:
|
7
|
+
- User, User plugin and User mailer
|
8
|
+
- Inquiry mailer and Inquiry setting
|
10
9
|
|
11
10
|
## Rails 3.0 Support
|
12
11
|
|
@@ -17,6 +16,9 @@ Join the IRC channel on freenode.net #refinerycms on August 7th to contribute!
|
|
17
16
|
## I18n support
|
18
17
|
|
19
18
|
* Check all the views for missing translations
|
19
|
+
- You can run a rake task with your locale e.g for Slovenian:
|
20
|
+
``rake translate:lost_in_translation LOCALE=sl``
|
21
|
+
|
20
22
|
* Translate models and model attributes used in forms (Rails 2.3.8 supports translation form labels!)
|
21
23
|
* Javascript messages etc:
|
22
24
|
- http://github.com/fnando/i18n-js
|
@@ -18,7 +18,7 @@
|
|
18
18
|
:class => "edit_icon" %>
|
19
19
|
</li>
|
20
20
|
<% end %>
|
21
|
-
<% if Refinery::Plugins.active.names.include?("
|
21
|
+
<% if Refinery::Plugins.active.names.include?("refinery_files") %>
|
22
22
|
<li>
|
23
23
|
<%= link_to t('.upload_a_file'),
|
24
24
|
new_admin_resource_url(:dialog => true,
|
@@ -24,7 +24,7 @@ class Image < ActiveRecord::Base
|
|
24
24
|
|
25
25
|
unless enum.nil? || enum.include?(send(attr_name))
|
26
26
|
errors.add_to_base(I18n.translate('file_should_be_smaller_than_max_image_size',
|
27
|
-
:max_image_size => ActionController::Base.helpers.number_to_human_size(MAX_SIZE_IN_MB) ))
|
27
|
+
:max_image_size => ActionController::Base.helpers.number_to_human_size(MAX_SIZE_IN_MB.megabytes) ))
|
28
28
|
errors.add_to_base(I18n.translate('file_must_be_these_formats')) if attr_name == :content_type
|
29
29
|
end
|
30
30
|
end
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<div class='field'>
|
9
9
|
<% if action_name =~ /(edit)|(update)/ %>
|
10
10
|
<%= t('.use_current_image') %>
|
11
|
-
<em><%= t('.or') %></em
|
11
|
+
<em><%= t('.or') %></em><%= t('.replace_image') %>
|
12
12
|
<% end %>
|
13
13
|
<%= f.file_field :uploaded_data %>
|
14
14
|
</div>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
</div>
|
22
22
|
<div id='records'>
|
23
23
|
<% if searching? %>
|
24
|
-
<h2><%= t('admin.search_results_for', :query => params[:search]) %></h2>
|
24
|
+
<h2><%= t('admin.search_results_for', :query => h(params[:search])) %></h2>
|
25
25
|
<% if @images.any? %>
|
26
26
|
<%= render :partial => "#{current_image_view}_view" %>
|
27
27
|
<% else %>
|
@@ -5,10 +5,18 @@ class Admin::InquiriesController < Admin::BaseController
|
|
5
5
|
before_filter :get_spam_count, :only => [:index, :spam]
|
6
6
|
|
7
7
|
def index
|
8
|
+
if searching?
|
9
|
+
@inquiries = Inquiry.ham.find_with_index params[:search]
|
10
|
+
end
|
11
|
+
|
8
12
|
@grouped_inquiries = group_by_date(Inquiry.ham)
|
9
13
|
end
|
10
14
|
|
11
15
|
def spam
|
16
|
+
if searching?
|
17
|
+
@inquiries = Inquiry.spam.find_with_index params[:search]
|
18
|
+
end
|
19
|
+
|
12
20
|
@grouped_inquiries = group_by_date(Inquiry.spam)
|
13
21
|
end
|
14
22
|
|
@@ -1,16 +1,16 @@
|
|
1
1
|
<div id='actions'>
|
2
2
|
<ul>
|
3
3
|
<li>
|
4
|
-
<%= render :partial => "/shared/admin/search", :locals => {:url =>
|
4
|
+
<%= render :partial => "/shared/admin/search", :locals => {:url => request.path} %>
|
5
5
|
</li>
|
6
6
|
<li <%= "class='selected'" if params[:action] == "index" %>>
|
7
|
-
<%= link_to
|
7
|
+
<%= link_to t('.inbox'), admin_inquiries_url, :class => "email_icon" %>
|
8
8
|
</li>
|
9
9
|
<li <%= "class='selected'" if params[:action] == "spam" %>>
|
10
10
|
<% if @spam_count > 0 %>
|
11
|
-
<%= link_to "
|
11
|
+
<%= link_to "#{t('.spam')} (#{@spam_count})", spam_admin_inquiries_url, :class => "spam_icon" %>
|
12
12
|
<% else %>
|
13
|
-
<%= link_to
|
13
|
+
<%= link_to t('.spam'), spam_admin_inquiries_url, :class => "spam_empty_icon" %>
|
14
14
|
<% end %>
|
15
15
|
</li>
|
16
16
|
<li>
|
@@ -1,8 +1,12 @@
|
|
1
1
|
<%= render :partial => "submenu" %>
|
2
2
|
<div id='records'>
|
3
3
|
<% if searching? %>
|
4
|
-
<h2><%= t('admin.search_results_for', :query => params[:search]) %></h2>
|
5
|
-
|
4
|
+
<h2><%= t('admin.search_results_for', :query => h(params[:search])) %></h2>
|
5
|
+
<% if @inquiries.any? %>
|
6
|
+
<%= render :partial => "inquiry", :collection => @inquiries %>
|
7
|
+
<% else %>
|
8
|
+
<p><%= t('admin.search_no_results') %></p>
|
9
|
+
<% end %>
|
6
10
|
<% else %>
|
7
11
|
<% if @grouped_inquiries.any? -%>
|
8
12
|
<% @grouped_inquiries.each do |container| %>
|
@@ -15,7 +15,8 @@
|
|
15
15
|
</li>
|
16
16
|
<li>
|
17
17
|
<%= link_to t('.title'), admin_inquiry_url(@inquiry), :class => 'delete_icon no-tooltip confirm-delete',
|
18
|
-
|
18
|
+
:title => t('.title'),
|
19
|
+
:'data-confirm' => t('admin.inquiries.inquiry.remove_inquiry', :name => @inquiry.name) %>
|
19
20
|
</li>
|
20
21
|
</ul>
|
21
22
|
</div>
|
@@ -1,8 +1,12 @@
|
|
1
1
|
<%= render :partial => "submenu" %>
|
2
2
|
<div id='records'>
|
3
3
|
<% if searching? %>
|
4
|
-
<h2><%= t('admin.search_results_for', :query => params[:search]) %></h2>
|
5
|
-
|
4
|
+
<h2><%= t('admin.search_results_for', :query => h(params[:search])) %></h2>
|
5
|
+
<% if @inquiries.any? %>
|
6
|
+
<%= render :partial => "inquiry", :collection => @inquiries %>
|
7
|
+
<% else %>
|
8
|
+
<p><%= t('admin.search_no_results') %></p>
|
9
|
+
<% end %>
|
6
10
|
<% else %>
|
7
11
|
<% if @grouped_inquiries.any? -%>
|
8
12
|
<% @grouped_inquiries.each do |container| %>
|
@@ -46,7 +46,7 @@ de:
|
|
46
46
|
actions: Aktionen
|
47
47
|
back_to_all_inquiries: Zurück zu allen Kontaktanfragen
|
48
48
|
inquiry: Kontaktanfrage
|
49
|
-
submenu:
|
49
|
+
submenu:
|
50
50
|
update_notified: Wer wird benachrichtigt aktualisieren
|
51
51
|
edit_confirmation_email: Bestätigungsmail bearbeiten
|
52
52
|
inquiry_settings:
|
@@ -46,7 +46,7 @@ fr:
|
|
46
46
|
actions: Actions
|
47
47
|
back_to_all_inquiries: Retourné à la liste de requêtes
|
48
48
|
inquiry: Requête
|
49
|
-
submenu:
|
49
|
+
submenu:
|
50
50
|
update_notified: "Mettre à jour qui est notifié"
|
51
51
|
edit_confirmation_email: Modifier le couriel de confirmation
|
52
52
|
inquiry_settings:
|
@@ -16,15 +16,13 @@
|
|
16
16
|
</div>
|
17
17
|
<div id='records' class='tree'>
|
18
18
|
<% if searching? %>
|
19
|
+
<h2><%= t('admin.search_results_for', :query => h(params[:search])) %></h2>
|
19
20
|
<% if @pages.any? %>
|
20
|
-
<h2><%= t('admin.search_results_for', :query => params[:search]) %></h2>
|
21
21
|
<ul id='sortable_list'>
|
22
22
|
<%= render :partial => "sortable_list" %>
|
23
23
|
</ul>
|
24
24
|
<% else %>
|
25
|
-
<p>
|
26
|
-
<strong><%=t('.sorry_no_results')%></strong>
|
27
|
-
</p>
|
25
|
+
<p><%= t('admin.search_no_results') %></p>
|
28
26
|
<% end %>
|
29
27
|
<% else %>
|
30
28
|
<% if @pages.any? %>
|
@@ -1,17 +1,27 @@
|
|
1
1
|
<% if refinery_user? %>
|
2
2
|
<% unless admin? or login? # jquery scripts should already be cached when using the site bar as login has happened. %>
|
3
|
-
<%= stylesheet_link_tag('refinery/site_bar') %>
|
4
|
-
<%= jquery_include_tags %>
|
5
|
-
<%= javascript_include_tag 'jquery/jquery.corner.js' %>
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
3
|
+
<%= stylesheet_link_tag('refinery/site_bar') unless exclude_css ||= false %>
|
4
|
+
<%= jquery_include_tags(:jquery_ui => false) unless exclude_jquery ||= false %>
|
5
|
+
<%= javascript_include_tag 'jquery/jquery.corner.js' unless exclude_cornering_library ||= false %>
|
6
|
+
<% unless exclude_site_bar_javascript ||= false %>
|
7
|
+
<script type='text/javascript'>
|
8
|
+
if (typeof($) == 'function') {
|
9
|
+
$(document).ready(function() {
|
10
|
+
logo = $('#site_bar_content #site_bar_refinery_cms_logo');
|
11
|
+
$(logo).css('left', ($('#site_bar_content').width() / 2) - ($(logo).width() / 2));
|
12
|
+
|
13
|
+
if ($.isFunction($('#editor_switch a').corner)) {
|
14
|
+
$('#editor_switch a').corner('6px');
|
15
|
+
}
|
16
|
+
|
17
|
+
$('#editor_switch a').appendTo((span = $('<span></span>').prependTo('#editor_switch')));
|
18
|
+
if ($.isFunction(span.corner)) {
|
19
|
+
span.corner('6px');
|
20
|
+
}
|
21
|
+
});
|
22
|
+
}
|
23
|
+
</script>
|
24
|
+
<% end %>
|
15
25
|
<% end -%>
|
16
26
|
|
17
27
|
<div id='site_bar'>
|
@@ -39,6 +39,7 @@ de:
|
|
39
39
|
cancel: Abbrechen
|
40
40
|
or_continue: oder
|
41
41
|
cancel_lose_changes: "Abbrechen verlieren alle Änderungen, die Sie auf diese {{object_name}} gemacht haben"
|
42
|
+
delete: 'Löschen'
|
42
43
|
image_picker:
|
43
44
|
none_selected: "Es ist derzeit kein {{what}} ausgewählt ist, klicken Sie bitte hier eine Annonce aufgeben"
|
44
45
|
remove_current: "Entfernen aktuel {{what}}"
|
@@ -18,14 +18,13 @@ class Resource < ActiveRecord::Base
|
|
18
18
|
def validate
|
19
19
|
if self.filename.nil?
|
20
20
|
errors.add_to_base(I18n.translate('must_choose_file'))
|
21
|
-
errors.add_to_base("You must choose a file to upload")
|
22
21
|
else
|
23
22
|
[:size].each do |attr_name|
|
24
23
|
enum = attachment_options[attr_name]
|
25
24
|
|
26
25
|
unless enum.nil? || enum.include?(send(attr_name))
|
27
26
|
errors.add_to_base(I18n.translate('file_should_be_smaller_than_max_file_size',
|
28
|
-
:max_file_size => ActionController::Base.helpers.number_to_human_size(MAX_SIZE_IN_MB) ))
|
27
|
+
:max_file_size => ActionController::Base.helpers.number_to_human_size(MAX_SIZE_IN_MB.megabytes) ))
|
29
28
|
end
|
30
29
|
end
|
31
30
|
end
|
@@ -13,7 +13,8 @@
|
|
13
13
|
|
14
14
|
<div class='field'>
|
15
15
|
<label>
|
16
|
-
<%= t('.maximum_file_size',
|
16
|
+
<%= t('.maximum_file_size',
|
17
|
+
:megabytes => (Resource.attachment_options[:max_size] / 1024 / 1024)) %>
|
17
18
|
</label>
|
18
19
|
</div>
|
19
20
|
|
@@ -22,8 +23,9 @@
|
|
22
23
|
:f => f,
|
23
24
|
:continue_editing => false,
|
24
25
|
:hide_cancel => (@app_dialog or action_name == "insert" or from_dialog?),
|
25
|
-
|
26
|
-
|
26
|
+
:delete_title => t('admin.resources.resource.delete.title'),
|
27
|
+
:delete_confirmation => (t('admin.resources.resource.delete.message',
|
28
|
+
:title => @resource.title) unless @resource.new_record?)
|
27
29
|
} %>
|
28
30
|
|
29
31
|
<% if @app_dialog -%>
|
@@ -10,6 +10,7 @@
|
|
10
10
|
:title => t('.edit') %>
|
11
11
|
<%= link_to refinery_icon_tag('delete.png'), admin_resource_path(resource),
|
12
12
|
:class => "cancel confirm-delete",
|
13
|
-
:title => t('.delete.title')
|
13
|
+
:title => t('.delete.title'),
|
14
|
+
:'data-confirm' => t('.delete.message', :title => resource.filename) %>
|
14
15
|
</span>
|
15
16
|
</li>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
</div>
|
11
11
|
<div id='records' class='files'>
|
12
12
|
<% if searching? %>
|
13
|
-
<h2><%= t('admin.search_results_for', :query => params[:search]) %></h2>
|
13
|
+
<h2><%= t('admin.search_results_for', :query => h(params[:search])) %></h2>
|
14
14
|
<% if @resources.any? %>
|
15
15
|
<%= render :partial => "resource", :collection => @resources %>
|
16
16
|
<% else %>
|
@@ -69,7 +69,7 @@ Simply use the Theme generator to make the basic structure of a new theme.
|
|
69
69
|
|
70
70
|
ruby script/generate refinery_theme name_of_theme
|
71
71
|
|
72
|
-
Don't
|
72
|
+
Don't forget to "activate" this new theme by setting the theme setting to the name of this new theme.
|
73
73
|
|
74
74
|
## How do I select which Theme Refinery should use?
|
75
75
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: refinerycms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 9
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
7
|
- 9
|
9
8
|
- 7
|
10
|
-
-
|
11
|
-
version: 0.9.7.
|
9
|
+
- 10
|
10
|
+
version: 0.9.7.10
|
12
11
|
platform: ruby
|
13
12
|
authors:
|
14
13
|
- Resolve Digital
|
@@ -18,7 +17,7 @@ autorequire:
|
|
18
17
|
bindir: bin
|
19
18
|
cert_chain: []
|
20
19
|
|
21
|
-
date: 2010-
|
20
|
+
date: 2010-08-02 00:00:00 +12:00
|
22
21
|
default_executable:
|
23
22
|
dependencies: []
|
24
23
|
|
@@ -1100,27 +1099,23 @@ rdoc_options: []
|
|
1100
1099
|
require_paths:
|
1101
1100
|
- lib
|
1102
1101
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1103
|
-
none: false
|
1104
1102
|
requirements:
|
1105
1103
|
- - ">="
|
1106
1104
|
- !ruby/object:Gem::Version
|
1107
|
-
hash: 3
|
1108
1105
|
segments:
|
1109
1106
|
- 0
|
1110
1107
|
version: "0"
|
1111
1108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1112
|
-
none: false
|
1113
1109
|
requirements:
|
1114
1110
|
- - ">="
|
1115
1111
|
- !ruby/object:Gem::Version
|
1116
|
-
hash: 3
|
1117
1112
|
segments:
|
1118
1113
|
- 0
|
1119
1114
|
version: "0"
|
1120
1115
|
requirements: []
|
1121
1116
|
|
1122
1117
|
rubyforge_project:
|
1123
|
-
rubygems_version: 1.3.
|
1118
|
+
rubygems_version: 1.3.6
|
1124
1119
|
signing_key:
|
1125
1120
|
specification_version: 3
|
1126
1121
|
summary: A beautiful open source Ruby on Rails content manager for small business.
|