Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Initial ExternalSummary model #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions app/models/external_summary.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class ExternalSummary < ActiveRecord::Base
acts_as_votable
end
11 changes: 11 additions & 0 deletions db/migrate/20140112235710_create_external_summaries.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class CreateExternalSummaries < ActiveRecord::Migration
def change
create_table :external_summaries do |t|
t.text :url
t.string :category
t.string :title

t.timestamps
end
end
end
9 changes: 9 additions & 0 deletions spec/factories/external_summaries.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
factory :external_summary do
url "MyText"
category "MyString"
title "MyString"
end
end
5 changes: 5 additions & 0 deletions spec/models/external_summary_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
require 'spec_helper'

describe ExternalSummary do
pending "add some examples to (or delete) #{__FILE__}"
end