Skip to content

Commit

Permalink
add link controller and model
Browse files Browse the repository at this point in the history
  • Loading branch information
kakas committed Sep 6, 2015
1 parent f75ce8d commit 4d917e1
Show file tree
Hide file tree
Showing 12 changed files with 94 additions and 53 deletions.
3 changes: 3 additions & 0 deletions app/assets/javascripts/links.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://coffeescript.org/
3 changes: 3 additions & 0 deletions app/assets/stylesheets/links.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// Place all the styles related to the Links controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
25 changes: 25 additions & 0 deletions app/controllers/links_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class LinksController < ApplicationController


def index
end

def show
end

def create
end

def edit
end

def update
end

def destroy
end

private


end
2 changes: 2 additions & 0 deletions app/helpers/links_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
module LinksHelper
end
2 changes: 2 additions & 0 deletions app/models/link.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
class Link < ActiveRecord::Base
end
1 change: 1 addition & 0 deletions app/views/links/index.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h1>Index</h1>
55 changes: 2 additions & 53 deletions config/routes.rb
Original file line number Diff line number Diff line change
@@ -1,56 +1,5 @@
Rails.application.routes.draw do
# The priority is based upon order of creation: first created -> highest priority.
# See how all your routes lay out with "rake routes".

# You can have the root of your site routed with "root"
# root 'welcome#index'

# Example of regular route:
# get 'products/:id' => 'catalog#view'

# Example of named route that can be invoked with purchase_url(id: product.id)
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase

# Example resource route (maps HTTP verbs to controller actions automatically):
# resources :products

# Example resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end

# Example resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end

# Example resource route with more complex sub-resources:
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', on: :collection
# end
# end

# Example resource route with concerns:
# concern :toggleable do
# post 'toggle'
# end
# resources :posts, concerns: :toggleable
# resources :photos, concerns: :toggleable

# Example resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end
resources :links
root 'links#index'
end
10 changes: 10 additions & 0 deletions db/migrate/20150906133807_create_links.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class CreateLinks < ActiveRecord::Migration
def change
create_table :links do |t|
t.string :title
t.text :url

t.timestamps null: false
end
end
end
23 changes: 23 additions & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20150906133807) do

create_table "links", force: :cascade do |t|
t.string "title"
t.text "url"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end

end
7 changes: 7 additions & 0 deletions test/controllers/links_controller_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'test_helper'

class LinksControllerTest < ActionController::TestCase
# test "the truth" do
# assert true
# end
end
9 changes: 9 additions & 0 deletions test/fixtures/links.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/FixtureSet.html

one:
title: MyString
url: MyText

two:
title: MyString
url: MyText
7 changes: 7 additions & 0 deletions test/models/link_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
require 'test_helper'

class LinkTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end

0 comments on commit 4d917e1

Please sign in to comment.