Overview Padrino is a Ruby framework built upon the excellent Sinatra microframework. This framework makes it as fun and easy as possible to code increasingly advanced web applications by expanding upon Sinatra while maintaining the spirit that made it great. Features Here is a list of major ...
15
votes
1answer
327 views
Hacking rails.vim to work with Padrino
I recently cloned rails.vim (vim-rails) hoping to modify it to work with Padrino projects.
Currently I'm trying to get the Rcontroller command to look not only in app/controllers (perfect for rails) ...
5
votes
3answers
445 views
Ruby localization: i18n, g18n, gettext, padrino… - what's the difference?
Being somewhat new to Ruby I'm exploring existing libraries to do what I'd normally do in other scripting languages, and I'm a bit stumped by the localization libraries that might be available for ...
4
votes
1answer
238 views
How do I test a redirect in sinatra using rspec?
I'm trying to test for a redirect on the homepage in my sinatra app (more specifically, a padrino app), in rspec. I've found redirect_to, however it seems to be in rspec-rails only. How do you test ...
3
votes
2answers
491 views
Notmethod error when padrino start
unfortunately got lost in the begginning. Created first test_app using the official guide http://www.padrinorb.com/
When trying "padrino start" app starts, server is running well in console, but as ...
2
votes
0answers
69 views
Sinatra-Assetpack not serving js files
This should be pretty easy, but it's simply not working. Running Padrino with sinatra-assetpack. All css files serve perfectly like this:
serve '/stylesheets', from: '/app/stylesheets'
css :shared, [
...
2
votes
1answer
342 views
Comparison between Rails, Padrino and Sinatra
I have been programing in Ruby for 7 months and used Rails as a framework for the Good Large Full length Project (Enterprise Resource Planning ERP in Manufacturing Domain). It required complex View ...
2
votes
0answers
97 views
Padrino + MongoMapper/Joint Troubles
I'm using MongoMapper with Joint on Padrino, and trying to get the
upload working. However, I keep getting thrown a NoMethodError
"undefined method 'path' for #<Hash:0xa6fbdf0>". It seems ...
2
votes
2answers
180 views
Getting NoMethodError for Padrino helper methods
I'm new to Padrino and have been running through the sample blog tutorial. I'm getting a NoMethodError when using the sample code below
# app/views/posts/index.haml
@title = "Welcome"
#posts= ...
2
votes
2answers
719 views
how to easily run a sinatra/padrino application on rails hoster
is there an easy way to run a sinatra (in particular a padrino) application "as a" rails app?
i guess, there should be some way to translate "rails server" to "padrino start" or something...
(the ...
2
votes
1answer
361 views
Use cases for the different Padrino haml helpers
I read http://www.padrinorb.com/guides/application-helpers but I'm unclear as to what are the use cases for each of the view helpers. Specifically, how do content_for/yield_content, render/partial, ...
2
votes
3answers
1k views
Padrino, compass and heroku's read-only file-system
I really like the way padrino 'just works' with compass but I have a few questions as I'm going to be using heroku (and their read-only file-system) for hosting
From the looks of things, the ...
2
votes
2answers
717 views
ActiveRecord returns data in ASCII-8Bit Under Ruby 1.9.2-rc1
Further to the title, when loading data from ActiveRecord the encoding is always set to ASCII-8Bit in spite of my best efforts to force the encoding. I have entered as much detail as possible here to ...
2
votes
1answer
963 views
Setup Padrino with DataMapper and MySQL database
Hello I am trying to setup a Padrino project using DataMapper and MySQL on my Mac OSX Snow Leopard.
I have the necessary gems:
dm-core
data_objects
do_mysql
mysql (linked to my original Mac OSX ...
1
vote
1answer
261 views
Using Paperclip with Padrino
Background: I'm building a simple blog using Padrino, Ruby 1.9.2,
HAML, and Heroku. I want the posts index to have a magazine-like look
to it. For each post in the index, the user should see titles, ...
1
vote
1answer
119 views
Padrino mongoid logging
How to view all queries in console to mongodb?
Mongoid.logger = Logger.new($stdout)
does not help
database.rb
host = 'localhost'
port = Mongo::Connection::DEFAULT_PORT
database_name = case ...
1
vote
1answer
86 views
sending emails asynchronously from Padrino via Resque
I'm trying to send emails out of a Padrino app asynchronously - I've tried using Ruby fork command but that doesn't scale very well I think, I tried delayed_job also but have now settled on Resque ...
1
vote
1answer
111 views
Using Padrino form helpers and formbuilder - getting started
I've jumped into learning Ruby by going straight to Padrino with Haml.
Most of the Padrino documentation assumes a high-level of knowledge of Ruby/Sinatra etc...
I am looking for samples that I can ...
1
vote
1answer
60 views
Selectively using yield_content in Padrino application.haml template
In a Haml based Padrino solution I have an application.haml like this:
!!!
%html
%head
%title "blah"
%body
#header
= yield_content :headcontent
#container
...
For :headcontent, in ...
1
vote
1answer
43 views
Can't save more than one document in GridFS (with MongoMapper/Joint)
I've written a Padrino application that allows you to upload files. It uses MongoMapper (via Joint) to store these files (images) in GridFS. I am able to store one file with no problems. However, when ...
1
vote
1answer
41 views
Object associations using datamapper
I'm trying to assign players to a club.
A club has n players and a player belongs to a club.
A club can only have less than 23 players and no more than 2 players playing in the same position.
clubs = ...
1
vote
1answer
230 views
Moving document between collections in Mongo (via Mongoid)
I'm building a card game (basic 52 card deck of playing cards 4 suits * 13 ranks), and I've decided on MongoDB for this project.
My basic model is:
--> Game
--> Deck
--> Cards
--> ...
1
vote
2answers
105 views
Multiple apps in Ruby Padrino: How to name models?
I have a Padrino project, that consists of multiple apps. For example:
Website (Models: Site, Page)
Blog (Models: Post, Comment)
Shop (Models: Category, Product, Order)
Tracking (Models: Visitor, ...
1
vote
1answer
323 views
Why does “heroku console” with Padrino give useless error messages?
When using heroku console, I always get "Internal server error" when an exception is raised rather than a stacktrace as I would expect.
Here's a transcript of what I mean:
$ heroku console
Ruby ...
1
vote
2answers
339 views
Authentication and authorization solution for Padrino
I have been programming with both Sinatra and Padrino for quite some time now. However, I am still not able to find the right authentication and authorization solution for Padrino. Let me explain my ...
1
vote
0answers
332 views
“Couldn't forward the HTTP response back to the HTTP client: It seems the user clicked on the 'Stop' button in his browser.”
Take a look at the code on GitHub.
What's happening is I try to create a Schedule (one of the models) and it is suddenly failing to do anything. Using the built-in Padrino server, it is not ...
1
vote
2answers
183 views
Multiple databases are working in dev environment, but not test
This is a Padrino project. For some reason I am getting my second database loaded in the development environment, but not the test environment. This is probably very specific to my project, and it's ...
1
vote
1answer
175 views
Can't connect Padrino to PostgreSQL db w/ activerecord
Trying to setup the Padrino web framework to connect to my local PostgreSQL database with the following info:
databases
List of databases
| Name | Owner
...
1
vote
1answer
133 views
Where to put Padrino controller files in standalone Sinatra application?
I'm attempting to use Padrino's routing as a standalone addition to a basic Sinatra application.
http://www.padrinorb.com/guides/standalone-usage-in-sinatra
The main reason I need/want the ...
1
vote
0answers
338 views
Using DataMapper as Padrino session store
I was able to make Rack::Session::DataMapper, Padrino and Omniauth work together. The main goal was to have the same sessions and users in the main app and in the admin section, and to have very long ...
1
vote
0answers
344 views
Mongoid error in Padrino when attempting to connect from Heroku to MongoHQ
I keep getting an Mongoid::Errors::InvalidDatabase - Database should be a Mongo::DB, not NilClass
from a padrino app that I've got working on dev locally but which refuses to connect to MongoHQ. I've ...
1
vote
1answer
390 views
Howto test a sinatra (padrino) controller without testing the view?
is there any good way to test a controller with rspec? Actually, I'm testing the complete output (including the rendered view) with rack/test.
Take the following minimal controller for example:
...
1
vote
0answers
130 views
Blank page when updating account model in padrino admin using datamapper/postgres
I am fairly new to ruby and padrino.
I have created a new padrino project and admin section using the out of the box generators with a postgres database running on a nginx webserver (on Ubuntu).
I ...
1
vote
1answer
138 views
ActiveRecord partial updates in Padrino
How do I configure ActiveRecord to use partial_updates in a Padrino application?
Customer < ActiveRecord::Base
after_update :check_name_change
private
def check_name_change
if ...
1
vote
4answers
1k views
If I learn Sinatra or Padrino, does that help me with Ruby on Rails?
If I learn Sinatra or Padrino, does that help me with Ruby on Rails?
I assume that for all of these I need to get a better understanding of Ruby itself, but does (say) Padrino translate directly into ...
1
vote
1answer
333 views
alias url with sinatra / padrino
I've this and it works
get :about, :map => '/about_us' do
render :erb, "<%= 'foo' %>"
end
get '/:slug' do
redirect "/about_us" # <--
end
Is possible to do in some way ...
1
vote
1answer
368 views
How to detect language from URL in Sinatra
I have a multi-language website and I'm puting the language in the URL like domain.com/en/. When the user doesn't put the language in the URL I want to redirect him to the page in the main language ...
0
votes
1answer
25 views
How do I get the substring of a JSON output?
I want to render a simple JSON from an array.
array = ["valueid",true]
render :json=>array
which returns:
{"json":["valueid",true]}
but I don't want the JSON. The only part I want is:
...
0
votes
1answer
72 views
Padrino with RVM gemsets: uninitialized constant ActiveSupport::Deprecation
I'm getting an error trying to run an app, not even trying to do anything sophisticated either, just get the basic thing running... Just wondering if anyone can give me any pointers as to how to debug ...
0
votes
1answer
22 views
Padrino: url_for to access project level route from sub app
I have my main application that contains my pages controller. It's just a quick way for me to keep all my static pages in one spot.
I have a sub app that is going to be using the same layout (copy ...
0
votes
2answers
65 views
Padrino: sharing layout between main project and sub apps
How can I use my main projects layout for my sub apps?
There is a layout option for the controller.. but what would I set the value to in order for it to traverse back into the parent project and use ...
0
votes
2answers
69 views
padrino: sub app and controller with same name produces redundant url
I have a padrino project.
I've created a sub app called "users".
I also have a model called user and a controller called users to handle the routing.
Users.controllers :users do
The issue with ...
0
votes
1answer
60 views
Padrino basic user authentication
I was wondering if anyone can shed some light on setting up basic user authentication. I've installed the admin app into my project and it works great. But I need a basic user role that can have it's ...
0
votes
1answer
55 views
Sharing filters between applications
I am building a modular Padrino application to mount mutiple applications.
I am mounting a base application to /
class BaseApp < Padrino::Application
...
end
I am then mounting other ...
0
votes
0answers
40 views
How to get Padrino match routes when url have periods in it?
In Padrino, if I want a single route to match the following urls:
"/does/not/work/for/some.reason"
"/does/not/work/for/some.bizarre.reason"
How would I do that? I.e. the last part of the url can ...
0
votes
1answer
34 views
padrino can't find active_support methods
In my Padrino application i'm trying to get the time 10 years from now using
10.year.from_now
I'm getting:
NoMethodError: undefined method `year' for 10:Fixnum
Any idea why ?!
0
votes
1answer
118 views
Padrino model from json data
I have been looking at Padrino for a project I am working on, and it seems a great fit, as I would ideally be wanting to support data being sent and received as json.
However I am wondering if there ...
0
votes
0answers
18 views
Class Diagram builder from Ruby Code written in Padrino Frame work
Is there any gem that generates Class Diagram from Ruby Code written in Padrino Framework.
0
votes
2answers
108 views
Custom template for padrino admin page
How can I make padrino-admin page generator produce beautiful custom pages?
By default padrino-admin generates pretty ugly admin pages, totally unmaintainable:
.group
=f.label :title
...
0
votes
1answer
70 views
How do I log queries in a rake task using datamapper and padrino?
I have a padrino install that is using datamapper and logging queries to a file. This is working fine when browsing my application. But queries are not logged if executed inside a rake file. Why?
...
0
votes
0answers
81 views
Two state machines in Single ruby class
Following are System Specifications :=
Language Ruby
Framework Padrino
ORM Mongoid
Database MongoDB
Now I have a Person model with two fields tat maintain states separately.
class Person
...