Skip to content

Commit

Permalink
ZOMG 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed May 27, 2011
1 parent 33345a5 commit 6de1752
Show file tree
Hide file tree
Showing 20 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion authentication/lib/refinerycms-authentication.rb
Expand Up @@ -16,7 +16,7 @@ class Engine < ::Rails::Engine
config.after_initialize do
::Refinery::Plugin.register do |plugin|
plugin.name = 'refinery_users'
plugin.version = %q{0.9.9.21}
plugin.version = %q{1.0.0}
plugin.menu_match = /(refinery|admin)\/users$/
plugin.activity = {
:class => User,
Expand Down
2 changes: 1 addition & 1 deletion authentication/refinerycms-authentication.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Authentication engine for Refinery CMS}
s.description = %q{The default authentication engine for Refinery CMS}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
2 changes: 1 addition & 1 deletion base/refinerycms-base.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Base engine for Refinery CMS}
s.description = %q{This provides a base for Refinery CMS which handles things like settings on the Refinery namespace.}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
@@ -1,4 +1,4 @@
## 1.0.0 [Unreleased]
## 1.0.0 [28 May 2011]

* New `::Refinery::Menu` API implemented which speeds up menu generation by many times. [Philip Arndt](https://github.com/parndt)
* Removed caching from menu because it's so much faster now. Probably in future it will be added to `::Refinery::Menu` itself in a transparent manner. [Philip Arndt](https://github.com/parndt)
Expand Down
2 changes: 1 addition & 1 deletion dashboard/lib/refinerycms-dashboard.rb
Expand Up @@ -19,7 +19,7 @@ class Engine < ::Rails::Engine
plugin.url = {:controller => '/admin/dashboard', :action => 'index'}
plugin.menu_match = /(admin|refinery)\/(refinery_)?dashboard$/
plugin.directory = 'dashboard'
plugin.version = %q{0.9.9.21}
plugin.version = %q{1.0.0}
plugin.always_allow_access = true
plugin.dashboard = true
end
Expand Down
2 changes: 1 addition & 1 deletion dashboard/refinerycms-dashboard.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Dashboard engine for Refinery CMS}
s.description = %q{The dashboard is usually the first engine the user sees in the backend of Refinery CMS. It displays useful information and contains links to common functionality.}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
Expand Up @@ -8,7 +8,7 @@ This guide covers getting up and running with Refinery CMS. After reading it, yo

endprologue.

WARNING. This guide is based on Refinery CMS 0.9.9.22 so some of the code shown here may not work in earlier versions of Refinery.
WARNING. This guide is based on Refinery CMS 1.0.0 so some of the code shown here may not work in earlier versions of Refinery.

h3. Guide Assumptions

Expand Down
Expand Up @@ -6,7 +6,7 @@ This guide covers integration with Refinery CMS. After reading it, you should be

endprologue.

WARNING. This guide is based on Refinery CMS 0.9.9.22. Some of the code shown here will not work in earlier versions of Refinery.
WARNING. This guide is based on Refinery CMS 1.0.0. Some of the code shown here will not work in earlier versions of Refinery.

h3. Guide Assumptions

Expand All @@ -24,7 +24,7 @@ h4. Add Refinery CMS as a dependency in your Gemfile
Open up your Gemfile and add the latest version (a later version than the one shown "may exist":https://rubygems.org/gems/refinerycms/versions):

<ruby>
gem 'refinerycms', '= 0.9.9.22'
gem 'refinerycms', '= 1.0.0'
</ruby>

Now, to install the gem run:
Expand Down
Expand Up @@ -19,7 +19,7 @@ Take a look at "http://rubygems.org/gems/refinerycms":http://rubygems.org/gems/r
Edit your +Gemfile+ to reference the latest version of Refinery (a later version than the one shown "may exist":https://rubygems.org/gems/refinerycms/versions).

<ruby>
gem 'refinerycms', '= 0.9.9.22'
gem 'refinerycms', '= 1.0.0'
</ruby>

Now install the new gems using bundler ('bundle install' is outdated):
Expand Down
Expand Up @@ -6,7 +6,7 @@ h2. How to Install Refinery on Duostack

endprologue.

WARNING. This guide is based on Refinery 0.9.9. The automated Duostack installation shown here will not work in earlier versions of Refinery.
WARNING. This guide is based on Refinery CMS 1.0.0. The automated Duostack installation shown here will not work in earlier versions of Refinery.

h3. Starting Out

Expand Down
2 changes: 1 addition & 1 deletion images/lib/refinerycms-images.rb
Expand Up @@ -61,7 +61,7 @@ class Engine < ::Rails::Engine
::Refinery::Plugin.register do |plugin|
plugin.name = 'refinery_images'
plugin.directory = 'images'
plugin.version = %q{0.9.9.21}
plugin.version = %q{1.0.0}
plugin.menu_match = /(refinery|admin)\/image(_dialog)?s$/
plugin.activity = {
:class => Image
Expand Down
2 changes: 1 addition & 1 deletion images/refinerycms-images.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Images engine for Refinery CMS}
s.description = %q{Handles all image upload and processing functionality in Refinery CMS.}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
2 changes: 1 addition & 1 deletion pages/lib/refinerycms-pages.rb
Expand Up @@ -37,7 +37,7 @@ class Engine < ::Rails::Engine
::Refinery::Plugin.register do |plugin|
plugin.name = 'refinery_pages'
plugin.directory = 'pages'
plugin.version = %q{0.9.9.21}
plugin.version = %q{1.0.0}
plugin.menu_match = /(refinery|admin)\/page(_part)?s(_dialogs)?$/
plugin.activity = {
:class => Page,
Expand Down
2 changes: 1 addition & 1 deletion pages/refinerycms-pages.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Pages engine for Refinery CMS}
s.description = %q{The default content engine of Refinery CMS. This engine handles the administration and display of user-editable pages.}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
2 changes: 1 addition & 1 deletion refinerycms.gemspec
Expand Up @@ -4,7 +4,7 @@ Gem::Specification.new do |s|
s.name = %q{refinerycms}
s.version = %q{1.0.0}
s.description = %q{A Ruby on Rails CMS that supports Rails 3. It's easy to extend and sticks to 'the Rails way' where possible.}
s.date = %q{2011-05-27}
s.date = %q{2011-05-28}
s.summary = %q{A Ruby on Rails CMS that supports Rails 3}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/refinerycms-resources.rb
Expand Up @@ -61,7 +61,7 @@ class Engine < ::Rails::Engine
plugin.name = 'refinery_files'
plugin.url = {:controller => '/admin/resources', :action => 'index'}
plugin.menu_match = /(refinery|admin)\/(refinery_)?(files|resources)$/
plugin.version = %q{0.9.9.21}
plugin.version = %q{1.0.0}
plugin.activity = {
:class => Resource
}
Expand Down
2 changes: 1 addition & 1 deletion resources/refinerycms-resources.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Resources engine for Refinery CMS}
s.description = %q{Handles all file upload and processing functionality in Refinery CMS.}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
2 changes: 1 addition & 1 deletion settings/lib/refinerycms-settings.rb
Expand Up @@ -20,7 +20,7 @@ class Engine < ::Rails::Engine
::Refinery::Plugin.register do |plugin|
plugin.name = 'refinery_settings'
plugin.url = {:controller => '/admin/refinery_settings'}
plugin.version = %q{0.9.9.21}
plugin.version = %q{1.0.0}
plugin.menu_match = /(refinery|admin)\/(refinery_)?settings$/
end
end
Expand Down
2 changes: 1 addition & 1 deletion settings/refinerycms-settings.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Settings engine for Refinery CMS}
s.description = %q{The default settings engine that is required by Refinery CMS core. Adds programmer creatable, user editable settings for each engine.}
s.date = %q{2011-05-26}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down
2 changes: 1 addition & 1 deletion testing/refinerycms-testing.gemspec
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = %q{1.0.0}
s.summary = %q{Testing plugin for Refinery CMS}
s.description = %q{This plugin adds the ability to run cucumber and rspec against the RefineryCMS gem while inside a RefineryCMS project}
s.date = %q{2011-05-27}
s.date = %q{2011-05-28}
s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms}
Expand Down

0 comments on commit 6de1752

Please sign in to comment.