Tagged Questions
1
vote
2answers
233 views
Bundle update for padrino app: could not find compatible versions for “tilt”
Running bundle update on my padrino app gives me:
Bundler could not find compatible versions for gem "tilt":
In Gemfile:
padrino (= 0.11.1) ruby depends on
tilt (~> 1.3.0) ruby
...
1
vote
1answer
30 views
HAML Folder in Views
I was wondering if anyone knew how to render a .haml template from a folder within the views folder. My directory setup is:
-Views (Folder)
-Get_Started (Folder)
-step_1.haml
-index.haml
I ...
2
votes
2answers
171 views
Undefined method `to_i' for Hash
I am trying to make a subdomain router for my Rack app but I ran into a problem. Here is my config.ru code:
require './controllers/subdomain'
require './controllers/www'
set :root, './'
run ...
0
votes
1answer
55 views
Extract Ruby Parameters
Hi i am trying to make a rack controller similar to Rack::URLBuilder but i am having trouble extracting the parameters.
config.ru
run Example::Controller.new ([
"test" => Sinatra::Application
...
2
votes
1answer
404 views
Sinatra and Grape API together?
I've been reading around and I found this micro-framework called Grape for ruby. I am currently using Sinatra to handle the web interface but I would also like to implement Grape to handle the API ...
1
vote
1answer
66 views
Is this the right way to require ruby gems?
Hi so i stumbled upon a new way to require my ruby gems in my sinatra app using bundler and i was wondering if this is how i should do it:
My gem file looks like:
source 'https://rubygems.org'
gem ...
1
vote
2answers
89 views
Can't adapt the airbrake gem to a Sinatra app
I am using the airbrake gem like so:
require 'airbrake'
Airbrake.configure do |config|
config.api_key = 'XXXXX'
config.development_environments = ["development", "test", "cucumber"]
end
use ...
0
votes
1answer
112 views
No Method Error on Sinatra
After setting up my config.ru and gemfile, my post no longer wants to work.
First, I have to have my DataMapper.setup in my main.rb and I cannot run any DataMapper methods in my irb.
Second, ...
1
vote
1answer
639 views
Cannot resolve gem dependency
I can't seem to get this dependency to resolve. I've tried setting the versions in the Gemfile explicitly, but nothing seems to work. Any thoughts?
Gem::LoadError: Unable to activate ...
2
votes
3answers
437 views
failed to install gems via bundler and heroku push rejected
I've tried updating the bundler and installing it, but it still fails. I've looked through everything I can find about this topic and it's not solving the problem.
Gemfile:
source ...
1
vote
2answers
99 views
Understanding Ruby (Sinatra) - very very basic
I was looking at Sinatra and trying to understand the syntax:
require 'sinatra'
get '/' do
"Hello, World!"
end
I understand it does this:
This is a ‘Route’. Here, we’re telling Sinatra that ...
0
votes
2answers
72 views
Ruby IO from a service at port 6557 in Sinatra
I have to take a dump of a service in sinatra and display it in the content area of the webpage.
The Service I have to access via code runs on server at port 6557. It doesnt use any encryption or ...
0
votes
1answer
40 views
How do I set the production / development environment when running a Sinatra App localy
I have the following in my Gemfile, but when i run bundle install on my local, i get an error about postgres being unavailable.
group :development do
gem 'dm-sqlite-adapter'
end
group :production ...
0
votes
1answer
477 views
Unable to activate sinatra-contrib gem
When I run ruby application.rb in my Sinatra forked app, I'm having in console:
~/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:1637:in `raise_if_conflicts': Unable ...
1
vote
2answers
452 views
How to use RSpec to test a Sinatra application within a gem?
I am writing a gem which includes a Sinatra application that a developer can extend. For example:
# gem code:
require 'sinatra'
module Mygem
class Application < Sinatra::Base
get ...
0
votes
2answers
156 views
Sinatra File deleter
I am using sinatra,ruby and MongoDB to export a CSV file from the MongoDB. I am able to create the CSV file and export it.
I delete the file after exporting it.
But it gets deleted only after I exit ...
0
votes
1answer
88 views
Sum of points of stories in PivotalTracker gem
I have started using the PivotalTracker gem in my Ruby on Sinatra-Padrino.
It provides really good API(s), but I am stuck in a requirement. I want the sum of the points/estimates of all the stories ...
1
vote
3answers
748 views
Can't install sinatra-contrib
I am trying to run a simple application with Sinatra and I am not able to install the reloader.
I tried with
gem install sinatra-contrib
and I have in my source file a line like this:
require ...
0
votes
1answer
187 views
Deploying a Sinatra App to Heroku With Bundler — Gems not found
I am deploying a Sinatra app to Heroku. I am using Bundler for my dependencies. When I run it on my machine, it works with no problem. I launch it with this
config.ru
require "rubygems"
require ...
0
votes
1answer
188 views
Create stand-alone system services in Ruby
I want to build application which servers as a stand-alone system service, always run on the backend and servers a front-end with a web interface.
Like we do in Linux /etc/init.d/apache2 start , Same ...
3
votes
1answer
303 views
Rails Sinatra application not loading Gems. Do I have them in the wrong place?
I hope you can help me.
I am working on a small Sinatra Rails application. I have Ruby installed on Mac OSX using RVM (currently using ruby 1.9.2)
I changed my app to include some new gems and to use ...
1
vote
1answer
439 views
How do I deploy a Sinatra app with Nginx and Passenger?
I'm on a Dreamhost virtual private server. I have never written a Sinatra app, or any other Rack app before. I'm just trying to get a Hello World app to run but I keep getting the Passenger error page ...
4
votes
2answers
1k views
Error loading Active Record gem with sinatra app using RVM
I set up a project level RVM gemset for a sinatra app I am starting that will connect to a local database with Active Record. In order to test it I tried to run the below test app:
test.rb
require ...
2
votes
1answer
4k views
Using bundle exec may solve this?
Here is my Gemfile
source :rubygems
gem 'rake', '0.9.2.2'
gem 'sinatra'
gem 'activerecord', '3.0.9'
gem 'pg', '~> 0.12.2'
gem 'logger'
gem 'nokogiri'
group :development, :test do
gem ...
1
vote
0answers
274 views
Installing geminabox Gem with mod_passenger - 'Service Temporarily Unavailable'
i'm trying to install the geminabox application on my server using mod_passenger. But for some reason it's always giving me a 'Service Temporarily Unavailable' and i don't know where to look. I've ...
4
votes
2answers
6k views
gem_original_require': no such file to load — sinatra (LoadError)
I'm working on my local machine. If I use a Sinatra app I have no problem adding this line to myapp.rb
require 'sinatra'
When I go to the console and I run
irb -r myapp.rb
I get this error
...
2
votes
2answers
667 views
Is there a Ruby gem that can generate an API for Sinatra?
We have a big Rails app and we're looking to extract our User model out into an API to move to a more service oriented architecture. Right now we're creating the API on a small Sinatra app that can ...
3
votes
3answers
2k views
Ruby / Sinatra - Already initialized constant WFKV_
Running ruby 1.9.2p290 and the latest version of Sinatra.
When I try to run my Sinatra app
ruby application.rb
I get an error
...
0
votes
1answer
448 views
Is a dragonfly gem good solution for heavy loaded project
Is dragonfly gem good solution for heavy load project ? ( massive social application like Facebook for example)
Because I think it's good solution for small - medium sized projects but I really ...
0
votes
1answer
556 views
gem executable that starts sinatra server not working
So I wrote a simple "Hello World" site using sinatra:
#!/usr/bin/env ruby
# sinatra_demo/bin/sinatra_demo
require 'rubygems'
require 'sinatra'
get "/hello" do
"Hello World!"
end
And when I run ...
3
votes
1answer
553 views
Sinatra doesn't load when running a ruby app
I'm trying to run a Ruby application that requires Sinatra within Ubuntu 10.10. I'm new to the 3 of these technologies so I understand if this question looks dumb to you.
Yesterday I installed ruby ...
1
vote
1answer
605 views
How do I import rake tasks from a gem when using Sinatra?
I'm trying to add some basic rake tasks to the orientdb gem that will allow me to create the database, create database migrations, and migrate the database - similar to rails migrations.
When I had ...
4
votes
3answers
2k views
Ruby Feature Switches / Feature Flippers
I have been inspired by how both Flickr and Disqus use feature switches. They both blogged about them and how they work on both of their development blogs.
I was just wondering if there was a Ruby ...
11
votes
4answers
4k views
Installing a gem from Github with Bundler
I am trying to use the instructions here to install a pre-released version of a gem with bundler.
The "bundle install" output lists the gem as getting installed, but "gem list" fails to find it.
My ...
2
votes
1answer
3k views
Sinatra, Bundler and BUNDLE_PATH confusion
I am having trouble configuring Sinatra to use Bundler. I am confused as to where Gems should be being installed? I've read both this question and this documentation.
My Gemfile looks like:
source ...
1
vote
3answers
3k views
Sinatra and Bundler
I'm trying to get Bundler setup so I can deploy my Sinatra app to server with all the correct gems.
I've created my Gemfile
source :gemcutter
gem 'sinatra', '1.0'
gem "nokogiri", "1.4.2"
gem "rack", ...
1
vote
1answer
425 views
Error in requiring Sinatra gem
I'm having a hard time getting Sinatra running on my local setup, Ubuntu Karmic 9.10. The error getting thrown when I have require 'sinatra' is:
NoMethodError: undefined method `[]' for nil:NilClass
...
0
votes
1answer
163 views
Why do I get a NoSuchMethod error running Warbler?
I'm getting the following error when running warble under both jRuby 1.3 and 1.4. I'm new to warbler, any suggestions what to try next?
$ warble war
WarblerWar.java:70:in `addEntry': ...
2
votes
3answers
2k views
Error Building Gem
I tried to install the following gem:
http://github.com/maxjustus/sinatra-authentication
on Windows 7 running Ruby 1.9 from the One-Click Installer.
I got the following error:
Microsoft Windows ...
