0
votes
0answers
18 views

Datamapper:Heroku (Sinatra) DataObjects::SyntaxError - ERROR: relation “jobs” does not exist

I am writing a Sinatra DB based app with Datamapper and deploy to heroku. This is the model: class Job include DataMapper::Resource property :id, Serial, :key => true property :user_id, ...
1
vote
1answer
33 views

How do I reference a tiny_tds connection in ruby/sinatra via database.yml (or other)?

I'm trying to figure out how to pull data from a database without the need to place a connection string at the top of each ruby file. I'm learning the basics of ruby via a little Sinatra app I'm ...
2
votes
0answers
34 views

SASS in Sinatra: couldn't set custom directory

I've read Sinatra SASS custom directory and Sinatra custom SASS directory . But it doesn't work for me. I write this app: require 'sinatra' require 'sass' require 'slim' configure do set ...
0
votes
0answers
39 views

Sidekiq Sinatra Error load() expected a String or IO Object

I'm using Sidekiq in my rails app for queuing. When I try and setup the UI I get this error: ArgumentError at /sidekiq/ load() expected a String or IO Object. file: oj.rb location: load line: 19 ...
0
votes
1answer
20 views

MongoMapper with Padrino Forms Select

I am using mongomapper inorder to associate 2 models together in a one-to-many relationship. I want to show the ids of one model into the other models in the padrino admin section. I am trying to ...
1
vote
1answer
53 views

How to render views count by browser in Sinatra and Datamapper?

I have View and Link models Link has_many :views View belongs_to :link irb(main):001:0> View.all => [#<View @id=1 @link_id=1 @browser="Chrome" @created_at=#<DateTime: ...
0
votes
2answers
65 views

Sinatra static assets empty

I have a Sinatra app in a Rails app that serves a static asset from a directory. The app is mounted in the Rails routes like this: mount BeanstalkdView::Server, :at => "/beanstalk" When I run ...
2
votes
1answer
64 views

Cannot access sinatra app through the local network

I have rails application. If I start it with rails s (port 3000), it works perfectly both on my machine and every device on my local network via the ip address (192.168.0.3 in my case). I have sinatra ...
0
votes
1answer
45 views

Sinatra cookies resetting between routes

so i'm trying to pass some strings through cookies between routes, but they keep getting reset and they don't get passed along. here is my code: post '/start_game' do @game = TicTacToe::Game.new ...
2
votes
1answer
56 views

How to test Mailer on Sinatra post request?

I have Sinatra app which sends email on post request: post '/test_mailer' do Pony.mail( to: 'me@mine.com.au', from: 'me@mine.com.au', subject: 'Howdy!', body: erb(:body) ) end So ...
0
votes
2answers
94 views

How do I do a method call every x seconds?

Is there a simple library that will allow me to do schedule a very simple task every x seconds specified by the web request coming in? I am looking for something along the lines of: ...
-1
votes
1answer
28 views

Rendering child nodes without the node label in rabl

I am using rabl to build and API in Sinatra. The required JSON des not accept labels in some nodes Using this Rabl template: object @user attributes :profile_photo => :profile_photo, :name => ...
2
votes
4answers
78 views

How will be the best way to render array of arrays in erb template?

I have an array [["Company Name", "Field6"], ["Email", "Field5"]] And from that array I am creating array of fields with values: [ [{:label=>"Company Name", :value=>"gfdgfd"}], ...
0
votes
1answer
43 views

Rails/Sinatra gem for time alerts

I have a web app which is suppose to allow users to set timers and it will notify them (via push notification) when the time is up. The user can also cancel these timers at any time. Is there a gem ...
2
votes
1answer
44 views

Loading local gems through Bundler and mounted apps

I'm creating a gem (let's call it mygem) that is essentially a Sinatra server intended to be mounted within Rack based apps. Inside my gem's gemspec file, I have the following: gem.add_dependency ...
1
vote
0answers
106 views

How can my Sinatra API manage user logins in client apps?

I'm building an API using Sinatra, which should be able to manage the user login sessions for any of the client apps that send requests to it. So far (for the login functionality) what I've got is a ...
0
votes
2answers
53 views

Why does the JSON returned from my Sinatra App give a syntax error?

I'm developing a Sinatra app, which returns JSON, e.g. get '/clients' do # do stuff response = { "success" => "true", "msg" => "Clients successfully retrieved", ...
0
votes
1answer
46 views

How do I execute this command (curl) in rails? That is, what library contains a tool that allows me to pass an API key this way?

Here's the command I need to execute: (using the example API key) curl -v -u 1971800d4d82861d8f2c1651fea4d212:api_token \ -X GET https://www.toggl.com/api/v8/workspaces/777/tasks I am writing a ...
0
votes
3answers
54 views

How to test controller actions that require a current session?

I'm adding more controllers to the admin section of the Padrino but I can't workout how to stub the current user or a session with Factory Girl or Mocha. What is a good way for testing controller ...
0
votes
2answers
77 views

Haml partial with Sinatra

I am referencing a HAML partial within Sinatra: = haml :'_review', :locals => {:someLocal => someLocal} Seems like I am doing this wrong as I am including the underscore in the partial name. ...
1
vote
0answers
146 views

Rails 3.2 Sinatra mounted app JSON Parse errors

I have a sinatra app mounted inside a rails 3.2.12 app which accepts JSON posts. The problem is that I get an error when one of the strings contains an asterisk(*) or a harsh(#) symbol. These are ...
0
votes
1answer
106 views

when is it most appropriate to use a micro framework? (instead of something like rails, django or catalyst) [closed]

I have spent some time familiarizing myself with rails (ruby), django...and other things like zope and pylons/pyramid (python), catalyst (perl) but often find myself wanting to use sinatra (ruby) ...
0
votes
1answer
67 views

stll no users table after migrating

I'm working along with the book Service Oriented Design with Ruby and Rails. In the first chapter, it creates a service with a Sinatra application using active record. I created the active record ...
0
votes
1answer
63 views

Calling to_json on an array with different methods on each object

I have a sinatra service returning a json array of objects to my rails app. The objects are all of different types. I'm trying to pass the :methods option to the to_json call, but each object needs ...
0
votes
2answers
76 views

Why does active_support requires sinatra

I don't use sinatra anywhere in my app, its not clear why activesupport mandates needing sinatra. How should I avoid this problem ...
0
votes
1answer
47 views

Two SQL queries in one with ActiveRecord, or in SQL

I'm currently using ActiveRecord to paginate items with: def index params[:per_page] ||= 50 @articles = Article.limit(params[:per_page]).offset(params[:page].to_i * params[:per_page].to_i) ...
0
votes
0answers
133 views

Sending push notification from google calendar

I need to create an app in ruby that sends push notification to a server when a new event is created in google calendar. the application should not search calendar for new events, but it should get a ...
0
votes
1answer
93 views

sinatra javascript call

In rails, it is possible to set :remote => true to make a remote call to the web application. One can then respond with a .js.erb to changes elements. How would I create this in Sinatra? I want to ...
0
votes
1answer
53 views

Can you convert a Rails app to Sinatra on Heroku

Does anyone know if there is any issues with converting a Rails app to Sinatra with Heroku? I already have a Heroku app running and it is currently a simple Rails app that is basically a few views and ...
0
votes
4answers
77 views

Resource Generators in Sinatra

I have developed few apps in Rails, and I needed to develop an API. I received the advise to build it in Sinatra, so I started looking into it. It seemed quite nice, but it seems that a lot of ...
0
votes
1answer
101 views

Identifying and differentiating among workers when using Backburner for Beanstalkd

I'm trying to use Backburner (a Ruby client for Beanstalkd) in my application to create, say, 50 workers all watching the same tube for incoming jobs. The problem is, each of those 50 workers, when ...
1
vote
2answers
93 views

Issues with 'require' when loading Rails models in a Sinatra app

I've embedded (or at least I think I've embedded) the rails models from my acme app into my Sinatra app using the following code, based off of a sample I had found on someone's blog. The rails app is ...
1
vote
0answers
39 views

Ruby(rails/sinatra) + EJB jar packaged to EAR on Torquebox

I'm trying to wrap my head around torquebox deployment options. I have old application with well-separated core business logic (in jar archive: cdi, ebj and all that stuff). I'd like to write frontend ...
0
votes
0answers
91 views

Sinatra to Padrino

Sinatra is so far with my experience a very cool alternative to Rails, but I am curious in finding out when it would be smart using Padrino. I know Rails has the features, Sinatra has the simplicity ...
4
votes
3answers
158 views

before filter in sinatra subapplication

I've got a Rails app and a Sinatra app inside it: routes.rb: mount MySinatraApp => "/streaming" sinatra app: class MySinatraApp< Sinatra::Base ... before do puts 'hello from ...
1
vote
2answers
181 views

Adaptive images for ruby based servers

I'd like to deliver images to client based on the size of the user screen, as in If I have High resolution image, and the user want to view it on a mobile I don't want to send the full HD image, ...
0
votes
1answer
86 views

Setting up Firefly (ruby link shortener) 2.0 on Heroku?

I have a working install on my local machine, but was unable to do the same on heroku. The only changes I've made: change hostname in firefly.yml to rxlcc.herokuapp.com comment out other dbs in ...
0
votes
1answer
814 views

`require': no such file to load — sinatra/base (LoadError) when running a Sinatra app (resque-web)

I'm running the PHP version of Resque and would like to use the Sinatra frontend app that comes with the Ruby version of Resque. (https://github.com/defunkt/resque-web) Problem: On my Ubuntu box, I ...
0
votes
1answer
105 views

Following a Typhoeus post in Rails/Sinatra

I have a scenario where I'm doing a post in Sinatra via Typhoeus in app.rb. It looks like this: post "/send-data" do ... request = Typhoeus::Request.new("http://localhost:4000/renders", ...
0
votes
2answers
180 views

HTML form empty textfield

I have a textfield in a form with name="test". When I enter a value in, my params hash contains that value: params[:test] => "value" However, if I don't enter a value in, my params hash ...
1
vote
2answers
144 views

mass updating attributes

I am using Sinatra but I am guessing this also applies to Rails (if not, please remove the tag or let me know and I will remove it). I have a ActiveRecord::Base class User. It has tons of attributes ...
1
vote
4answers
116 views

How to handle NilClass elegantly

I am trying to avoid NoMethod errors due to NilClass. My code looks like this: @branded, @nonbranded, @unknown, @affiliate, @social, @referral, @paid, @direct, @email = [], [], [], [], [], [], [], ...
3
votes
2answers
88 views

Google OpenID running example of Ruby code?

I went through quite a lot of Rails/Rails examples of Google OpenID authentication, but none of them worked properly. Most of them don't work because they are out of date. Even omniauth doesn't for ...
0
votes
1answer
175 views

Sinatra with Rails reset session every request

I have a rails web application and I need to create API for mobile clients. I choose a Sinatra web framework for this. But I have a problem with my Sinatra app, after every request all data session ...
0
votes
1answer
104 views

How to test a Rails HTTP request to a Sinatra app?

Consider a Rails app that hits a (Sinatra app) API being developed separately from the Rails app. I want to test an API call from within the Rails tests. The API code: post '/foo/create' do ... ...
1
vote
2answers
77 views

Is there a good way to share code beween a Rails App and an API?

We have a Rails App and a Sinatra API with separate codebases. They need to work together with the same database. We can create a record using the API, and then display a page for that record using ...
0
votes
2answers
67 views

to_json wrapping a single object in array?

In my API, I am converting an ActiveRecord object into json via: user.to_json :methods => :new_messages Using irb, when I execute this statement, I get: {someAttr: someValue, ....} which is ...
0
votes
3answers
122 views

REST API for custom action other than PUT/POST/GET

I am writing a REST API that basically gives two resources: Users and Cars. With the API, you can POST/GET each resource. But now I have a custom action that will basically give a new car to a user. ...
1
vote
5answers
130 views

How to manage migrations when multiple apps share the same database in Ruby?

I have a Rails app and a Sinatra app, sharing the same database. The Sinatra app uses ActiveRecord. Can I run migrations from within each app, as if they were in the same app? Will this cause any ...
0
votes
1answer
118 views

Rails / Sinatra SOA architecture internal authentication

I'm currently implementing a Rails and sinatra based architecture and struggling with determining which kind of authentication in terms of data access i should be providing. The services (Sinatra) ...

1 2 3 4 5