Tagged Questions
0
votes
1answer
116 views
AngularJS render html as string
In my web app, when I go to one of my url, angularjs returns me haml template as a plain text.
But if I go to my root url it works fine. I use Rails 3.2.13, AngularJS 1.1.4, Haml for views.
This is ...
0
votes
1answer
31 views
Conditions in the view?
This is a part of my layout:
.container
.brand
= render 'layouts/nav'
.row
- flash.each do |key, msg|
= content_tag :p, msg, :class => "flash #{key}"
= yield
The _nav ...
0
votes
2answers
137 views
Why does rake assets:precompile produce an empty css stylesheet?
I'm using sass-rails and haml-rails gems, so that I can write css file in HAML-sass style.
The thing is when I want to go for production and precompile my stylesheet, the command rake ...
0
votes
2answers
37 views
which code I should put into a partal in rails
Ideally the code which is reusable, that we can put into a septate partial and can call it from different actions.
Now, if my parial _list.html.haml file has code
#betting_list
%table.table
...
0
votes
1answer
95 views
each_with_index not working correct
i want the first element of the each loop to be "active" and wrap it with a active css class. I tried this, but every item is active now. What a i doing wrong?
#myCarousel.carousel.slide
...
0
votes
2answers
106 views
migrating erb to haml - strange behavior when using the build method with nested forms
I have a simple view in Rails that I'm migrating from ERB to HAML. This view renders a nested form, but includes an empty child object it there aren't any existing child objects.
With ERB, I was ...
0
votes
1answer
71 views
Self-closing tags can't have content?
I am trying to use mailer layout for my emails,
I have put notifications_mailer.html.erb in the layouts folder, and I have a view for the email migration_message.html.haml
But why would I have this ...
0
votes
1answer
71 views
Syntax error for link in nested content_tag :div
I'm new to rails. I'm trying to add a link to a div that is being generated with the content_tag. I'm getting a syntax error but I can't seem to figure out why.
I used this reference
- flash.each do ...
0
votes
1answer
60 views
How to get relationship data value in my HAML template
This is a part of my house model.
class House < ActiveRecord::Base
has_many :amenity_appartment
has_many :amenities, :through => :amenity_appartment
has_many :category_join_table
...
0
votes
0answers
75 views
Formtastic is escaping a customized required_string in haml
I've changed my config/initializers/formtastic.rb file as follow:
Formtastic::FormBuilder.required_string = '<abbr title="Requerido">*</abbr>'
Now, if I make
= f.input :first_name, ...
0
votes
1answer
600 views
Rails 3 and Twitter bootstrap's sidebar (affix) - how?
I have simple RoR 3.2 application with Twitter bootstrap 2.1.0 (i implemented it via twitter-bootstrap-rails gem). I want to integrate sidebar with few links (as you can see on twitter bootstrap page ...
0
votes
1answer
472 views
Rails 3 + Devise - Log-in user can't open page to change password
I use Rails 3 application with devise, simple form and haml gems. Also my application supports few locales. I created simple link on my home page:
%p
= link_to "Change pass", ...
1
vote
3answers
154 views
haml, blocks and partials
To clean and factor ugly views, I'd like to do the following:
1) In the view:
= document_left_container do
= document_information
2) In my helper:
def document_left_container(&block)
...
0
votes
1answer
97 views
Is it possible to pass a JavaScript Object as an argument to the Locals Hash in a render: partial call?
I think this is easily explained by looking at code, so I'm posting a couple of snippets that show how I usually do Ajax things in Rails 3.2,
The following will work:
create.js.coffee
$("<%= raw ...
0
votes
1answer
341 views
Haml-rails not working in Rails 3 Engine
I have created a Rails Engine (as per the Rails Guides) using:
rails plugin new address_book --full --mountable
I then proceeded to follow the instructions in the answer to this question, trying ...
2
votes
1answer
423 views
i18n markdown files in Rails 3 views
I am currently working through Michael Hartl's Rails Tutorial while experimenting with some other things not covered in the book. After completing Chapter 5, where the static pages are created, I ...
0
votes
1answer
223 views
Using Rails 3.2, Should inclusion of conditional JavaScript in the views be avoided?
As everyone knows the Rails framework advices for strict separation of JavaScript and Html via what's called UJS, however sometimes, I find myself in the need to include impromptu snippets of ...
11
votes
1answer
2k views
Rails 3.2 - haml vs. erb. Is haml faster? (february 2012)
I am working on a project and I am still thinking about using HAML (beautiful code, less size of view files) instead of classic ERB template.
My worries why I didn't do it yet are the speed of ...
2
votes
1answer
530 views
Rails 3.2.1: Calling undefined method in view causes test to hang for 30+ seconds
I'm upgrading my app from 3.0.9 to 3.2.1 (ruby 1.9.3-p0, rvm, bundler) and one thing that I haven't been able to track down yet is this problem. I have a controller spec (in spec/controllers) that ...
14
votes
4answers
4k views
haml by default
Is there a way to configure rails to use haml by default, i.e. when a scaffold is generated the according scaffold_name/index.html.haml is generated instead of scaffold_name/index.html.erb.
Similar ...
0
votes
1answer
166 views
Section or Controller based class-highlighting in Rails 3.2 views
I've looked at this article and am getting strange behavior in a HAML partial. When I access two different controller actions, one instance works while the other fails. Here's the code:
= ...
3
votes
1answer
1k views
rails 3.2 rails generate rspec:install… undefined method `delegate_template_exists?' for class `ActionView::Base' (NameError)
Got this error trying to do a new project with rails 3.2.
haml issue ?
rails generate rspec:install
/home/me/.rvm/gems/ruby-1.9.2-p290/gems/haml-3.1.3/lib/haml/template/patch.rb:16:
in ...
