Skip to content

Commit

Permalink
Preparing for 0.2.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
schof committed Jun 6, 2008
1 parent 3e17ba3 commit 25a9487
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
== 0.2.0 2008-06-05

* Extension support.
* Improved user/address model.
* Improved payment gateway configuraiton.

== 0.0.9 2008-04-23

* Changed source code layout. Spree now runs in stand alone, gem and application modes.
Expand Down
2 changes: 1 addition & 1 deletion lib/generators/extension/extension_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def manifest
m.directory "#{extension_path}/db/migrate"
m.directory "#{extension_path}/lib/tasks"

m.template 'README', "#{extension_path}/README"
m.template 'README.markdown', "#{extension_path}/README.markdown"
m.template 'extension.rb', "#{extension_path}/#{extension_file_name}.rb"
m.template 'tasks.rake', "#{extension_path}/lib/tasks/#{extension_file_name}_tasks.rake"

Expand Down
2 changes: 1 addition & 1 deletion lib/generators/extension/templates/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = '<%= class_name %>'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('README.markdown')
rdoc.rdoc_files.include('lib/**/*.rb')
end

Expand Down
2 changes: 1 addition & 1 deletion lib/generators/instance/instance_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def manifest

# Standard files and directories
base_dirs = %w(config config/environments db log script public vendor/plugins vendor/extensions)
text_files = %w(CHANGELOG CONTRIBUTORS LICENSE INSTALL README)
text_files = %w(CHANGELOG CONTRIBUTORS LICENSE INSTALL README.markdown)
environments = Dir["#{root}/config/environments/*.rb"]
scripts = Dir["#{root}/script/**/*"].reject { |f| f =~ /(destroy|generate|plugin)$/ }
public_files = ["public/.htaccess"] + Dir["#{root}/public/**/*"]
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/release.rake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUBY_FORGE_GROUPID = '5614'
RUBY_FORGE_PACKAGEID = '7123'

RDOC_TITLE = "Spree -- Complete Commerce Solution for Ruby on Rails"
RDOC_EXTRAS = ["README", "CONTRIBUTORS", "CHANGELOG", "INSTALL", "LICENSE"]
RDOC_EXTRAS = ["README.markdown", "CONTRIBUTORS", "CHANGELOG", "INSTALL", "LICENSE"]

namespace 'spree' do
spec = Gem::Specification.new do |s|
Expand Down

0 comments on commit 25a9487

Please sign in to comment.