Padrino is a ruby framework built upon the excellent Sinatra Microframework. Sinatra is a DSL for quickly creating simple web applications in Ruby. Padrino was created to make it fun and easy to code more advanced web applications while still adhering to the spirit that makes Sinatra great!
0
votes
0answers
4 views
application.handlebars template isn't rendered (as it should be by default)
my goal is a simple js mvc appliction.
i'm using padrino, and trying to add ember.js. also, i switched to asset pipeline in this project, just for simplicity.
i have a problem with rendering a ...
0
votes
0answers
18 views
Multiple file upload with Padrino, Datamapper, and Carrierwave
I am trying to create a multi-image uploader in Padrino using Carrierwave.
Here's the gist: I have a simple pair of models: Artwork, representing an artwork, and Image, representing detail images of ...
0
votes
0answers
20 views
anchor link to further down page not working: padrino generated
I've got pages that are being dynamically generated by my Padrino app, like pages in a CMS.
Routing looks something like: http://myapp.com/pages/show/54374abc32
For a given page (e.g. 54374abc32): ...
1
vote
2answers
213 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
...
0
votes
0answers
38 views
undefined method `assigns' for #<RSpec::Core with Padrino
Trying to run some Rspec tests on a Padrino app I get the error:
undefined method `assigns' for #<RSpec::Core
I've gotten other undefined methods, mainly errors_on and solved it because I found ...
0
votes
1answer
19 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 ...
0
votes
3answers
37 views
Syntax error in content type case statement
This is my code in my Padrino application and I can't figure out what line or bug it is. The error message is "syntax error, unexpected keyword_end expecting $end"
get :index, :provides => [:html, ...
2
votes
1answer
33 views
DataMapper can't convert string to integer enum
I have the following model
class TagType
include DataMapper::Resource
## Relationships
belongs_to :category
has n, :tags
## Properties
property :uuid, UUID, :key => true, :default ...
0
votes
0answers
12 views
Gemified apps only work with :path option
I can only get gemified apps to work when there's a ':path =>' reference to a local version of the app. When I refer to a gem on rubygems.org, it barfs. How can I fix this? See below for an example:
...
0
votes
1answer
36 views
Can't read an uploaded file with Ruby's Framework Padrino
I have this form for uploading files:
-# coding: utf-8
- content_for(:body_classes, "body3")
.content
- form_tag url(:images, :create), :method => :post, :multipart => true do
= ...
0
votes
1answer
47 views
How to use Redis with Padrino
Is it possible to use redis with Padrino same as postgresql or mysql generators.
2
votes
0answers
59 views
Rake migrate Error - database doesn't exist
I have a padrino project that uses data mapper and postgres. When I run padrino rake dm:create it says that the database is created. However, when I run padrino rake dm:auto:migrate, I get the error - ...
1
vote
0answers
58 views
Implementing Remember Me in Padrino 0.11 with new admin interface
I'm trying to implement a 'Remember Me' feature in the new Padrino 0.11 Admin interface, but having a little bit of trouble due to the differences between it and Rails. Basically, I'm following along ...
1
vote
0answers
31 views
Start Padrino on different host (virtual)
I start WEBrick server through Padrino by this command: padrino start
It listens on localhost, but I would like to use WEBrick virtual hosts to change this behaviour to respond to other hostnames ...
0
votes
1answer
30 views
Where do you set the access control headers in Padrino
In Ruby on Rails you can place the access control headers in the Application Controller. What about Padrino? where do you place them? I've tried placing them in the method of a Controller I need to ...
1
vote
0answers
52 views
Why undefined method `email' for nil:NilClass in Sinatra/Padrino?
I'm following this tutorial http://www.padrinorb.com/guides/blog-tutorial and get a undefined method email for nil:NilClass error after assigning a user to all existing posts.
Am I missing something? ...
0
votes
0answers
46 views
Padrino internationalization - detect language in url
I am moving from sinatra to padrino. I have the following routes in my app:
/de/home for the german version
/en/home for the englisch one
/home defaults to the users default locale
I had this ...
0
votes
1answer
36 views
how do I extend LOAD_PATH for MiniTest?
[Aside: I am slowly answering my own question in "a concise recipe for installing, configuring and running minitest under autotest"]
My environment: Ruby 2.0. Padrino 0.10.7. Minitest 2.6.2. ...
4
votes
1answer
119 views
Send emails with Padrino in Heroku
I'm trying to send emails via sendmail in Padrino. I did the configuration specified here (Configuration and Quick Usage)
But I always get the following error in the server log (on Heroku or ...
0
votes
1answer
16 views
how do you document padrino route methods using rdoc?
I'd like to use RDoc to document API calls in a web services app written in Padrino. Here's an example file:
Analytics.controller :api do
diable :layout
##
# = <base_url>/ping - test ...
0
votes
1answer
81 views
Which is the right path to place an initializer in a Padrino sub application
I'm working with OmniAuth-Facebook and initializing it in mysubapp/app.rb:
require 'omniauth-facebook'
class MySubApp < Padrino::Application
register Padrino::Rendering
register ...
0
votes
2answers
106 views
success callback handler not called in jquery
I am working on a Padrino app running on my local server(localhost:3000). I am exposing a get call /location which is returning a json response. I am hitting this API from the javascript code written ...
1
vote
2answers
37 views
replace value into select field into the admin panel
I created two models:
Answers
AnswersTypes {id, text}
The latter one could accept two values {correct / wrong} as text.
I modified the admin panel to accept an html select field to link an ...
0
votes
1answer
100 views
iterating over yaml data in middleman template
I have a list of projects in a yaml file which i'd like to dynamically loop thru for a template in a middleman app but am unsure how or if I even can/should do it more dynamically.
I have:
...
0
votes
2answers
69 views
Sinatra not parsing array from params
I have a hidden form like this:
= form_for movie, 'create', method: 'POST' do |f|
- Movie.attribute_names.each do |attr|
= f.hidden_field attr.to_sym, value: movie.send(attr)
= f.submit 'Save ...
1
vote
1answer
90 views
Sinatra / Padrino partials with modal window
I've searched exhaustively but can't find an answer for this.
I'm writing a small app using padrino and I have 2 views, person and event. I have views and controllers for these and they are working ...
0
votes
2answers
93 views
How to dynamically populate a form based on previous input
I am new to RoR/Padrino. I want to add an autofil functionality to a form. Lets say when a User ID is entered The Name of the User is shown in the name field. And when a specific user type is selected ...
0
votes
1answer
104 views
Replace default authentication strategy in Padrino-Warden
Im struggling to replace the default :password strategy for the Padrino-Warden gem.
The way I figure it I need to get a hold of the manager instance for warden so I can set the default strategies but ...
3
votes
2answers
110 views
How can I stop Padrino putting compiled SASS in my public/ directory? Or should I?
I'm playing with Padrino, experimenting with a very minimal site at the moment with no DB and just a few HAML and SASS files under the app/ directory.
What I've noticed is that each time I render a ...
0
votes
1answer
100 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 ...
0
votes
1answer
43 views
Padrino controller flow
I have been working on making an AJAX progress bar using a padrino framework. Using jQuery I make a GET request to a special page that will return to it a status update. But the actual rendering and ...
0
votes
1answer
105 views
DataMapper Associations 'NoMethodError'
I am stuck with a problem and can't figure out where the problem is. Because I am relatively new you can hopefully help me :).
First of all I am using padrino with the datamapper gem.
I have a Trip ...
0
votes
1answer
149 views
Padrino + bootstrap
Is there a gem that will allow me to use twitter bootstrap themese/UI with Pedrino ?
Any pointers to relevant resources appreciated.
0
votes
2answers
53 views
Most appropriate place to require library in Padrino/Sinatra
I'm using "therubyracer" in a model, and I'm requiring at the top of the model as so:
require 'v8'
class Thing
def self.ctx; @@ctx ||= V8::Context.new; end;
def self.eval(script); ...
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 ...
0
votes
1answer
73 views
How to use Padrino helpers in a custom helper class
i want to use a custom notification helper to generate notifications (flash) messages in my Padrino app. Inside the helper i want to use the built-in Padrino helpers (flash and content_tag. (See ...
0
votes
2answers
126 views
How to mount a Sinatra app in a Padrino app?
Resque/Sidekiq come with a web frontend, which is a Sinatra app.
The way to mount this in a Rails app is to add this to routes (http://railscasts.com/episodes/366-sidekiq?view=asciicast):
mount ...
0
votes
1answer
81 views
Specify complex password in Datamapper.setup
I m trying to use Datamapper as ORM for my Ruby/Padrino application. To setup db connection, in databse.rb, I have:
when :development then DataMapper.setup(:default, ...
0
votes
1answer
183 views
capybara matchers always eval to TRUE in rspec. Why?
Something strange is going on with capybara and rspec, which I'm setting up on Ruby 1.9.3, Padrino 0.10.7, rspec 2.11.0, capybara 2.0.2.
A basic Padrino project set up haml and rspec (no custom code, ...
0
votes
0answers
34 views
Padrino freezes after “rackup” command
I'm a front-end developer, using Ruby/Padrino as a total newbie. My local setup has started freezing. My client's backend developer updated my local database / config files, and it worked for one day ...
0
votes
1answer
40 views
Inserting middleware in Padrino
I have a skeleton Padrino (0.10.7) project, with pretty much no code. I am trying to insert a middleware in boot.rb:
##
# Add your after (RE)load hooks here
#
Padrino.after_load do
...
0
votes
0answers
118 views
Handling a file upload within the padrino framework
I am building a small file upload service using the Sinatra framework with Padrino. I am pretty new to the whole world of html, php, rails style development, all of it. When using just a ...
0
votes
0answers
73 views
Friendly will_paginate URLs in Padrino
will_paginate uses ActionController's url_for helper which makes it a piece of cake to have user/SEO friendly URLs in Rails.
How can I get the same friendliness in a Padrino app?
Maybe without monkey ...
0
votes
1answer
411 views
How to use content_for & yield_content in middleman using slim
I've tried prepending content_for with =, == or - without luck :)
index.slim
- content_for(:senarios) do
h1 Some content
layout.slim
== yield_content(:senarios)
Hope somebody got a ...
0
votes
0answers
116 views
Sinatra or Padrino trying to set up UJS Remote ajax
I'm trying to set up the remote helper features of UJS or Unobtrusive Javascript Helpers. Or rather I am trying to get an ajax post to submit it's data from a click or a console command or something.
...
0
votes
0answers
11 views
Is there anyway to make annotate gem work with Padrino?
How can I get the annotate gem to work with Padrino?
0
votes
0answers
80 views
Render action in Padrino
Is there any way to render action in padrino framework? I have action, which returns partial (like widget). I want to use it on different pages, but I can't find the way how to do it
0
votes
1answer
59 views
Padrino: undefined method session for model
I am keep getting "NoMethodError at /dataset_requests/create undefined method `session' for #". DatasetRequest is a model, not controller. The problem is caused by flash and redirect methods. What ...
0
votes
2answers
79 views
Is it possible to prevent sinatra/padrino from logging a request?
I'm looking for a way to prevent logging of health-check requests to my application. I can see that these projects are using Rack::CommonLogger, but I haven't been able to find anything in the ...
0
votes
2answers
200 views
Configure padrino logger for stage environment?
How can I enable padrino logger of other environment other than prod, dev or test. Like, for example, stage env?
My padrino app on my stage env do not write at file log.
I tried
...

