rails_wiki 0.0.1
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/MIT-LICENSE +20 -0
- data/Rakefile +34 -0
- data/app/controllers/rails_wiki/application_controller.rb +2 -0
- data/app/controllers/rails_wiki/articles_controller.rb +58 -0
- data/app/helpers/rails_wiki/application_helper.rb +4 -0
- data/app/helpers/rails_wiki/articles_helper.rb +4 -0
- data/app/models/rails_wiki/article.rb +19 -0
- data/app/views/rails_wiki/articles/_new_form.html.erb +17 -0
- data/app/views/rails_wiki/articles/edit.html.erb +17 -0
- data/app/views/rails_wiki/articles/index.html.erb +11 -0
- data/app/views/rails_wiki/articles/new.html.erb +2 -0
- data/app/views/rails_wiki/articles/show.html.erb +30 -0
- data/app/views/rails_wiki/articles/versions.html.erb +48 -0
- data/config/initializers/route_hack.rb +11 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20140922180259_create_rails_wiki_articles.rb +14 -0
- data/lib/rails_wiki.rb +4 -0
- data/lib/rails_wiki/engine.rb +5 -0
- data/lib/rails_wiki/version.rb +3 -0
- data/lib/tasks/rails_wiki_tasks.rake +4 -0
- data/test/controllers/rails_wiki/articles_controller_test.rb +51 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +78 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/fixtures/rails_wiki/articles.yml +11 -0
- data/test/helpers/rails_wiki/articles_helper_test.rb +6 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/models/rails_wiki/article_test.rb +9 -0
- data/test/rails_wiki_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +168 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2014 YOURNAME
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'RailsWiki'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
18
|
+
load 'rails/tasks/engine.rake'
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
Bundler::GemHelper.install_tasks
|
23
|
+
|
24
|
+
require 'rake/testtask'
|
25
|
+
|
26
|
+
Rake::TestTask.new(:test) do |t|
|
27
|
+
t.libs << 'lib'
|
28
|
+
t.libs << 'test'
|
29
|
+
t.pattern = 'test/**/*_test.rb'
|
30
|
+
t.verbose = false
|
31
|
+
end
|
32
|
+
|
33
|
+
|
34
|
+
task default: :test
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require_dependency "rails_wiki/application_controller"
|
2
|
+
|
3
|
+
module RailsWiki
|
4
|
+
class ArticlesController < ApplicationController
|
5
|
+
def index
|
6
|
+
@articles = Article.order(:slug).paginate per_page: 20, page: params[:page]
|
7
|
+
end
|
8
|
+
|
9
|
+
|
10
|
+
def new
|
11
|
+
@article = Article.new
|
12
|
+
end
|
13
|
+
|
14
|
+
def show
|
15
|
+
@article = Article.friendly.find(params[:id])
|
16
|
+
markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML, autolink: true, tables: true)
|
17
|
+
@markdown_body = markdown.render(@article.text || '')
|
18
|
+
@versions_available = true if @article.versions.count > 1
|
19
|
+
|
20
|
+
rescue ActiveRecord::RecordNotFound => ex
|
21
|
+
@article = Article.new(title: params[:id],text: "Article wasn't found, want to create one?")
|
22
|
+
end
|
23
|
+
|
24
|
+
def create
|
25
|
+
@article = Article.new(article_params)
|
26
|
+
|
27
|
+
@article.save
|
28
|
+
redirect_to @article
|
29
|
+
end
|
30
|
+
|
31
|
+
def edit
|
32
|
+
@article = Article.friendly.find(params[:id])
|
33
|
+
end
|
34
|
+
|
35
|
+
def versions
|
36
|
+
require 'differ'
|
37
|
+
Differ.format = :html
|
38
|
+
|
39
|
+
|
40
|
+
@article = Article.friendly.find(params[:id])
|
41
|
+
end
|
42
|
+
|
43
|
+
def update
|
44
|
+
@article = Article.friendly.find(params[:id])
|
45
|
+
if @article.update_attributes article_params
|
46
|
+
redirect_to @article, notice: 'All good!'
|
47
|
+
else
|
48
|
+
render :edit
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
private
|
53
|
+
|
54
|
+
def article_params
|
55
|
+
params.require(:article).permit(:title, :text, :version, :references, :protected)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module RailsWiki
|
2
|
+
class Article < ActiveRecord::Base
|
3
|
+
validates_uniqueness_of :title
|
4
|
+
|
5
|
+
include FriendlyId
|
6
|
+
friendly_id :title
|
7
|
+
has_paper_trail
|
8
|
+
|
9
|
+
before_save :slugify_title
|
10
|
+
|
11
|
+
def slugify_title
|
12
|
+
self.title = title.downcase.gsub(" ","-")
|
13
|
+
end
|
14
|
+
|
15
|
+
def pretty_title
|
16
|
+
title.gsub("-",' ').titlecase
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<%= simple_form_for @article, url: articles_path do |f| %>
|
2
|
+
<p>
|
3
|
+
<%= f.label :title %><br>
|
4
|
+
<%= f.text_field :title %>
|
5
|
+
</p>
|
6
|
+
|
7
|
+
<%= f.input :text, input_html: {style: "width: 800px; height: 500px;"} %>
|
8
|
+
|
9
|
+
<% if user_signed_in? %>
|
10
|
+
<p>
|
11
|
+
<%= f.check_box :protected %> Protected
|
12
|
+
</p>
|
13
|
+
<% end %>
|
14
|
+
<p>
|
15
|
+
<%= f.submit %>
|
16
|
+
</p>
|
17
|
+
<% end %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<h1>Edit</h1>
|
2
|
+
<% if user_signed_in? || :protected != true %>
|
3
|
+
<%= simple_form_for @article do |f| %>
|
4
|
+
<%= f.input :title %>
|
5
|
+
|
6
|
+
<%= f.input :text, input_html: {style: "width: 800px; height: 500px;"} %>
|
7
|
+
|
8
|
+
<% if user_signed_in? %>
|
9
|
+
<p>
|
10
|
+
<%= f.check_box :protected %> Protected
|
11
|
+
</p>
|
12
|
+
<% end %>
|
13
|
+
<p>
|
14
|
+
<%= f.button :submit, class: 'btn btn-success' %>
|
15
|
+
</p>
|
16
|
+
<% end %>
|
17
|
+
<% end %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<div class="container">
|
2
|
+
<% @articles.each do |article| %>
|
3
|
+
<% if !article.archived || user_signed_in? %>
|
4
|
+
<div class="panel panel-default">
|
5
|
+
<h3><%= link_to article.pretty_title, article %></h3>
|
6
|
+
<hr>
|
7
|
+
<%= article.text.truncate(30) %>
|
8
|
+
</div>
|
9
|
+
<% end %>
|
10
|
+
<% end %>
|
11
|
+
</div>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<% if @versions_available && current_user %>
|
2
|
+
<div class="row">
|
3
|
+
<div class="12-cols pull-right">
|
4
|
+
<%= link_to "Change Log", versions_article_path(@article) %>
|
5
|
+
</div>
|
6
|
+
</div>
|
7
|
+
<% end %>
|
8
|
+
|
9
|
+
<div class="container">
|
10
|
+
<% if (@article.archived && !user_signed_in?) %>
|
11
|
+
<div class="alert alert-warning">This is an archived article. You must sign-in to continue.</div>
|
12
|
+
<% elsif @article.persisted? %>
|
13
|
+
<h1>
|
14
|
+
<%= @article.title %>
|
15
|
+
</h1>
|
16
|
+
<%= link_to "Edit", edit_article_path %>
|
17
|
+
<small>
|
18
|
+
<%= if @article.protected
|
19
|
+
"Article is Protected"
|
20
|
+
end %>
|
21
|
+
</small>
|
22
|
+
|
23
|
+
<hr>
|
24
|
+
|
25
|
+
<%= @markdown_body.html_safe %>
|
26
|
+
|
27
|
+
<% else %>
|
28
|
+
<%= render 'rails_wiki/articles/new_form' %>
|
29
|
+
<% end %>
|
30
|
+
</div>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<div class="col-md-12">
|
3
|
+
<%= link_to "Back", @article %>
|
4
|
+
</div>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<div class="row">
|
8
|
+
<div class="col-md-12">
|
9
|
+
<div class="widget widget-table">
|
10
|
+
<div class="widget-header">
|
11
|
+
|
12
|
+
<h3><i class="fa fa-tag"></i>Change History</h3>
|
13
|
+
</div> <!-- /widget-header -->
|
14
|
+
<div class="widget-content">
|
15
|
+
|
16
|
+
<table class="table table-striped table-bordered">
|
17
|
+
<thead>
|
18
|
+
<tr>
|
19
|
+
<th>Date</th>
|
20
|
+
<th>Event</th>
|
21
|
+
<th>User</th>
|
22
|
+
<th>Changes</th>
|
23
|
+
</tr>
|
24
|
+
</thead>
|
25
|
+
<tbody>
|
26
|
+
<% @article.versions.each do |history|%>
|
27
|
+
<tr>
|
28
|
+
<td><%= history.created_at %></td>
|
29
|
+
<td><%= history.event %></td>
|
30
|
+
<td><%= history.version_author %></td>
|
31
|
+
<td>
|
32
|
+
<% history.changeset.each_with_index do |change,index| %>
|
33
|
+
<%= change[0] %>
|
34
|
+
<% if change[0] == 'text' %>
|
35
|
+
<% Differ.diff_by_word(change[1][1].to_s, change[1][0].to_s).to_s.html_safe %>
|
36
|
+
<% else %>
|
37
|
+
<b><%= change[0] %></b> <%= change[1][0] %> to <%= change[1][1] %>
|
38
|
+
<% end %>
|
39
|
+
<% end %>
|
40
|
+
</td>
|
41
|
+
</tr>
|
42
|
+
<% end %>
|
43
|
+
</tbody>
|
44
|
+
</table>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
</div>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module RailsWiki
|
2
|
+
module ApplicationHelper
|
3
|
+
def method_missing(method, *args, &block)
|
4
|
+
if (method.to_s.end_with?('_path') || method.to_s.end_with?('_url')) && main_app.respond_to?(method)
|
5
|
+
main_app.send(method, *args)
|
6
|
+
else
|
7
|
+
super
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
data/config/routes.rb
ADDED
data/lib/rails_wiki.rb
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module RailsWiki
|
4
|
+
class ArticlesControllerTest < ActionController::TestCase
|
5
|
+
setup do
|
6
|
+
@article = articles(:one)
|
7
|
+
end
|
8
|
+
|
9
|
+
test "should get index" do
|
10
|
+
get :index
|
11
|
+
assert_response :success
|
12
|
+
assert_not_nil assigns(:articles)
|
13
|
+
end
|
14
|
+
|
15
|
+
test "should get new" do
|
16
|
+
get :new
|
17
|
+
assert_response :success
|
18
|
+
end
|
19
|
+
|
20
|
+
test "should create article" do
|
21
|
+
assert_difference('Article.count') do
|
22
|
+
post :create, article: { protected: @article.protected, text: @article.text, title: @article.title }
|
23
|
+
end
|
24
|
+
|
25
|
+
assert_redirected_to article_path(assigns(:article))
|
26
|
+
end
|
27
|
+
|
28
|
+
test "should show article" do
|
29
|
+
get :show, id: @article
|
30
|
+
assert_response :success
|
31
|
+
end
|
32
|
+
|
33
|
+
test "should get edit" do
|
34
|
+
get :edit, id: @article
|
35
|
+
assert_response :success
|
36
|
+
end
|
37
|
+
|
38
|
+
test "should update article" do
|
39
|
+
patch :update, id: @article, article: { protected: @article.protected, text: @article.text, title: @article.title }
|
40
|
+
assert_redirected_to article_path(assigns(:article))
|
41
|
+
end
|
42
|
+
|
43
|
+
test "should destroy article" do
|
44
|
+
assert_difference('Article.count', -1) do
|
45
|
+
delete :destroy, id: @article
|
46
|
+
end
|
47
|
+
|
48
|
+
assert_redirected_to articles_path
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
== README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
25
|
+
|
26
|
+
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
28
|
+
<tt>rake doc:app</tt>.
|
data/test/dummy/Rakefile
ADDED