polishing + bump version (beta yeaaah)

This commit is contained in:
dinedine 2010-12-31 19:31:22 +01:00
parent 83bce13020
commit c0ac0046c1
4 changed files with 6 additions and 5 deletions

View File

@ -8,6 +8,7 @@ Locomotive.configure do |config|
# If you use locomotive for a single site in Heroku, use "heroku.com" as default domain name. # If you use locomotive for a single site in Heroku, use "heroku.com" as default domain name.
# Your heroku app name (<app_name>.heroku.name) will be used as the sub domain name in Locomotive # Your heroku app name (<app_name>.heroku.name) will be used as the sub domain name in Locomotive
# during the installation wizzard. # during the installation wizzard.
# ex: config.default_domain = Rails.env.production? ? 'heroku.com' : 'example.com'
config.default_domain = 'example.com' config.default_domain = 'example.com'
# configure how many items we display in sub menu in the "Contents" section. # configure how many items we display in sub menu in the "Contents" section.

View File

@ -7,7 +7,7 @@ x rspec 2.3
x ruby 1.9.2: x ruby 1.9.2:
x DelayedJob not working x DelayedJob not working
x new version of Aloha-Editor x new version of Aloha-Editor
- locomotive gem: test with staging x locomotive gem: test with staging
BACKLOG: BACKLOG:
@ -16,7 +16,6 @@ BACKLOG:
- editable elements should wrap a tag: div, h1, ...etc (default span) - editable elements should wrap a tag: div, h1, ...etc (default span)
- edit images (upload new ones, ...etc) => wait for aloha or send them an email ? - edit images (upload new ones, ...etc) => wait for aloha or send them an email ?
- ruby 1.9.2
- refactor slugify method (use parameterize + create a module) - refactor slugify method (use parameterize + create a module)
- validation for custom fields - validation for custom fields
- notify accounts when new instance of models (opt): none, one or many accounts. Used for contact form. - notify accounts when new instance of models (opt): none, one or many accounts. Used for contact form.

View File

@ -6,7 +6,8 @@ Locomotive.configure do |config|
# If you use locomotive for a single site in Heroku, use "heroku.com" as default domain name. # If you use locomotive for a single site in Heroku, use "heroku.com" as default domain name.
# Your heroku app name (<app_name>.heroku.name) will be used as the sub domain name in Locomotive # Your heroku app name (<app_name>.heroku.name) will be used as the sub domain name in Locomotive
# during the installation wizzard. # during the installation wizzard.
config.default_domain = 'mydomain.com' # ex: config.default_domain = Rails.env.production? ? 'heroku.com' : 'example.com'
config.default_domain = 'example.com'
# configure how many items we display in sub menu in the "Contents" section. # configure how many items we display in sub menu in the "Contents" section.
config.lastest_items_nb = 5 config.lastest_items_nb = 5
@ -35,4 +36,4 @@ Locomotive.configure do |config|
# default locale (for now, only en and fr are supported) # default locale (for now, only en and fr are supported)
config.default_locale = :en config.default_locale = :en
end end

View File

@ -1,3 +1,3 @@
module Locomotive #:nodoc module Locomotive #:nodoc
VERSION = "0.0.4.beta11" VERSION = "1.0.0.0beta"
end end