Skip to content

Commit

Permalink
Documented why we're now at version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
parndt committed Jun 23, 2011
1 parent 07a803b commit 80fe84d
Show file tree
Hide file tree
Showing 12 changed files with 43 additions and 38 deletions.
6 changes: 3 additions & 3 deletions authentication/refinerycms-authentication.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-authentication} s.name = %q{refinerycms-authentication}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Authentication engine for Refinery CMS} s.summary = %q{Authentication engine for Refinery CMS}
s.description = %q{The default authentication engine for Refinery CMS} s.description = %q{The default authentication engine for Refinery CMS}
s.date = %q{2011-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand All @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.require_paths = %w(lib) s.require_paths = %w(lib)
s.executables = %w() s.executables = %w()


s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
s.add_dependency 'devise', '~> 1.3.0' s.add_dependency 'devise', '~> 1.3.0'
s.add_dependency 'friendly_id_globalize3', '~> 3.2.1' s.add_dependency 'friendly_id_globalize3', '~> 3.2.1'


Expand Down
2 changes: 1 addition & 1 deletion base/lib/refinery/version.rb
Expand Up @@ -2,7 +2,7 @@ module Refinery
class Version class Version
@major = 1 @major = 1
@minor = 0 @minor = 0
@tiny = 1 @tiny = 2
@build = nil @build = nil


class << self class << self
Expand Down
4 changes: 2 additions & 2 deletions base/refinerycms-base.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-base} s.name = %q{refinerycms-base}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Base engine for Refinery CMS} 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.description = %q{This provides a base for Refinery CMS which handles things like settings on the Refinery namespace.}
s.date = %q{2011-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
@@ -1,3 +1,8 @@
## 1.0.2 [23 June 2011]

* Ensure that `refinerycms-testing` is not enabled by default when installing an application. [Philip Arndt](https://github.com/parndt)
* [See full list](https://github.com/resolve/refinerycms/compare/1.0.1...1.0.2)

## 1.0.1 [21 June 2011] ## 1.0.1 [21 June 2011]


* Added `-t` / `--testing` option to `bin/refinerycms` which adds `refinerycms-testing` support by default when installing. [Philip Arndt](https://github.com/parndt) * Added `-t` / `--testing` option to `bin/refinerycms` which adds `refinerycms-testing` support by default when installing. [Philip Arndt](https://github.com/parndt)
Expand Down
8 changes: 4 additions & 4 deletions core/refinerycms-core.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-core} s.name = %q{refinerycms-core}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Core engine for Refinery CMS} s.summary = %q{Core engine for Refinery CMS}
s.description = %q{The core of Refinery CMS. This handles the common functionality and is required by most engines} s.description = %q{The core of Refinery CMS. This handles the common functionality and is required by most engines}
s.date = %q{2011-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand All @@ -15,8 +15,8 @@ Gem::Specification.new do |s|
s.require_paths = %w(lib) s.require_paths = %w(lib)
s.executables = %w() s.executables = %w()


s.add_dependency 'refinerycms-base', '= 1.0.1' s.add_dependency 'refinerycms-base', '= 1.0.2'
s.add_dependency 'refinerycms-settings', '= 1.0.1' s.add_dependency 'refinerycms-settings', '= 1.0.2'
s.add_dependency 'refinerycms-generators', '~> 1.0' s.add_dependency 'refinerycms-generators', '~> 1.0'
s.add_dependency 'acts_as_indexed', '~> 0.7' s.add_dependency 'acts_as_indexed', '~> 0.7'
s.add_dependency 'friendly_id_globalize3', '~> 3.2.1' s.add_dependency 'friendly_id_globalize3', '~> 3.2.1'
Expand Down
6 changes: 3 additions & 3 deletions dashboard/refinerycms-dashboard.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-dashboard} s.name = %q{refinerycms-dashboard}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Dashboard engine for Refinery CMS} 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.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-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand Down Expand Up @@ -73,5 +73,5 @@ Gem::Specification.new do |s|
'refinerycms-dashboard.gemspec' 'refinerycms-dashboard.gemspec'
] ]


s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
end end
6 changes: 3 additions & 3 deletions images/refinerycms-images.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-images} s.name = %q{refinerycms-images}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Images engine for Refinery CMS} s.summary = %q{Images engine for Refinery CMS}
s.description = %q{Handles all image upload and processing functionality in Refinery CMS.} s.description = %q{Handles all image upload and processing functionality in Refinery CMS.}
s.date = %q{2011-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand Down Expand Up @@ -96,7 +96,7 @@ Gem::Specification.new do |s|
'spec/uploads/beach.jpeg' 'spec/uploads/beach.jpeg'
] ]


s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
s.add_dependency 'dragonfly', '~> 0.9.0' s.add_dependency 'dragonfly', '~> 0.9.0'
s.add_dependency 'rack-cache', '>= 0.5.3' s.add_dependency 'rack-cache', '>= 0.5.3'
end end
6 changes: 3 additions & 3 deletions pages/refinerycms-pages.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-pages} s.name = %q{refinerycms-pages}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Pages engine for Refinery CMS} 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.description = %q{The default content engine of Refinery CMS. This engine handles the administration and display of user-editable pages.}
s.date = %q{2011-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand Down Expand Up @@ -120,7 +120,7 @@ Gem::Specification.new do |s|
'spec/models/page_spec.rb' 'spec/models/page_spec.rb'
] ]


s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
s.add_dependency 'friendly_id_globalize3', '~> 3.2.1' s.add_dependency 'friendly_id_globalize3', '~> 3.2.1'
s.add_dependency 'globalize3', '~> 0.1' s.add_dependency 'globalize3', '~> 0.1'
s.add_dependency 'awesome_nested_set', '~> 2.0' s.add_dependency 'awesome_nested_set', '~> 2.0'
Expand Down
20 changes: 10 additions & 10 deletions refinerycms.gemspec
Expand Up @@ -3,9 +3,9 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms} s.name = %q{refinerycms}
s.version = %q{1.0.1} s.version = %q{1.0.2}
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.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-06-21} s.date = %q{2011-06-23}
s.summary = %q{A Ruby on Rails CMS that supports Rails 3} s.summary = %q{A Ruby on Rails CMS that supports Rails 3}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
Expand All @@ -19,14 +19,14 @@ Gem::Specification.new do |s|
s.add_dependency 'bundler', '~> 1.0' s.add_dependency 'bundler', '~> 1.0'


# Refinery CMS # Refinery CMS
s.add_dependency 'refinerycms-authentication', '= 1.0.1' s.add_dependency 'refinerycms-authentication', '= 1.0.2'
s.add_dependency 'refinerycms-base', '= 1.0.1' s.add_dependency 'refinerycms-base', '= 1.0.2'
s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
s.add_dependency 'refinerycms-dashboard', '= 1.0.1' s.add_dependency 'refinerycms-dashboard', '= 1.0.2'
s.add_dependency 'refinerycms-images', '= 1.0.1' s.add_dependency 'refinerycms-images', '= 1.0.2'
s.add_dependency 'refinerycms-pages', '= 1.0.1' s.add_dependency 'refinerycms-pages', '= 1.0.2'
s.add_dependency 'refinerycms-resources', '= 1.0.1' s.add_dependency 'refinerycms-resources', '= 1.0.2'
s.add_dependency 'refinerycms-settings', '= 1.0.1' s.add_dependency 'refinerycms-settings', '= 1.0.2'


s.files = [ s.files = [
'.gitignore', '.gitignore',
Expand Down
6 changes: 3 additions & 3 deletions resources/refinerycms-resources.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-resources} s.name = %q{refinerycms-resources}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Resources engine for Refinery CMS} s.summary = %q{Resources engine for Refinery CMS}
s.description = %q{Handles all file upload and processing functionality in Refinery CMS.} s.description = %q{Handles all file upload and processing functionality in Refinery CMS.}
s.date = %q{2011-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand Down Expand Up @@ -89,7 +89,7 @@ Gem::Specification.new do |s|
'spec/uploads/refinery_is_awesome.txt' 'spec/uploads/refinery_is_awesome.txt'
] ]


s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
s.add_dependency 'dragonfly', '~> 0.9.0' s.add_dependency 'dragonfly', '~> 0.9.0'
s.add_dependency 'rack-cache', '>= 0.5.3' s.add_dependency 'rack-cache', '>= 0.5.3'
end end
6 changes: 3 additions & 3 deletions settings/refinerycms-settings.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-settings} s.name = %q{refinerycms-settings}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Settings engine for Refinery CMS} 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.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-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand Down Expand Up @@ -85,5 +85,5 @@ Gem::Specification.new do |s|
'spec/models/refinery_setting_spec.rb' 'spec/models/refinery_setting_spec.rb'
] ]


s.add_dependency 'refinerycms-base', '= 1.0.1' s.add_dependency 'refinerycms-base', '= 1.0.2'
end end
6 changes: 3 additions & 3 deletions testing/refinerycms-testing.gemspec
Expand Up @@ -3,10 +3,10 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{refinerycms-testing} s.name = %q{refinerycms-testing}
s.version = %q{1.0.1} s.version = %q{1.0.2}
s.summary = %q{Testing plugin for Refinery CMS} 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.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-06-21} s.date = %q{2011-06-23}
s.email = %q{info@refinerycms.com} s.email = %q{info@refinerycms.com}
s.homepage = %q{http://refinerycms.com} s.homepage = %q{http://refinerycms.com}
s.rubyforge_project = %q{refinerycms} s.rubyforge_project = %q{refinerycms}
Expand All @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.require_paths = %w(lib) s.require_paths = %w(lib)
s.executables = %w() s.executables = %w()


s.add_dependency 'refinerycms-core', '= 1.0.1' s.add_dependency 'refinerycms-core', '= 1.0.2'
# RSpec # RSpec
s.add_dependency 'rspec-rails', '~> 2.6' s.add_dependency 'rspec-rails', '~> 2.6'


Expand Down

0 comments on commit 80fe84d

Please sign in to comment.