spree 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of spree might be problematic. Click here for more details.

@@ -1,10 +1,15 @@
1
- == 0.0.6 2008-02-36
1
+ == 0.0.7 2008-03-26
2
+
3
+ * Fixed an error with improperly named helper in one of the mailers (this was preventing checkout)
4
+ * Removed several trivial references to old project name
5
+
6
+ == 0.0.6 2008-03-26
2
7
 
3
8
  * Now properly requires the mini_magick dependency
4
9
  * Fixed a few minor rake task issues
5
10
  * Other very minor bug fixes
6
11
 
7
- == 0.0.5 2008-02-36
12
+ == 0.0.5 2008-02-26
8
13
 
9
14
  * Test release of the newly named gem (formerly known as railscart)
10
15
 
@@ -2,7 +2,7 @@ module Spree #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 6
5
+ TINY = 7
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -13,7 +13,7 @@ require 'syntax/convertors/html'
13
13
  require 'erb'
14
14
  require File.dirname(__FILE__) + '/../lib/spree/version.rb'
15
15
 
16
- version = Railscart::VERSION::STRING
16
+ version = Spree::VERSION::STRING
17
17
  download = 'http://rubyforge.org/projects/spree'
18
18
 
19
19
  class Fixnum
@@ -2,7 +2,7 @@
2
2
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
3
  <html xmlns="http://www.w3.org/1999/xhtml">
4
4
  <head>
5
- <title>RailsCart</title>
5
+ <title>Spree</title>
6
6
  <%= stylesheet_link_tag 'application' %>
7
7
  <%= javascript_include_tag :defaults %>
8
8
  </head>
@@ -75,7 +75,7 @@ require 'mini_magick'
75
75
 
76
76
  # Include your application configuration below
77
77
 
78
- # RailsCart Configuration
78
+ # Spree Configuration
79
79
  SESSION_KEY = '_spree_session_id'
80
80
  TAX_CALCULATOR = "SalesTax" # feel free to replace with a custom tax calculator class
81
81
  SHIPPING_METHODS = [:flat_rate]
@@ -1,5 +1,5 @@
1
1
  class OrderMailer < ActionMailer::Base
2
- helper "rails_cart/base"
2
+ helper "spree/base"
3
3
 
4
4
  def confirm(order, resend = false)
5
5
  @subject = (resend ? "[RESEND] " : "")
@@ -1,10 +1,10 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
- <html xmlns="http://www.w3.org/1999/xhtml">
3
- <head>
4
- <title>RailsCart</title>
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>Spree</title>
5
5
  <%=stylesheets%>
6
- </head>
7
- <body>
6
+ </head>
7
+ <body>
8
8
  <div id="main">
9
9
  <div id="main-body">
10
10
  <% if flash[:notice] %>
@@ -14,7 +14,7 @@
14
14
  <div id="error"><b>ERROR</b> - <%= flash[:error] %></div>
15
15
  <% end %>
16
16
  <%=@content_for_layout %>
17
- </div>
17
+ </div>
18
18
  </div>
19
- </body>
20
- </html>
19
+ </body>
20
+ </html>
@@ -3,10 +3,10 @@
3
3
  <html xmlns="http://www.w3.org/1999/xhtml">
4
4
  <head>
5
5
  <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
- <title>Railscart: <%= controller.controller_name %> Admin</title>
6
+ <title>Spree: <%= controller.controller_name %> Admin</title>
7
7
  <%= stylesheet_link_tag 'fullscreen', :plugin=>"spree" %>
8
8
  <%= javascript_include_tag 'prototype', 'effects', 'lowpro', 'application' %>
9
- <script type="text/javascript">Railscart.root = '<%= ActionController::AbstractRequest.relative_url_root %>';</script>
9
+ <script type="text/javascript">Spree.root = '<%= ActionController::AbstractRequest.relative_url_root %>';</script>
10
10
  </head>
11
11
  <body id="body-<%= controller.controller_name %>">
12
12
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Schofield