public
Fork of wycats/merb-plugins
Description: Merb Plugins: Even more modules to hook up your Merb installation
Homepage: http://www.merbivore.com
Clone URL: git://github.com/myabc/merb-plugins.git
Prep 0.9.2
ivey (author)
Mon Mar 24 20:52:05 -0700 2008
commit  65c1ccb8a2a02a7c3c36720244b560d728daa3a6
tree    fbc383e2cfe0ceea261151cec4c2806be869a857
parent  969f44bd2efd5c8af26aa7a93a24e63711073d0b
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
...
29
30
31
32
33
 
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
...
55
56
57
 
58
59
0
@@ -1,3 +1,29 @@
0
+== 0.9.2 "appropriate response to reality" 2008-03-24
0
+* have select_control use database value as the default selected value
0
+* windows support in rakefile
0
+* Session should respond to each_with_index
0
+* merb-gen fix for namespaced resources
0
+* fix rakefiles in plugins. Fix merb_sequel and Merb-datamapper and merb_activerecord to use autoflush logging so log messages are immediately flushed instead of showing nothing.
0
+* Updated format of migrations to ActiveRecord 2.0 style
0
+* Minor cleanup and comment about using the assistance instead of my custom extensions...
0
+* Time_ago_in_words and spec for her
0
+* Initial stab at some date_time helpers up in here...
0
+* Implementation of IRB sandbox methods
0
+* added better error message when a database can't be created
0
+* fixed rake db:test:clone
0
+* fixed bug when using custom charset and collation in database.yml
0
+* Merb.logger is now correctly setup from Merb::Config for :merb_start task
0
+* Make helper specs pass again. NOTE: Config specs do not work.
0
+* ORM plugins (AR, DM, Sequel) now hook into the BootLoader
0
+* cleaned up the existing rake tasks + added rake db:drop:all, rake db:migrate:redo, rake db:migrate:reset + rake db:reset now drops your dbs, recreate them and load schema.rb + rake db:rollback + rake db:abort_if_pending_migrations
0
+* Changed merb active record rake tasks to create utf8 dabases when using rake db:create / db:reset Added rake db:charset rake db:collation Support for charset/collation arguments: rake db:create CHARSET=latin1, COLLATION=latin1_bin
0
+* cleaned up the existing rake tasks + added rake db:drop:all, rake db:migrate:redo, rake db:migrate:reset + rake db:reset now drops your dbs, recreate them and load schema.rb + rake db:rollback + rake db:abort_if_pending_migrations
0
+* Changed merb active record rake tasks to create utf8 dabases when using rake db:create / db:reset
0
+* fix rakefile to not build merb_rspec as it is in -core now.
0
+* Using autoload to connect to the database on the first use of DataMapper
0
+* Corrects some issues with merb_test_unit
0
+* Adding updated_at for DM sessions.
0
+
0
 == 0.9.1 "Some are half-wild, and some are just outlaws." 2008-02-29
0
 * merb_activerecord: updated render syntax in new action of db plugin
0
   resource_controller controller templates.
0
@@ -29,4 +55,4 @@
0
 * merb_test_unit: Adding rspec dependency to merb_rspec, removing merb-test
0
   references in merb_test_unit
0
 * merb_test_unit: moving plugin rakefiles into a plugin name parent folder
0
-* merb_test_unit: Normalize calls to Merb.start
0
\ No newline at end of file
0
+* merb_test_unit: Normalize calls to Merb.start
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_activerecord"
0
 NAME = "merb_activerecord"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Duane Johnson"
0
 EMAIL = "canadaduane@gmail.com"
0
 HOMEPAGE = "http://merbivore.com"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency("merb-core", ">= 0.9.1")
0
+ s.add_dependency("merb-core", ">= 0.9.2")
0
   s.require_path = "lib"
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,activerecord_generators}/**/*")
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_datamapper"
0
 NAME = "merb_datamapper"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Jason Toy"
0
 EMAIL = "jtoy@rubynow.com"
0
 HOMEPAGE = "http://merbivore.com"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9.1')
0
+ s.add_dependency('merb-core', '>= 0.9.2')
0
   s.add_dependency('datamapper', '>= 0.2.3')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
...
5
6
7
8
 
9
10
11
...
26
27
28
29
 
30
31
32
...
5
6
7
 
8
9
10
11
...
26
27
28
 
29
30
31
32
0
@@ -5,7 +5,7 @@ require 'spec/rake/spectask'
0
 
0
 PLUGIN = "merb_helpers"
0
 NAME = "merb_helpers"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Yehuda Katz"
0
 EMAIL = "wycats@gmail.com"
0
 HOMEPAGE = "http://merb.rubyforge.org/"
0
@@ -26,7 +26,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency("merb-core", ">=0.9.1")
0
+ s.add_dependency("merb-core", ">=0.9.2")
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
...
4
5
6
7
 
8
9
10
...
21
22
23
24
 
25
26
27
...
4
5
6
 
7
8
9
10
...
21
22
23
 
24
25
26
27
0
@@ -4,7 +4,7 @@ require 'spec/rake/spectask'
0
 
0
 PLUGIN = "merb_param_protection"
0
 NAME = "merb_param_protection"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Lance Carlson"
0
 EMAIL = "lancecarlson@gmail.com"
0
 HOMEPAGE = "http://merb.devjavu.com"
0
@@ -21,7 +21,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   #s.homepage = HOMEPAGE
0
- s.add_dependency('merb', '>= 0.9.1')
0
+ s.add_dependency('merb', '>= 0.9.2')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
...
3
4
5
6
 
7
8
9
...
24
25
26
27
 
28
29
30
...
3
4
5
 
6
7
8
9
...
24
25
26
 
27
28
29
30
0
@@ -3,7 +3,7 @@ require "rake/gempackagetask"
0
 
0
 PLUGIN = "merb_sequel"
0
 NAME = "merb_sequel"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Wayne E. Seguin, Lance Carlson"
0
 EMAIL = "wayneeseguin@gmail.com, lancecarlson@gmail.com"
0
 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb_sequel/"
0
@@ -24,7 +24,7 @@ specification = Gem::Specification.new do |spec|
0
   spec.extra_rdoc_files = ["README", "LICENSE", 'TODO']
0
   # Dependencies
0
   #spec.add_dependency("merb", ">= 0.9")
0
- spec.add_dependency("merb-core", ">= 0.9.1") # This will probably only be temporary until there is an official merb gem greater than 0.9
0
+ spec.add_dependency("merb-core", ">= 0.9.2") # This will probably only be temporary until there is an official merb gem greater than 0.9
0
   spec.add_dependency("sequel", ">= 1.0.0")
0
   spec.add_dependency("sequel_model", ">= 0.3.3")
0
   spec.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,specs,sequel_generators}/**/*")
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_stories"
0
 NAME = "merb_stories"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Yehuda Katz"
0
 EMAIL = "ykatz@engineyard.com"
0
 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-test/"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9.1')
0
+ s.add_dependency('merb-core', '>= 0.9.2')
0
   s.add_dependency('rspec', '>= 1.1.3')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
...
3
4
5
6
 
7
8
9
...
20
21
22
23
 
24
25
26
...
3
4
5
 
6
7
8
9
...
20
21
22
 
23
24
25
26
0
@@ -3,7 +3,7 @@ require 'rake/gempackagetask'
0
 
0
 PLUGIN = "merb_test_unit"
0
 NAME = "merb_test_unit"
0
-VERSION = "0.9.1"
0
+VERSION = "0.9.2"
0
 AUTHOR = "Yehuda Katz"
0
 EMAIL = "ykatz@engineyard.com"
0
 HOMEPAGE = "http://merb-plugins.rubyforge.org/merb-test_unit/"
0
@@ -20,7 +20,7 @@ spec = Gem::Specification.new do |s|
0
   s.author = AUTHOR
0
   s.email = EMAIL
0
   s.homepage = HOMEPAGE
0
- s.add_dependency('merb-core', '>= 0.9.1')
0
+ s.add_dependency('merb-core', '>= 0.9.2')
0
   s.require_path = 'lib'
0
   s.autorequire = PLUGIN
0
   s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,test_unit_generators}/**/*")

Comments

    No one has commented yet.