Razón social: (Debe incluir el RUBRO o el NOMBRE de algunos de los socios. Ej.: Agrícola Los Muermos Limitada)
Servicios Informáticos Squape Limitada
Nombre de fantasía: (opcional)
Squape
<html> | |
<head> | |
<title>Taller Web Development</title> | |
<link href="general.css" rel="stylesheet" media="all"> | |
</head> | |
<body> | |
<div class="sidebar" id="leftsidebar"> | |
<h3>Sitio Web</h3> | |
<hr /> |
Razón social: (Debe incluir el RUBRO o el NOMBRE de algunos de los socios. Ej.: Agrícola Los Muermos Limitada)
Servicios Informáticos Squape Limitada
Nombre de fantasía: (opcional)
Squape
<html> | |
<head></head> | |
<link href="styles.css" media="all" rel="stylesheet" type="text/css" /> | |
<body> | |
<div id="center"> | |
<div id="section"></div> | |
<div id="aside"></div> | |
</div> | |
</body> | |
</html> |
#olaquehace { | |
width: 100px; height: 200px; | |
background: #fff; | |
border-color: #000; | |
border-style: solid; | |
border-width: 2px 100px 2px 2px; | |
border-radius: 100%; | |
position: relative; | |
} |
require 'rubygems' | |
require 'roo' | |
s = Roo::Excelx.new("../Hacking/Rails/mpnr/data/Ford.xlsx") #Open the spreadsheet | |
s.default_sheet = s.sheets.first #Select the page to work with | |
att_col = s.column(1) #First Column (Attributes Hierachy) | |
#Gives you a count of cols & rows | |
col_number = s.last_column() |
Introduccion a la Ingenieria - Prof. Marcelo Mendoza
app/views/spree/admin/items/index.html.erb | |
config/routes.rb | |
spec/views/spree/admin/items/index.html.erb_spec.rb | |
spec/spec_helper.rb |
# Run Coverage report | |
require 'simplecov' | |
SimpleCov.start do | |
add_filter 'spec/dummy' | |
add_group 'Controllers', 'app/controllers' | |
add_group 'Helpers', 'app/helpers' | |
add_group 'Mailers', 'app/mailers' | |
add_group 'Models', 'app/models' | |
add_group 'Views', 'app/views' | |
add_group 'Libraries', 'lib' |
<% content_for :page_title do %> | |
<%= Spree.t(:listing_featured_items) %> | |
<% end %> | |
<% content_for :page_actions do %> | |
<li> | |
<%= button_link_to Spree.t(:new_item), new_admin_item_path, :icon => 'icon-plus', :id => 'admin_new_item' %> | |
</li> | |
<% end if can? :edit, Spree::Item.new %> |
before_filter :authenticate | |
protected | |
def authenticate | |
authenticate_or_request_with_http_basic do |username, password| | |
username == "foo" && password == "bar" | |
end | |
end |