public
Rubygem
Description: Extras for DataMapper, including bridges to DataObjects::Migrations and Merb::DataMapper
Homepage: http://datamapper.org
Clone URL: git://github.com/sam/dm-more.git
Search Repo:
Update bootloader class name for new edge merb changes. Thanks Michael 
Klishin.
[#273 state:resolved]
myobie (author)
Sun May 11 19:10:32 -0700 2008
commit  2408e7d6524aaf076680a5451bf42c58793bdb0c
tree    7d8b082e0a49b9d83943442eda8e9c684cc829de
parent  1c386a9640f41075e30fa71e978ae2222d8761f2
...
5
6
7
8
 
9
10
11
...
5
6
7
 
8
9
10
11
0
@@ -5,7 +5,7 @@
0
 
0
   class Merb::Orms::DataMapper::Connect < Merb::BootLoader
0
 
0
- after BeforeAppRuns
0
+ after BeforeAppLoads
0
 
0
     def self.run
0
       Merb::Orms::DataMapper.connect

Comments

  • myabc Wed May 14 10:41:57 -0700 2008

    This is breaking a lot of things for people? Is it right that we’re targeting a released version of Merb—or Merb edge?

  • michaelklishin Wed May 14 10:48:53 -0700 2008

    I breaks Merb application start if you use edge merb with DataMapper.

  • michaelklishin Wed May 14 10:49:12 -0700 2008

    It breaks. Day of typos.

  • sam Wed May 14 13:16:32 -0700 2008

    We should handle both.
    after(defined?(BeforeAppLoads) ? BeforeAppLoads : BeforeAppRuns)