Merb, short for "Mongrel+Erb", is a model-view-controller web framework written in Ruby. Merb adopts an approach that focuses on essential core functionality, leaving most functionality to plugins.
1
vote
1answer
57 views
Getting Permission denied - /mnt/project-name/config/../tmp/ruby-inline/.ruby_inline
I have made changes to my Merb application and deployed those to uat for testing but I am getting
Permission denied - /mnt/project-name/config/../tmp/ruby-inline/.ruby_inline
I checked for the ...
0
votes
0answers
69 views
merb “Unable to resolve dependencies”
So far the only ruby framework I have used is Rails and I wanted to shop around a bit and give some other frameworks a try.
I tried installing merb with all development / testing gems using gem ...
1
vote
0answers
44 views
javascript and css response return 404 in merb application
I'm trying to setup a merb application now trying to start the merb as normal rack
application using either by thin , unicorn or plainly using rackup the html content are
returned but the ...
0
votes
2answers
185 views
merb cannot load dm-mysql-adapter
Would you help me on this issue?
gem list shows that dm-mysql-adapter has been installed, but merb cannot load it.
I just want to start a simple merb application generated by merb-gen.
Loading init ...
1
vote
1answer
320 views
Chef API server behind Apache reverse HTTP proxy returns http instead of https links
I have a chef server running on a machine (listening on port 4000), and I'd like to access it over SSL. I've set up an Apache reverse proxy to do so (listening on port 4001). The Apache setup looks ...
0
votes
1answer
272 views
Datamapper 'belongs_to / has n' ignoring :required => false
I recently inherited an old merb app that uses datamapper as its orm. I'm not too familliar with DM so there is probably something obvious I'm overlooking. I have a simple relationship between two ...
3
votes
1answer
232 views
Multi tenancy with Merb, DataMapper and CouchDB (or MongoDB)
Does Anyone know to achieve, or have any resources about, muti tenancy involving these technologies?
Additionally, is it recommendable to store sensitive data in a relational database and other kinds ...
0
votes
1answer
89 views
merb - no such file to load lib/exceptions
I'm maintaining an old merb applications (merb 1.1.3). I recently switched to ruby 1.9.2 (via rvm) and did a bundle install successfully.
Now when I try to run the applications I get an error. no ...
3
votes
1answer
456 views
No such file to load — spec in merb
I have created an app in merb. My Gemfile has
gem "rspec", :require => "spec"
If I run the rake -T or rake routes, my rake task is aborted with the above error.
If the gem is not mentioned in ...
1
vote
3answers
129 views
Moving on from Merb - where can I find a home?
I moved my application off of Rails early in 2009 because I didn't need or want all of the features in that framework (ORM, MVC etc) and didn't like the large footprint we were generating (200Mb). ...
1
vote
0answers
121 views
Migrate from Merb to Rails3
What is the best way to migrate from Merb to Rails3 ,i had a look at merb-to-rails3
gem but i don't thing only with that gem i can completely migrate because the helper methods the gem provides are ...
1
vote
2answers
1k views
RVM, Merb, Rake and RSpec
I am currently running ruby-1.9.1 installed via RVM. I have been looking at using Merb, but when I try and run it I get this error:
sam@shiny-dev:~/Projects/mojo$ rake db:migrate
(in ...
1
vote
2answers
2k views
Merb, Bundler, RVM and 1.9.1 = Could not locate Gemfile (Bundler::GemfileNotFound)
Can anyone suggest how to fix this (Ubuntu 9.10):
/home/chris/.rvm/gems/ruby-1.9.1-p378/gems/bundler-0.9.26/lib/bundler/shared_helpers.rb:42:in `default_gemfile': Could not locate Gemfile ...
1
vote
0answers
231 views
Mixed dynamic routes in Rails/Merb
Im trying to figure out the best way to map simple routes into one url. Application contains of 4 models: Location, Category, Budget, Company. But each model could be mapped to single url like this. ...
0
votes
1answer
261 views
If SASS is part of HAML, why do I need Compass in Merb?
This is a theoretical question as much as a practical one. I just can't wrap my head around how all these technologies mesh...
I have heard various things including:
"HAML and SASS are included in ...
0
votes
0answers
626 views
Problem with rake jobs:work
while i am running rake jobs:work.
I am getting this error.
** Invoke jobs:work (first_time)
** Invoke merb_env (first_time)
** Execute merb_env
** Invoke environment (first_time)
** Execute ...
1
vote
2answers
82 views
sqlite is required for merb?
I have a question regarding merb dependency with sqlite. I am going to install merb on my m/c and I don't have sqlite installed on my m/c . I tried this command "gem install merb" and saw following ...
0
votes
1answer
44 views
How do I generate a view from the console/script-runner in merb?
I'd like to generate a lot of merb views (around 350.000) and save them to separate files programmatically (they will actually be XML files). One option would be to simply wget them, but that is too ...
2
votes
2answers
361 views
Something like Merb Parts in Rails 3?
Is there anything like Merb Parts in Rails 3 out there now?
I've seen Rails Cells, but felt like nobody was using them.
What are your thoughts? Are these suitable for widgets?
-1
votes
1answer
248 views
Problem loading activemerchant using Bundler
I am using Merb. I can't seem to get activemerchant to load using Bundler. All my other gems load fine.
In my Gemfile I am using:
gem 'activemerchant', :require => 'active_merchant'
Here is ...
1
vote
3answers
363 views
Problems with Merb on Snow Leopard
I've recently started looking at Merb, for use with some small projects around the office. I'm trying to set up my first project following the docs, and am encountering an exception such as:
foo:beta ...
0
votes
1answer
589 views
Net::HTTP::Unauthorized - how do I get at the WWW-Authenticate header?
Given the code below ...
Net::HTTP.start('localhost', 4000) do |http|
#
# usual stuff omitted for clarity
#
@response = http.request(req)
end
... if a (well behaved) server ...
3
votes
2answers
137 views
RFC2616 : Do I really need to set WWW_Authenticate when returning 401?
According to RFC2616 if I return 401 in response to a request to my (Ruby) server, I "MUST include a WWW-Authenticate header field." Is this really true? Not setting the header seems to have no ...
4
votes
2answers
297 views
Destroying nested resources in restful way
I'm looking for help destroying a nested resource in Merb. My current method seems near correct, but the controller raise an InternalServerError during the destruction of the nested object.
Here ...
12
votes
3answers
12k views
In Rails 3, how does one render HTML within a JSON response?
I'm porting an application from Merb 1.1 / 1.8.7 to Rails 3 (beta) / 1.9.1 that uses JSON responses containing HTML fragments, e.g., a JSON container specifying an update, on a user record, and the ...
0
votes
1answer
78 views
Tell Merb not to timeout
after posting a question related to nginx, I'm a bit further with my investigations: The problem is, that the merb framework timeouts after about 30 seconds. If i tell the underlying nginx-server not ...
1
vote
0answers
83 views
Merb multidomain session cookie
Is there a way to set session cookie work for all subdomains (e.g. *.domain.com) from Merb configuration file (config/init.rb)
Looking for something like
Merb::Config.use do |c|
...
3
votes
2answers
134 views
What can I expect as the core stack for Rails 3.0 and what will I need to include now as a plugin
So Rails and Merb are sort of merging in Rails 3.0? Thats how its been described to me anyway. This means that a lot of what made Rails, Rails will now be moved to plug-ins so that it can be more ...
6
votes
5answers
615 views
Starting with Ruby 1.9.x, Rails 3, and/or Merb
I need to spend some serious time reading about changes in Ruby 1.9.1 and upcoming Rails 3/Merb. Can people suggest any articles to read?
Not really looking for one answer, just kinda looking for a ...
3
votes
3answers
567 views
How many Ruby threads is too many?
I'm coding a Merb application which uses a combination of SimpleDB and Tokyo Tyrant for storage. For both of these data stores I'm implementing IN (list) type-functionality by spinning up a thread for ...
0
votes
1answer
792 views
Autocomplete with Vim and Rails Datamapper
Is there a way that I can have auto completion in Vim after I load a model from the database?
So for example if I have a model of type Foo with an instance method of type bar and do the following
foo ...
5
votes
1answer
2k views
Ruby Datamapper table inheritance with associations
I started learning Datamapper and what I liked about it was that I can write my models with real inheritance.
Now I wonder, if it is possible to be more advanced about this:
class Event
include ...
0
votes
1answer
676 views
undefined method merge
merb datamapper seems to be broken.
$ merb
Loading init file from /home/kristian/workspace/ruby/nightly/config/init.rb
Loading /home/kristian/workspace/ruby/nightly/config/environments/development.rb
...
1
vote
1answer
89 views
merb callbacks equivalent in RAILS
Is there rails equivalents for :
Merb::BootLoader.after_app_loads
Merb::BootLoader.before_app_loads
Merb::Assets::JavascriptAssetBundler.add_callback
...
1
vote
1answer
861 views
What is the proper way of handling xml-stylesheet :xmlns:blah with haml?
I'm trying to hook up a blog with some xml namespaces and xml stylesheets.
The ugly way that I'm doing this currently looks like so:
!!! XML
= partial('xmlstyle')
%channel
......blah.....
= ...
7
votes
1answer
2k views
What's the most commonly used unit testing framework for different types of Ruby applications?
Are the same unit testing frameworks used for different web frameworks - Rails, Merb, Sinatra, Ramaze and desktop frameworks - Shoes?
And what is the most widely used unit testing framework that ...
2
votes
2answers
417 views
PubSubHubbub for a blog in Ruby (Merb)
I am writing my own blog (every one should, it's good experience). I have implemented Atom and RSS feeds, and they are used by a number of readers. Most of those readers are using Google Reader, who ...
0
votes
1answer
195 views
Merb Router: how to return a 406 error
Is it possible to have the router return an error code (or an entire rack response) in response to a matched route?
E.g. I have move from WordPress to a home grown blogging solution. Search engines ...
3
votes
2answers
1k views
Headless replacement of selenium and watir for testing Rails and Merb applications
Are there any future plans to replace selenium and watir with mechanize + johnson?
http://wiki.github.com/jbarnette/johnson
http://wiki.github.com/tenderlove/mechanize
1
vote
4answers
300 views
Good framework for Ruby web development
Basically I am java developer and exploring ruby and ruby related framework right now. I am mostly working on web based projects. I had heard about RoR and Merb for web development in ruby. I am ...
2
votes
2answers
680 views
How to test AJAX request with Merb and Webrat?
I am using merb with rspec and webrat. How to ensure that rjs template was successfully rendered? I cannot just write have_xpath because of ajax.
0
votes
1answer
193 views
Merb authentication question
My application has user part and /admin part. There are 2 models Account (like a customer) and Admin, and I should authenticate account and admin separately. Admins should not access account's part ...
0
votes
1answer
211 views
Testing authenticated file uploads in merb
This is something that has been driving me mad over the past few days. I have an action which allows authenticated users to upload assets to the site. I know that the controller action is correct as I ...
0
votes
1answer
68 views
text search to distinguish rails projects from other types of ruby web applications - merb/sinatra/ramaze
If I want to perform a search on a directory that contains thousands of different ruby web applications and I want to find only those directories that contain rails projects, what text would I need to ...
0
votes
2answers
114 views
Controlling Merb authentication errors
Hey there, im a little bit confused about handling invalid user authentication request, at login controller. So, i already have modified login view, but cant figure out where to put the exception ...
0
votes
1answer
181 views
Rails development with v3 merb merger in mind
I'm in the preliminary stages of designing a new web application, and have yet to begin any sort of implementation. The application models a fairly complex domain, and I'd feel more comfortable using ...
3
votes
2answers
123 views
Caching best practiced in Merb
Im a beginner in Merb, so want to know, what is the best practices to cache data?
For example i have a page that shows list of books, that changes not really often, so im looking for a way to cache ...
0
votes
1answer
100 views
Merb authentication question, _message variable
Im using merb, and getting weird variable in url after authentication. I figured out that variable contains base64 encoded data, but cannot understand why its appearing there, even if everything works ...
1
vote
1answer
119 views
Storing Application Text: Inline vs. Separate File
I'm working on a Merb application using Haml as the templating language. As haml encourages moving logic out of the view and into helpers, I soon started thinking about removing the copy / text from ...
0
votes
2answers
838 views
Are hundreds/thousands of tcp sockets reasonable with memcached?
I'm using Merb::Cache for storing txt/xml and have noticed that the longer I leave my merbs running the larger the amount of open tcp sockets I have open -- I believe this is causing some major ...