lipsiadmin 3.3.2 → 3.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,10 @@
1
+ 2009-03-18
2
+ * Updated the readme with new generators
3
+
4
+ 2009-03-17
5
+ * Bump to version 3.3.3
6
+ * Fix a typo in attachment migration
7
+
1
8
  2009-03-16
2
9
  * Bump to version 3.3.2
3
10
  * Updated locales for work with rails 2.3.2 (do rake lipsiadmin:update:locales)
data/README CHANGED
@@ -51,6 +51,7 @@ So you can do:
51
51
 
52
52
  $ script/generate backend # Generate the base admin
53
53
  $ script/generate backend_page yourmodel # Generate a "scaffold" for your model
54
+ $ script/generate state_session # Create a "scaffold" for store extjs grid settings in db
54
55
  $ script/generate frontend # Generate the base frontend
55
56
  $ script/generate attachment # Generate the an attachments
56
57
  $ script/generate pdf PdfName # Generate a new pdf document
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'rake/rdoctask'
5
5
  require 'rake/packagetask'
6
6
  require 'rake/gempackagetask'
7
7
  require 'rake/contrib/sshpublisher'
8
- require 'version'
8
+ require "#{File.dirname(__FILE__)}/lib/version"
9
9
 
10
10
  PKG_NAME = 'lipsiadmin'
11
11
  PKG_VERSION = Lipsiadmin::VERSION::STRING
@@ -2,7 +2,7 @@ module Lipsiadmin
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 3
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
@@ -1,4 +1,4 @@
1
- class CreateAttachment < ActiveRecord::Migration
1
+ class CreateAttachments < ActiveRecord::Migration
2
2
  def self.up
3
3
  create_table :attachments, :force => true do |t|
4
4
  t.string :attached_file_name, :attached_content_type
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lipsiadmin
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.2
4
+ version: 3.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davide D'Agostino
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-16 00:00:00 +01:00
12
+ date: 2009-03-18 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies: []
15
15