Commit b5aea8b1 by Jon Yurek

Formatting of the features

parent b8aee5f7
Given "I have a rails application" do Given "I have a rails application" do
steps %{ steps %{
Given I generate a rails application Given I generate a rails application
And this plugin is available
And I have a "users" resource with "name:string" And I have a "users" resource with "name:string"
And I turn off class caching And I turn off class caching
And I run "script/generate paperclip user avatar"
Given I save the following as "app/models/user.rb" Given I save the following as "app/models/user.rb"
""" """
class User < ActiveRecord::Base class User < ActiveRecord::Base
end end
""" """
And I save the following as "config/s3.yml" And I save the following as "config/s3.yml"
""" """
access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %> access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %> secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
bucket: paperclip bucket: paperclip
""" """
And I save the following as "app/views/users/new.html.erb" And I save the following as "app/views/users/new.html.erb"
""" """
<% form_for @user, :html => { :multipart => true } do |f| %> <% form_for @user, :html => { :multipart => true } do |f| %>
<%= f.text_field :name %> <%= f.text_field :name %>
<%= f.file_field :avatar %> <%= f.file_field :avatar %>
<%= submit_tag "Submit" %> <%= submit_tag "Submit" %>
<% end %> <% end %>
""" """
And I save the following as "app/views/users/show.html.erb" And I save the following as "app/views/users/show.html.erb"
""" """
<p>Name: <%= @user.name %></p> <p>Name: <%= @user.name %></p>
<p>Avatar: <%= image_tag @user.avatar.url %></p> <p>Avatar: <%= image_tag @user.avatar.url %></p>
""" """
And this plugin is available And I run "script/generate paperclip user avatar"
And the rails application is prepped and running And the rails application is prepped and running
} }
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment