Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Practica 2 #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified Gemfile
100644 → 100755
Empty file.
Empty file modified Gemfile.lock
100644 → 100755
Empty file.
Empty file modified README
100644 → 100755
Empty file.
Empty file modified Rakefile
100644 → 100755
Empty file.
Empty file modified app/assets/images/arbol1.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/arbol2.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/bruselas-m.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/florencia.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/llanes.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/logo3.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/mattia.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/pedriza.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/pedriza2-m.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/pergamo.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/rails.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/images/reichstag.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/robert.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified app/assets/javascripts/application.js
100644 → 100755
Empty file.
Empty file modified app/assets/javascripts/planet.js.coffee
100644 → 100755
Empty file.
Empty file modified app/assets/javascripts/selecteds.js.coffee
100644 → 100755
Empty file.
Empty file modified app/assets/javascripts/sites.js.coffee
100644 → 100755
Empty file.
Empty file modified app/assets/javascripts/trips.js.coffee
100644 → 100755
Empty file.
Empty file modified app/assets/javascripts/types.js.coffee
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions app/assets/javascripts/viajes.js.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
Empty file modified app/assets/stylesheets/application.css
100644 → 100755
Empty file.
21 changes: 21 additions & 0 deletions app/assets/stylesheets/authors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.data {
border: 2px solid #444466;
padding: 10px;
margin: 10px;
}
.data img {
float: right;
}

p.spacer {
clear: both;
}

.cv {
border: 1px solid #444466;
margin-right: 500px ;
}

.title {
font-weight: bold;
}
Empty file modified app/assets/stylesheets/planet.css
100644 → 100755
Empty file.
Empty file modified app/assets/stylesheets/planet.css.scss
100644 → 100755
Empty file.
Empty file modified app/assets/stylesheets/scaffolds.css.scss
100644 → 100755
Empty file.
Empty file modified app/assets/stylesheets/selecteds.css.scss
100644 → 100755
Empty file.
Empty file modified app/assets/stylesheets/sites.css.scss
100644 → 100755
Empty file.
Empty file modified app/assets/stylesheets/trips.css.scss
100644 → 100755
Empty file.
Empty file modified app/assets/stylesheets/types.css.scss
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions app/assets/stylesheets/viajes.css.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Place all the styles related to the viajes controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
Empty file modified app/controllers/application_controller.rb
100644 → 100755
Empty file.
Empty file modified app/controllers/planet_controller.rb
100644 → 100755
Empty file.
Empty file modified app/controllers/selecteds_controller.rb
100644 → 100755
Empty file.
9 changes: 8 additions & 1 deletion app/controllers/sites_controller.rb
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
class SitesController < ApplicationController

# GET /sites
# GET /sites.json
def index


if Viaje.nil? or Viaje.find(:all).empty?
@pos = 1
else
@pos = Viaje.maximum('position') + 1
end

if params[:type_id].nil? or params[:type_id].empty?
@sites = Site.all
else
Expand Down
Empty file modified app/controllers/trips_controller.rb
100644 → 100755
Empty file.
Empty file modified app/controllers/types_controller.rb
100644 → 100755
Empty file.
85 changes: 85 additions & 0 deletions app/controllers/viajes_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
class ViajesController < ApplicationController

# GET /viajes
# GET /viajes.json
def index

@viajes = Viaje.order(params[:position])

respond_to do |format|
format.html # index.html.erb
format.json { render json: @viajes }
end
end

# GET /viajes/1
# GET /viajes/1.json
def show
@viaje = Viaje.find(params[:id])

respond_to do |format|
format.html # show.html.erb
format.json { render json: @viaje }
end
end

# GET /viajes/new
# GET /viajes/new.json
def new
@viaje = Viaje.new

respond_to do |format|
format.html # new.html.erb
format.json { render json: @viaje }
end
end

# GET /viajes/1/edit
def edit
@viaje = Viaje.find(params[:id])
end

# POST /viajes
# POST /viajes.json
def create
@viaje = Viaje.new(params[:viaje])

respond_to do |format|
if @viaje.save
format.html { redirect_to @viaje, notice: 'Viaje was successfully created.' }
format.json { render json: @viaje, status: :created, location: @viaje }
else
format.html { render action: "new" }
format.json { render json: @viaje.errors, status: :unprocessable_entity }
end
end
end

# PUT /viajes/1
# PUT /viajes/1.json
def update
@viaje = Viaje.find(params[:id])

respond_to do |format|
if @viaje.update_attributes(params[:viaje])
format.html { redirect_to @viaje, notice: 'Viaje was successfully updated.' }
format.json { head :ok }
else
format.html { render action: "edit" }
format.json { render json: @viaje.errors, status: :unprocessable_entity }
end
end
end

# DELETE /viajes/1
# DELETE /viajes/1.json
def destroy
@viaje = Viaje.find(params[:id])
@viaje.destroy

respond_to do |format|
format.html { redirect_to viajes_url }
format.json { head :ok }
end
end
end
Empty file modified app/helpers/application_helper.rb
100644 → 100755
Empty file.
Empty file modified app/helpers/planet_helper.rb
100644 → 100755
Empty file.
Empty file modified app/helpers/selecteds_helper.rb
100644 → 100755
Empty file.
Empty file modified app/helpers/sites_helper.rb
100644 → 100755
Empty file.
Empty file modified app/helpers/trips_helper.rb
100644 → 100755
Empty file.
Empty file modified app/helpers/types_helper.rb
100644 → 100755
Empty file.
2 changes: 2 additions & 0 deletions app/helpers/viajes_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module ViajesHelper
end
Empty file modified app/mailers/.gitkeep
100644 → 100755
Empty file.
Empty file modified app/models/.gitkeep
100644 → 100755
Empty file.
Empty file modified app/models/selected.rb
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions app/models/site.rb
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
class Site < ActiveRecord::Base
belongs_to :type
has_many :selected
has_many :viajes
end
Empty file modified app/models/trip.rb
100644 → 100755
Empty file.
Empty file modified app/models/type.rb
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions app/models/viaje.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class Viaje < ActiveRecord::Base
belongs_to :site
end
7 changes: 6 additions & 1 deletion app/views/layouts/application.html.erb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@
<%= link_to "Home", planet_index_path %><br />
<%= link_to "Tipos", types_path %><br />
<%= link_to "Sitios", sites_path %><br />
<%= link_to "Viajes", trips_path %><br />
<%= link_to "Trip", trips_path %><br />
<%= link_to "Viajes", viajes_path %><br />
<%= link_to "Autores", planet_author_path %><br />
<%= link_to "Contact", planet_contact_path %>
</div>
<div id="main">
<%= link_to('Home', planet_index_path) + " | " + link_to('Ejemplo', planet_ejemplo_path) + " | " + link_to('Autores', planet_author_path) + " | " + link_to('Contact', planet_contact_path) %><br />
<%= yield %>
<br /><%= link_to('Home', planet_index_path) + " | " + link_to('Ejemplo', planet_ejemplo_path) + " | " + link_to('Autores', planet_author_path) + " | " + link_to('Contact', planet_contact_path) %><br />
</div>
</div>
</div>
</body>
Expand Down
1 change: 1 addition & 0 deletions app/views/planet/author.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Authors</h1><div class="data"> <%= image_tag('robert.jpeg', :size => "216x144") %> <p><span class="title">Name:</span> Robert Fabian </p> <p><span class="title">Address:</span> Madrid, c/Carboneras 3 </p> <p><span class="title">Email:</span> [email protected] </p> <p><span class="title">CV:</span></p> <div class="cv"> <ul> <li>Nombre: Robert Fabian</li> <li>Pais: Polonia</li> <li>Fecha nacimiento: 4 Marzo 1988</li> <li>Universidad de origen: AGH en Cracovia</li> </ul> </div> <!--cv--> <p class="spacer"></p></div><div class="data"> <%= image_tag('mattia.jpeg', :size => "216x144") %> <p><span class="title">Name:</span> Mattia Peirano </p> <p><span class="title">Address:</span> Madrid, c/Luceros 4 </p> <p><span class="title">Email:</span> [email protected] </p> <p><span class="title">CV:</span></p> <div class="cv"> <ul> <li>Nombre: Mattia Peirano</li> <li>Pais: Italia</li> <li>Fecha nacimiento: 14 Febrero 1988</li> <li>Universidad de origen: Politecnico di Torino</li> </ul> </div> <!--cv--> <p class="spacer"></p></div>
Expand Down
Empty file modified app/views/planet/contact.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/planet/ejemplo.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/planet/index.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/selecteds/_form.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/selecteds/create.js.erb
100644 → 100755
Empty file.
Empty file modified app/views/selecteds/edit.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/selecteds/index.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/selecteds/new.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/selecteds/show.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/sites/_form.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/sites/edit.html.erb
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions app/views/sites/index.html.erb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<td class="list_actions">
<%= link_to 'Show', site %><br/>
<%= link_to 'Edit', edit_site_path(site) %><br/>
<%= button_to 'Add to viaje', :controller => "viajes", :action => 'create', :method => "post", "viaje"=>{"site_id"=>site.id, "position"=>@pos} %> <br/>
<%= link_to 'Destroy', site,
:confirm => 'Are you sure?',
:method => :delete %>
Expand Down
Empty file modified app/views/sites/new.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/sites/show.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/trips/_form.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/trips/_trip.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/trips/edit.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/trips/index.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/trips/new.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/trips/show.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/types/_form.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/types/edit.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/types/index.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/types/new.html.erb
100644 → 100755
Empty file.
Empty file modified app/views/types/show.html.erb
100644 → 100755
Empty file.
22 changes: 22 additions & 0 deletions app/views/viajes/_form.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<%= form_for(@viaje) do |f| %>
<% if @viaje.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@viaje.errors.count, "error") %> prohibited this viaje from being saved:</h2>

<ul>
<% @viaje.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>


<div class="field">
<%= f.label :position %><br />
<%= f.number_field :position %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
6 changes: 6 additions & 0 deletions app/views/viajes/edit.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<h1>Editing viaje</h1>

<%= render 'form' %>

<%= link_to 'Show', @viaje %> |
<%= link_to 'Back', viajes_path %>
40 changes: 40 additions & 0 deletions app/views/viajes/index.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<div id="site_list">
<h1>Listing viajes</h1>

<table>
<tr class="<%= cycle('list_line_odd', 'list_line_even') %>">
<th>Image</th>
<th>Site and description</th>
<th>Position</th>
<th></th>
</tr>

<% @viajes.order(:position).each do |viaje| %>
<tr class="<%= cycle('list_line_odd', 'list_line_even') %>">
<td>
<%= link_to image_tag(viaje.site.image_url, :class => 'list_image'), viaje.site %>
</td>
<td class="list_description">
<dl>
<dt><%= link_to viaje.site.name if viaje.site %></dt>
<dd><%= truncate(strip_tags(viaje.site.description),
:length => 80) %></dd>
</dl>
</td>
<td>
<%= viaje.position %>
</td>
<td class="list_actions">

<%= link_to 'Show', viaje.site %> <br/>
<%= link_to 'Edit Position', edit_viaje_path(viaje) %> <br/>
<%= link_to 'Destroy', viaje, confirm: 'Are you sure?', method: :delete %>
</td>
</tr>
<% end %>
</table>
</div>

<br />

<!-- <%= link_to 'New Viaje', new_viaje_path %> -->
5 changes: 5 additions & 0 deletions app/views/viajes/new.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<h1>New viaje</h1>

<%= render 'form' %>

<%= link_to 'Back', viajes_path %>
15 changes: 15 additions & 0 deletions app/views/viajes/show.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<p id="notice"><%= notice %></p>

<p>
<b>Site:</b>
<%= @viaje.site.name if @viaje.site %>
</p>

<p>
<b>Position:</b>
<%= @viaje.position %>
</p>


<%= link_to 'Edit', edit_viaje_path(@viaje) %> |
<%= link_to 'Back', viajes_path %>
Empty file modified config.ru
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions config/application.rb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,6 @@ class Application < Rails::Application

# Version of your assets, change this if you want to expire all your assets
config.assets.version = '1.0'

end
end
Empty file modified config/boot.rb
100644 → 100755
Empty file.
Empty file modified config/database.yml
100644 → 100755
Empty file.
Empty file modified config/environment.rb
100644 → 100755
Empty file.
Empty file modified config/environments/development.rb
100644 → 100755
Empty file.
Empty file modified config/environments/production.rb
100644 → 100755
Empty file.
Empty file modified config/environments/test.rb
100644 → 100755
Empty file.
Empty file modified config/initializers/backtrace_silencers.rb
100644 → 100755
Empty file.
Empty file modified config/initializers/inflections.rb
100644 → 100755
Empty file.
Empty file modified config/initializers/mime_types.rb
100644 → 100755
Empty file.
Empty file modified config/initializers/secret_token.rb
100644 → 100755
Empty file.
Empty file modified config/initializers/session_store.rb
100644 → 100755
Empty file.
Empty file modified config/initializers/wrap_parameters.rb
100644 → 100755
Empty file.
Empty file modified config/locales/en.yml
100644 → 100755
Empty file.
8 changes: 8 additions & 0 deletions config/routes.rb
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Planet::Application.routes.draw do

resources :viajes

resources :selecteds

resources :trips
Expand All @@ -10,13 +12,19 @@

resources :types do
resources :sites
end

resources :sites do
resources :viajes
end

get "planet/index"

get "planet/contact"

get "planet/ejemplo" # Se añade una nueva ruta a la acción ejemplo

get "planet/author"

# The priority is based upon order of creation:
# first created -> highest priority.
Expand Down
Empty file modified db/migrate/20111121171513_create_types.rb
100644 → 100755
Empty file.
Empty file modified db/migrate/20111127165324_create_sites.rb
100644 → 100755
Empty file.
Empty file modified db/migrate/20111208154738_create_trips.rb
100644 → 100755
Empty file.
Empty file modified db/migrate/20111211202305_create_selecteds.rb
100644 → 100755
Empty file.
10 changes: 10 additions & 0 deletions db/migrate/20111215135441_create_viajes.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class CreateViajes < ActiveRecord::Migration
def change
create_table :viajes do |t|
t.integer :site_id
t.integer :position

t.timestamps
end
end
end
9 changes: 8 additions & 1 deletion db/schema.rb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.

ActiveRecord::Schema.define(:version => 20111211202305) do
ActiveRecord::Schema.define(:version => 20111215135441) do

create_table "selecteds", :force => true do |t|
t.integer "trip_id"
Expand Down Expand Up @@ -48,4 +48,11 @@
t.datetime "updated_at"
end

create_table "viajes", :force => true do |t|
t.integer "site_id"
t.integer "position"
t.datetime "created_at"
t.datetime "updated_at"
end

end
Empty file modified db/seeds.rb
100644 → 100755
Empty file.
Empty file modified doc/README_FOR_APP
100644 → 100755
Empty file.
Empty file modified lib/assets/.gitkeep
100644 → 100755
Empty file.
Empty file modified lib/tasks/.gitkeep
100644 → 100755
Empty file.
Empty file modified log/.gitkeep
100644 → 100755
Empty file.
Empty file modified public/404.html
100644 → 100755
Empty file.
Empty file modified public/422.html
100644 → 100755
Empty file.
Empty file modified public/500.html
100644 → 100755
Empty file.
Empty file modified public/favicon.ico
100644 → 100755
Empty file.
Empty file modified public/robots.txt
100644 → 100755
Empty file.
Empty file modified test/fixtures/.gitkeep
100644 → 100755
Empty file.
Empty file modified test/fixtures/selecteds.yml
100644 → 100755
Empty file.
Empty file modified test/fixtures/sites.yml
100644 → 100755
Empty file.
Empty file modified test/fixtures/trips.yml
100644 → 100755
Empty file.
Empty file modified test/fixtures/types.yml
100644 → 100755
Empty file.
9 changes: 9 additions & 0 deletions test/fixtures/viajes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html

one:
site_id: 1
position: 1

two:
site_id: 1
position: 1
Empty file modified test/functional/.gitkeep
100644 → 100755
Empty file.
Empty file modified test/functional/planet_controller_test.rb
100644 → 100755
Empty file.
Empty file modified test/functional/selecteds_controller_test.rb
100644 → 100755
Empty file.
Empty file modified test/functional/sites_controller_test.rb
100644 → 100755
Empty file.
Empty file modified test/functional/trips_controller_test.rb
100644 → 100755
Empty file.
Empty file modified test/functional/types_controller_test.rb
100644 → 100755
Empty file.
49 changes: 49 additions & 0 deletions test/functional/viajes_controller_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
require 'test_helper'

class ViajesControllerTest < ActionController::TestCase
setup do
@viaje = viajes(:one)
end

test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:viajes)
end

test "should get new" do
get :new
assert_response :success
end

test "should create viaje" do
assert_difference('Viaje.count') do
post :create, viaje: @viaje.attributes
end

assert_redirected_to viaje_path(assigns(:viaje))
end

test "should show viaje" do
get :show, id: @viaje.to_param
assert_response :success
end

test "should get edit" do
get :edit, id: @viaje.to_param
assert_response :success
end

test "should update viaje" do
put :update, id: @viaje.to_param, viaje: @viaje.attributes
assert_redirected_to viaje_path(assigns(:viaje))
end

test "should destroy viaje" do
assert_difference('Viaje.count', -1) do
delete :destroy, id: @viaje.to_param
end

assert_redirected_to viajes_path
end
end
Empty file modified test/integration/.gitkeep
100644 → 100755
Empty file.
Empty file modified test/performance/browsing_test.rb
100644 → 100755
Empty file.
Empty file modified test/test_helper.rb
100644 → 100755
Empty file.
Empty file modified test/unit/.gitkeep
100644 → 100755
Empty file.
Empty file modified test/unit/helpers/planet_helper_test.rb
100644 → 100755
Empty file.
Empty file modified test/unit/helpers/selecteds_helper_test.rb
100644 → 100755
Empty file.
Empty file modified test/unit/helpers/sites_helper_test.rb
100644 → 100755
Empty file.
Empty file modified test/unit/helpers/trips_helper_test.rb
100644 → 100755
Empty file.
Empty file modified test/unit/helpers/types_helper_test.rb
100644 → 100755
Empty file.
Loading