Tagged Questions
0
votes
1answer
16 views
Mongoid has_many relationship causes Rack cookie error in Sinatra
Writing an application using Mongoid 3.1 and Sinatra in Ruby 1.9.3. I have a model called Order that has_many Items. Whenever I try to append an Item to an Order.items, I run into problems. I have the ...
1
vote
0answers
34 views
Mongoid error in heroku: Database should be a Mongo::DB, not a nil class
I have a Sinatra app on heroku and it keeps crashing due to this error:
app/vendor/bundle/ruby/1.9.1/gems/mongoid-1.2.14/lib/mongoid/config.rb:52 in 'master': Database should be a Mongo::DB, not a ...
1
vote
0answers
31 views
Is there a better way to do it? ( Mongoid + TaggableWithContext )
is a few days I'm trying to learn how to use MongoID and I found myself faced with a problem:
there is a better way to do this?
Group.find_by(name: params[:group]).subgroups.tags.each do |l|
...
0
votes
0answers
61 views
Testing Sinatra application with RSpec and Cucumber/Capibara
I need to test my Sinatra application by RSpec and either Cucumber or Capybara. RSpec is the most important. I run through a few Sinatra examples of how to test and found them mostly either outdated ...
0
votes
1answer
78 views
How do I perform a $geoIntersects query with Mongoid?
I'm using Sinatra and mongoid driver, now I'm trying to perform this query in mongoid, actually I have a geospatial (Polygon) field called 'geometry':
db.states.find({
geometry: {
...
1
vote
2answers
77 views
Extending all my Mongoid documents with an instance method
I want to extend all my Mongoid::Document's with an instance method. Instead of making a module and including it to each Mongoid::Document I want to extend, there should be another way.
For example, ...
0
votes
0answers
55 views
How do I include internal items in json object?
I want to return json object as a list of items in Sinatra application. For this I'm using gem 'json'. Here is the code
get '123' do
# .....
test = items[0].internal_item.data1 # correct ...
1
vote
1answer
39 views
Mongoid - set a field to true for at least one document
I want there always to be at least one document in database which has a field titled "selected" set to true. How do I do that? Most probably I have to use callbacks, but which one: before (or after) ...
0
votes
0answers
66 views
Why does Mongoid on Heroku timeout with find_by works but works with where?
I am having some strange behavior with Mongoid.
Person.find_by("name" => params["name"])
times out with code=H12 desc="Request timeout", but this works:
Product.where("name" => ...
0
votes
1answer
52 views
Scopes and the methods those do the same thing
I want to define 2 methods in Mongoid: expensive? and the scope for it. Here is what I'm doing:
class MyItem
include Mongoid::Document
include Mongoid::Timestamps
# it could find expensive and ...
0
votes
1answer
35 views
Nesting AND and OR operation with MongoID
I'm trying to figure out how to nest an AND and OR operation with MongoID, like so (taken from something that I used to use with MongoMapper):
{
:$and=> [
{
:$or => [
...
1
vote
1answer
203 views
mongoid uninitialized constant CarrierDomain (NameError)
I found another similar question and think I'm following the referenced directions from here but am still coming across this error.
As per the instructions I'm calling ...
0
votes
0answers
209 views
sinatra + sinatra-authentication + mongoid: which versions?
I'm prototyping a REST service with sinatra + mongoid. While looking for an authentication module, it looked like that sinatra-authentication was doing what I require from it. My problem is that I ...
3
votes
1answer
608 views
Mongoid sessions not found
Trying out a Sinatra | Mongoid 3. I run into the following error, whenever I attempt to save to the database.
Mongoid::Errors::NoSessionsConfig:
Problem:
No sessions configuration provided.
...
1
vote
0answers
100 views
Mongoid performance measuring
I'm building a web app using Mongoid, Sinatra and Rspec for testing.
What kind of technique or gem can be used with this stack to measure performance of queries?
0
votes
1answer
47 views
Many to many in Mongoid
Yes, I know how to create many to many relationships but nothing else. I did a google search and read official mongoid documentation but I didn't anything about how to work with it. By work I mean ...
2
votes
2answers
1k views
Sinatra, Mongoid, Heroku, MongoHQ: connecting to Mongodb
Trying to get Mongoid up and running with Sinatra on Heroku (MongoHQ). Previous experience with Rails but first time with the stack and Sinatra.
Started with one of the simple examples on the web ...
3
votes
1answer
396 views
Upload with paperclip, sinatra and mongoid
I have a problem using the paperclip with sinatra and mongoid.
When I upload displays the following error:
Paperclip::AdapterRegistry::NoHandlerError - No handler found for {"tempfile"=>#, ...
2
votes
1answer
240 views
Very slow running as_json (Mongoid + Sinatra)
I'm using Sinatra (1.3.2) with Mongoid (2.4.10). I'm noticing that it is taking a VERY long time to convert about 350 mongo documents to JSON.
I added a few benchmark wrappers just to see what is ...
0
votes
1answer
201 views
Getting an object from mongoDB with Mongoid
Simple enough situation. I've got a MongoDB database with a bunch of information from a previous developer. However I have limited information on the model that came before hand and I DONT have access ...
0
votes
1answer
143 views
Mongoid does not complain if I insert a object with duplicate _id
I have a Sinatra/Mongoid application and I noticed that my mongoid model/object does not complain or error out if I try to insert a duplicate _id object. The object.errors collection is empty as well.
...
1
vote
1answer
180 views
Persisting mongoid parent document and embedded documents from Haml on Sinatra
I have the following model:
class Entry
include Mongoid::Document
field :title, type: String
field :description, type: String
field :made, type: Date
embeds_many :images
embeds_many ...
0
votes
1answer
40 views
Value of atomizing class field?
Consider the following Mongoid Model
class Doc
include Mongoid::Document
field :name, type: String
embeds_many :images
embeds_many :videos
end
class Image
include Mongoid::Document
field ...
0
votes
1answer
307 views
sinatra + mongoid
I'm creating an app that use sinatra + mongoid. I have two models, contact has many phones. To test my sinatra controller I post my data with this command `
curl -X POST -d ...
1
vote
1answer
373 views
Querying nested embedded documents with mongoid (or alternative)
I currently store a series of tweets as documents in mongodb the schema of which directly map to the json returned by the streaming API.
The schema is very verbose with many nested embedded documents ...
2
votes
1answer
144 views
Sharing MongoHQ database between Sinatra and Rails applications in Heroku
I have a Sinatra and Rails 3 applications. Applications were created independently and are hosted in 2 separate Heroku instances. So I need a share one MongoHQ database to both applications. How can I ...
1
vote
2answers
575 views
Mongoid: (Replication) configuration file yml not loaded
development:
hosts: [[database_1.mongolab.com, 12345], [database_2.mongolab.com, 12345]]
database: database_name
username: database_user
password: database_pass
persist_in_safe_mode: true
...
0
votes
0answers
47 views
what's the difference between “p data” and “data.to_json”
Env :
ubuntu
sinatra
mongoid
And my question is :
I have blog,and post model like:
class Blog
include Mongoid::Document
fields ~
has_many :posts
end
class Post
include ...
2
votes
1answer
370 views
using mongoid on sinatra , model inheritance causing “uninitialized constant” modelname (parent class)
I'm using Mongoid on Sinatra . And I use
Dir.glob(File.join(File.dirname(__FILE__),'models','*.rb')).each do |file|
require file
end
to load mongoid model files.
I tried to add a model B inherit ...
11
votes
3answers
2k views
Why am I getting the error “db_name must be a string or symbol”?
Quick version (for those familiar with Mongoid & Sinatra): If it's not the Psyche/Syck YAML-parsing issue, why else might I get this error when trying to connect to a MongoDB database using ...
2
votes
1answer
579 views
Mongoid doesn't delete Mongo objects
I am using Sinatra and Mongoid to access a MongoDB. Most of it works well except when I try to delete an object, the object gets deleted but appears to remain in the database.
u = ...
1
vote
2answers
421 views
Mongoid query using Geocoder
I've been going through the mongoid docs, Geocoder docs and have asked a friend, but am still a little stuck on this. I've got two Models, Event and Place:
class Event
include Mongoid::Document
...
0
votes
1answer
298 views
How can I handle Mongoid errors in Sinatra?
Is it possible to write an error handler in my Sinatra app that will handles errors coming from Mongoid? For example, can I write a method that will handle a DocumentNotFound exception from Mongoid?
1
vote
1answer
589 views
How to turn on mongoid logging in console with sinatra?
I put next line:
Mongoid.logger = Logger.new($stdout)
but nothing happens. I want to see mongoid logging information in my console after each request. Thank you.
2
votes
1answer
547 views
sinatra-authentication gem not looking for correct views?
I am attempting to write a small blogging engine for myself in sinatra and mongoid and am trying to use the sinatra-authentication gem to do login/out.
I have gotten sinatra, mongoid, and haml all ...
5
votes
1answer
2k views
Carrierwave - Error when processing images
The problem is the following error which is thrown on mongoids save! action.
Mongoid::Errors::Validations: Validation failed - Img failed to be processed.
...
0
votes
1answer
171 views
How connect to db depending on @request.host value?
How connect to different db depending on @request.host value?
Using Sinatra and MongoDB with Mongoid.
I need to read a Sintra application's menu, data ... from different databases. I wish to deploy ...
2
votes
1answer
717 views
Sinatra Mongoid String not valid UTF-8
I wrote this little application :
require 'rubygems'
require 'sinatra'
require 'bson'
require 'mongoid'
Mongoid.configure do |config|
name = "articles"
host = "localhost"
config.master = ...