Phlip
2008-Mar-25 23:49 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
The "invoice_tracker" app is giving me "uninitialized constant MERB_FRAMEWORK_ROOT", so I gotta figure that''s for Merb Classic. Is there a "reference project" out there that inspires feature requests for Merb 0.9? -- Phlip
Ezra Zygmuntowicz
2008-Mar-26 00:01 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
The blerb blog app is pretty up to date with the latest stuffs: http://github.com/hornbeck/blerb-core/tree/master -Ezra On Mar 25, 2008, at 4:49 PM, Phlip wrote:> The "invoice_tracker" app is giving me "uninitialized constant > MERB_FRAMEWORK_ROOT", so I gotta figure that''s for Merb Classic. > > Is there a "reference project" out there that inspires feature > requests for Merb 0.9? > > -- > Phlip > > _______________________________________________ > Merb-devel mailing list > Merb-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/merb-devel
Phlip
2008-Mar-26 02:36 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
Ezra Zygmuntowicz wrote:> The blerb blog app is pretty up to date with the latest stuffs: > > http://github.com/hornbeck/blerb-core/tree/masterOookee got the latest gems (mostly 0.9.2!) and I git-ted the latest merb-core from the git thing and installed it... What''s this? $ rake ... --format specdoc --colour failed /usr//lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake/spectask.rb:184:in `define'' /usr//lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake.rb:1003:in `verbose'' Installing gems with ''color'' in their names don''t help. -- Phlip
Luis Lavena
2008-Mar-26 02:55 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
On Tue, Mar 25, 2008 at 11:36 PM, Phlip <phlip2005 at gmail.com> wrote:> > Oookee got the latest gems (mostly 0.9.2!) and I git-ted the latest merb-core > from the git thing and installed it... > > What''s this? > > $ rake > ... --format specdoc --colour failed > /usr//lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake/spectask.rb:184:in `define'' > /usr//lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake.rb:1003:in `verbose'' > > Installing gems with ''color'' in their names don''t help. >Do you have rspec installed too? -- Luis Lavena Multimedia systems - Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so. Douglas Adams
Brian LeRoux
2008-Mar-26 07:16 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
Brock Whitten''s pmpknpi blog app is worth checkin out / forking around with. http://github.com/sintaxi/pmpknpi/tree/master On Tue, Mar 25, 2008 at 7:55 PM, Luis Lavena <luislavena at gmail.com> wrote:> On Tue, Mar 25, 2008 at 11:36 PM, Phlip <phlip2005 at gmail.com> wrote: > > > > Oookee got the latest gems (mostly 0.9.2!) and I git-ted the latest merb-core > > from the git thing and installed it... > > > > What''s this? > > > > $ rake > > ... --format specdoc --colour failed > > /usr//lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake/spectask.rb:184:in `define'' > > /usr//lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake.rb:1003:in `verbose'' > > > > Installing gems with ''color'' in their names don''t help. > > > > Do you have rspec installed too? > > -- > Luis Lavena > Multimedia systems > - > Human beings, who are almost unique in having the ability to learn from > the experience of others, are also remarkable for their apparent > disinclination to do so. > Douglas Adams > > > _______________________________________________ > Merb-devel mailing list > Merb-devel at rubyforge.org > http://rubyforge.org/mailman/listinfo/merb-devel >
Phlip
2008-Mar-26 07:54 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
Luis Lavena wrote:>> $ rake >> ... --format specdoc --colour failed >> /usr//lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/rake/spectask.rb:184:in `define''^>> /usr//lib/ruby/gems/1.8/gems/rake-0.8.1/lib/rake.rb:1003:in `verbose'' >> Installing gems with ''color'' in their names don''t help.> Do you have rspec installed too?I thought I answered that in my post! Also, I''m aware --colour didn''t fail, the entire ruby -I"blah blah blah..." command failed! Yet something in rake --trace threw away the e.message part of the exception, and only gave the backtrace... -- Phlip
Phlip
2008-Mar-26 08:48 UTC
Where''s a canonical sample app, like a blog or wiki, showing Merb 0.9 in action?
Brian LeRoux wrote:> Brock Whitten''s pmpknpi blog app is worth checkin out / forking around with. > > http://github.com/sintaxi/pmpknpi/tree/masterTx! Now that contained this issue: ./config/init.rb:require ''BlueCloth'' That line needs the lecture on case sensitive filenames. require ''RedCloth'' needed it too! Next... $ rake spec (in /home/phlip/projects/merb/sintaxi-pmpknpi-master) /usr/lib/ruby/gems/1.8/gems/rspec-1.1.3/lib/spec/runner/options.rb:195:in `files_to_load'': File or directory not found: spec/_spec.rb (RuntimeError) Googling for that gives one pastie entry. Someone fixed something before posting their pastie to a forum! But the _spec.rb looks more like a missing %replacer% than a cleverly-named config file or something... -- Phlip