このサイトはJavaScriptを使用しています
ホーム
エクスプローラー
ヘルプ
サインイン
adrianshort
/
apollo
ミラー元
https://github.com/adrianshort/apollo.git
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
0
Wiki
アクティビティ
ソースを参照
Add ActiveRecord subclassing
master
Adrian Short
12年前
親
370d27655e
コミット
f5a0f586c7
3個のファイルの変更
、
3行の追加
、
3行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
app/models/feed.rb
+1
-1
app/models/post.rb
+1
-1
app/models/user.rb
+ 1
- 1
app/models/feed.rb
ファイルの表示
@@ -1,4 +1,4 @@
class Feed
class Feed
< ActiveRecord::Base
has_many :posts, :dependent => :destroy
validates :title, :presence => true
+ 1
- 1
app/models/post.rb
ファイルの表示
@@ -1,4 +1,4 @@
class Post
class Post
< ActiveRecord::Base
belongs_to :feed
EARTH_RADIUS_M = 6378000
+ 1
- 1
app/models/user.rb
ファイルの表示
@@ -1,4 +1,4 @@
class User
class User
< ActiveRecord::Base
authenticates_with_sorcery!
# attr_accessible :email, :password, :password_confirmation
書き込み
プレビュー
読み込み中…
キャンセル
保存