rostra 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/controllers/rostra/base/answers_controller.rb +1 -4
- data/app/controllers/rostra/base/comments_controller.rb +1 -1
- data/app/controllers/rostra/base/questions_controller.rb +1 -1
- data/app/models/rostra/ability.rb +1 -1
- data/app/views/rostra/questions/show.html.erb +0 -2
- data/config/routes.rb +1 -1
- data/lib/rostra/version.rb +1 -1
- metadata +2 -3
- data/app/views/rostra/answers/new.html.erb +0 -5
@@ -1,6 +1,6 @@
|
|
1
1
|
module Rostra
|
2
2
|
module Base
|
3
|
-
class AnswersController < ApplicationController
|
3
|
+
class AnswersController < Rostra::ApplicationController
|
4
4
|
load_and_authorize_resource
|
5
5
|
before_filter :fetch_question
|
6
6
|
|
@@ -21,9 +21,6 @@ module Rostra
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
def new
|
25
|
-
end
|
26
|
-
|
27
24
|
def edit
|
28
25
|
end
|
29
26
|
|
data/config/routes.rb
CHANGED
data/lib/rostra/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: rostra
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Cory Schires
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-10-
|
13
|
+
date: 2011-10-26 00:00:00 -05:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -518,7 +518,6 @@ files:
|
|
518
518
|
- app/views/layouts/rostra/application.html.erb
|
519
519
|
- app/views/rostra/answers/_form.html.erb
|
520
520
|
- app/views/rostra/answers/edit.html.erb
|
521
|
-
- app/views/rostra/answers/new.html.erb
|
522
521
|
- app/views/rostra/answers/vote.js.erb
|
523
522
|
- app/views/rostra/application_mailer/notification.html.erb
|
524
523
|
- app/views/rostra/application_mailer/notification.text.erb
|