Tagged Questions
0
votes
0answers
26 views
Can we apply dashing for rails application
Now I am dealing with dashing from here http://shopify.github.io/dashing/ I created an dashing app using Sinatra and I added some more 3rd party API's everything is working well. Now I want to run the ...
2
votes
1answer
44 views
Returning gzipped content on a Sinatra app
I have a Sinatra app inside a RoR3 app.
I defined a Sinatra module and added the following redirect in my RoR3 routes
match '/v2', MySinatraModule, :anchor=>false
My Sinatra app is serving all ...
0
votes
1answer
51 views
convert ruby api to a rest api web app [closed]
I have with me a ruby app that basically is an API server- calls can be made to that server's IP address and port- to access this app.
Now, I wish to convert this into a regular ruby web app- which ...
0
votes
2answers
58 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
0answers
55 views
Rails NoMethodError at /delayed_job/overview
Iam using Delayed Jobs in my Rails application deployed on Heroku and want to integrate the Delayed Job web view in my app. Iam refrencing the DelayedJobWebView to integrate the delayed job overview.
...
0
votes
1answer
101 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
927 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
60 views
Logging Closures and non Sinatra classes
I am new to Ruby and Sinatra and trying to access logger object inside closures (EM.run do .. end).
Here is extracts from working code where logging statements with messagge "LOGGER IS NOT ACCESSIBLE ...
2
votes
1answer
4k views
How do CORS and Access-Control-Allow- Headers work?
I'm trying to make CORS request POST from domain.com to a.domain.com.
My javascript looks like this
$('#fileupload').fileupload({
xhrFields: {
withCredentials: true
},
...
2
votes
2answers
90 views
Override view templates in a Sinatra app mounted on Rails?
I have a 3rd-party Sinatra(1.3.3) application which I mount in my Rails(3.2.8) router. But I'd like to override the page templates so it looks in line with the other parts. How can I tell Sinatra to ...
0
votes
1answer
200 views
Signed cookies from Rails app to Sinatra App
I have two applications, one is a Sinatra app and another is a Rails app. I have set signed cookies in the Rails app and I need to send that cookie from the browser to Sinatra.
The question is how ...
0
votes
0answers
144 views
building api server and client stack - MUST or SHOULD client requests be in JSON format?
I am building a REST JSON API server stack.
Expects the API server to be accessed by desktop applications, smartphone applications, desktop browsers, smartphone browsers, backend webservices and AJAX ...
122
votes
10answers
15k views
Separate REST JSON API server and client?
I'm about to create a bunch of web apps from scratch. (See http://50pop.com/code for overview.) I'd like for them to be able to be accessed from many different clients: front-end websites, smartphone ...
1
vote
0answers
134 views
Resque error - /sinatra_adapter.rb:50:in `included': undefined method `before' for Sinatra::Request:Class (NoMethodError), when i start the rails app
I get error when I start the rails app. Just to give more information what I have done
routes.rb has
mount Resque::Server, :at => "/resque"
Gemfile has
gem 'rails', "~> 3.2.0"
gem 'resque', ...
0
votes
1answer
330 views
Could not find json-1.6.5 in Jenkins CI
I have a Jenkins CI server and when I run following build script I get errors:
rdoc spec
Here is the errors:
/usr/bin/ruby1.9.1 -S rspec spec/requests/home_spec.rb
...
1
vote
3answers
105 views
How to incorporate a Rails 3.1.x database into a standard ruby app via ActiveRecord?
I have a Rails 3.1.x app and need to manipulate the data in it's database via another straight ruby app. Essentially I am just retrieving data from a model in the database.
Obviously it would start ...
2
votes
1answer
147 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 ...
2
votes
1answer
1k views
Heroku with sinatra does not have RAILS_ROOT or Rail.root
I'm trying to upload file to amazon s3 and apparently I have to write to a temp file first then upload that file. But I cannot figure it out how to do that with Sinatra and heroku since it cannot find ...
1
vote
1answer
205 views
Restyle Resque web interface
I am starting using Redis for our web application, but I planning integrate its web admin interface to our application, at least in styling (partially this application will be an administration ...
1
vote
1answer
369 views
Assets not loaded for a mounted Sinatra app with thin and nginx
I have a simple Rails app with Resque server mounted in routes.rb as
require 'resque/server'
require 'resque_scheduler'
MyApp::Application.routes.draw do
authenticate :user do
...
6
votes
1answer
770 views
How do I proxy AJAX requests with Rack Middleware?
I'm developing a Rails application that uses an API backend for AJAX requests written with Sinatra.
The API runs separately from Rails:
Rails: localhost:3000
API: localhost:9393
In production, ...
4
votes
1answer
312 views
How could I implement token authentication in Sinatra?
How could I implement token authentication in Sinatra?
Currently I use Rails 3.1 token authentication.
2
votes
1answer
229 views
How to reload sinatra modular application mounted into Rails application?
I've mounted Sinatra application using Rails 3 mount routing:
mount Api2.new, :at => "/api2"
I want all changes to sinatra application to be reloaded on each requst in development environment.
...
0
votes
1answer
175 views
will_paginate can it order by day
SCENARIO: I have a Pictures table that contains hundreds of photos. I'm currently using 'will_paginate' to paginate 100 photos per page. I would like to continue using 'will_paginate' BUT I want the ...
4
votes
1answer
323 views
Hosting multiple rails services on a single server + architecture of an “api enabled” website
I've just finished reading Paul Dix's book Service-Oriented Design with RoR and I'd like to create a Rails 3 web app based on what I've just learned.
I think I got the basic architecture right, but a ...
0
votes
0answers
613 views
Ruby error on 'bundle install'
I am trying to get started running my first Ruby on Rails application (from this tutorial: http://devcenter.heroku.com/articles/ruby).
After making both the Web ruby file and the Gemfile, I try to ...
2
votes
1answer
985 views
Rails or Sinatra - How can I handle an invalid HTTP request?
I have a 3G+GPS device (Digi WR44) that can send NMEA packets to any IP address.
I would like to get this data from a Rails (or Sinatra) application, but the packets are not send as a valid HTTP ...
1
vote
1answer
402 views
rails 3.0.10 cannot add sinatra app
In a Rails-3.0.10 app, I've got a route like this:
match "/" => GithubTrends
which point a sinatra app in lib/github_trends.rb :
$:.unshift File.dirname(__FILE__)
class GithubTrends < ...
13
votes
3answers
4k views
Mount Sinatra app inside a rails app and sharing layout
I would like to mount a sinatra application in my rails app.
But I would like this one to share the same layout.
The iframe could work but do you have any other idea ?
Thanks
0
votes
1answer
177 views
How to serve static content from gems in Sinatra (analagous to Rails ::ActionDispatch::Static)
I have a Sinatra service which includes a gem. The gem contains some static content which I would like to include in and serve via the Sinatra app.
In Rails this would be done with ...
1
vote
1answer
267 views
resque-web authlogic error when trying to start rails server [closed]
I am trying to get resque-web server to mount as a rack application as per railscast reque tutorial adding this to routes file :
mount Resque::Server, :at => "/resque"
when i start up rails ...
1
vote
1answer
409 views
Rails3 ActiveResource Post Call delivers an empty Parameter Hash
I am trying to create a new "Person" in a Sinatra API app from a Rails3 app using ActiveResource and Json. In Rails3, I created a "Person" model and using ActiveResource I correctly call the API, ...
2
votes
3answers
649 views
How To Add A Ruby Blog to a Rails 3 App
Is it possible to add a blog system like toto ou jekyll to an existing Rails 3 app?
Thanks
3
votes
1answer
2k views
Sinatra Warden with existing Ruby on Rails application that uses Devise
I am trying to split my current Ruby on Rails 3 web-application and it's web-services (API). My web-application is running on Heroku and implements API as a namespaced route within my application. For ...
1
vote
1answer
1k views
Ruby: Receive and print JSON object
I want to receive a JSON object using Ruby. I've written this:
require 'sinatra'
require 'json'
post '/' do
push = JSON.parse(params[:payload])
"I got some JSON: #{push.inspect}"
end
And I'm ...
0
votes
3answers
165 views
new to ruby, rails3 or Sinatra? [closed]
I am evaluating Rails3 or Sinatra to build a new site. Both of them look interesting and not sure which one is better for new developer to Ruby. I heard Rails3 is used to build a website with ...
4
votes
1answer
259 views
Is it possible to pass a flash message from Rails to Sinatra?
I have a project that uses Sinatra for static pages and Rails for the application.
I allow the request to hit one or the other by doing this in config.ru:
run Rack::Cascade.new([
...
0
votes
1answer
299 views
Ruby w/ Sinatra (ERB): my link is throwing a syntax error, but it didn't in rails… how do I fix it?
<%= link_to( { :controller => 'board', :action => 'start_game', :human_is_first => true }, :remote => true) do %>
<span>Yes</span>
<% end %>
works ...
1
vote
0answers
80 views
rails documentation or faq addon [closed]
Before I roll my own I'm just curious if there are any other solutions similar to heroku's docs (sinatra) or the rails guides template for making a simple faq page for a rails app. I like heroku's on ...
0
votes
1answer
845 views
Where do I put Sinatra files intended to be embedded in a Rails3 app?
I want to use the new Rails3 feature that allows you to embed a Sinatra app inside rails.
In my routes file, I have:
# app names changed to protect the (not so) innocent
...
3
votes
2answers
1k views
Is it possble include Nesta CMS into Rails3 application?
I'd like "to mount" a Nesta CMS app onto a Rails3 app This should be possible couse of being Nesta a Sinatra app, which should be a Rack mountable layer, ... but how would you do it ?
Where will you ...
2
votes
2answers
2k views
Sinatra app as Rails 3 subpath
I'm trying to get a sinatra app as a subpath in my rails 3 app.
Specifically, the resque queuing system has a sinatra based web interface that I would like to have accessible through /resque on my ...


