blogr 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/app/assets/stylesheets/blogr/app.sass +5 -5
- data/app/assets/stylesheets/blogr/application.css.scss +0 -1
- data/app/assets/stylesheets/blogr/login.sass +43 -22
- data/app/controllers/blogr/posts_controller.rb +8 -2
- data/app/controllers/blogr/users_controller.rb +6 -1
- data/app/views/blogr/categories/index.json.jbuilder +1 -0
- data/app/views/blogr/categories/show.json.jbuilder +1 -0
- data/app/views/blogr/comments/index.json.jbuilder +1 -0
- data/app/views/blogr/comments/show.json.jbuilder +1 -0
- data/app/views/blogr/posts/_form.html.haml +4 -0
- data/app/views/blogr/posts/index.html.haml +4 -0
- data/app/views/blogr/posts/index.json.jbuilder +2 -0
- data/app/views/blogr/posts/show.html.haml +2 -0
- data/app/views/blogr/posts/show.json.jbuilder +1 -0
- data/app/views/blogr/sessions/new.html.haml +4 -4
- data/app/views/blogr/tags/index.json.jbuilder +1 -0
- data/app/views/blogr/tags/show.json.jbuilder +1 -0
- data/app/views/blogr/users/index.html.haml +1 -1
- data/app/views/blogr/users/index.json.jbuilder +1 -0
- data/app/views/blogr/users/show.html.haml +29 -0
- data/app/views/blogr/users/show.json.jbuilder +1 -0
- data/app/views/layouts/blogr/application.html.haml +4 -3
- data/app/views/layouts/blogr/login.html.haml +2 -1
- data/config/blogr.example.rb +2 -2
- data/config/routes.rb +1 -1
- data/db/migrate/20140305170329_add_post_image_to_blogr_posts.rb +5 -0
- data/lib/blogr/version.rb +1 -1
- metadata +51 -15
- data/app/assets/stylesheets/blogr/bootstrap.min.css +0 -845
- data/app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.svg +0 -229
- data/app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.woff +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cebbeb3d6b2496a02d4e9d689ee0bb26482d254
|
4
|
+
data.tar.gz: 459d80a7d69f452588f4c1d1947f0344b064cc6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 946630ffcd403d4b2b5a4f326afcfbce95eb1d5ceead5abaf51725289ad4c051f1778f30d0d666a81d024f57efcc77607d790910dc570504d7dd984dab77e82c
|
7
|
+
data.tar.gz: 559b747dcb337537e3a631d73afbf7935408769c1dc4ffaf9cc944e7d2bde7bc8fd96617b5a1fd51f983d944e9f5ae47e28cd907dc4e9764f9362f59d39f332c
|
data/README.md
CHANGED
@@ -10,6 +10,8 @@ Some code from [pixelbits/simpleblog](https://github.com/pixelbits/simpleblog).
|
|
10
10
|
|
11
11
|
Blogr is a framework for your blog with an admin. You are required to create the blog frontend.
|
12
12
|
|
13
|
+
For a working & in production preview, see [Rails Tuts](http://railstuts.net). The source of the site is on [GitHub](https://github.com/railstuts/site).
|
14
|
+
|
13
15
|
![](http://s.vou.pe/GUpWX.png)
|
14
16
|
|
15
17
|
## To install
|
@@ -14,13 +14,13 @@ body
|
|
14
14
|
float: left
|
15
15
|
margin-right: 10px
|
16
16
|
&.comments span.icon
|
17
|
-
background-image: image-url("icons/black/speech-bubble-left-4.svg")
|
17
|
+
background-image: image-url("blogr/icons/black/speech-bubble-left-4.svg")
|
18
18
|
&.posts span.icon
|
19
|
-
background-image: image-url("icons/black/paper-ripped.svg")
|
19
|
+
background-image: image-url("blogr/icons/black/paper-ripped.svg")
|
20
20
|
&.users span.icon
|
21
|
-
background-image: image-url("icons/black/users.svg")
|
21
|
+
background-image: image-url("blogr/icons/black/users.svg")
|
22
22
|
&.tags span.icon
|
23
|
-
background-image: image-url("icons/black/tag.svg")
|
23
|
+
background-image: image-url("blogr/icons/black/tag.svg")
|
24
24
|
|
25
25
|
section.sidebar
|
26
26
|
width: 300px
|
@@ -34,7 +34,7 @@ section.sidebar
|
|
34
34
|
height: 85px
|
35
35
|
border-bottom: 1px solid #939495
|
36
36
|
h1
|
37
|
-
background-image: image-url("logo.png")
|
37
|
+
background-image: image-url("blogr/logo.png")
|
38
38
|
background-repeat: no-repeat
|
39
39
|
background-size: 150px 75px
|
40
40
|
width: 150px
|
@@ -1,21 +1,12 @@
|
|
1
1
|
body.blogr.login
|
2
|
+
background-color: #293541
|
3
|
+
color: #606468
|
2
4
|
font-size: 14px
|
3
|
-
-
|
4
|
-
a
|
5
|
-
color: #000
|
6
|
-
.alert
|
7
|
-
width: 300px
|
8
|
-
display: block
|
9
|
-
margin: 0 auto
|
10
|
-
margin: -50px auto 20px auto
|
11
|
-
text-align: center
|
5
|
+
line-height: 1.5em
|
12
6
|
|
13
7
|
.login_container
|
8
|
+
margin: 50px auto
|
14
9
|
width: 350px
|
15
|
-
position: absolute
|
16
|
-
top: 50%
|
17
|
-
left: 50%
|
18
|
-
margin: -180px auto 0 -170px
|
19
10
|
.login
|
20
11
|
background: #fff
|
21
12
|
border-radius: 10px
|
@@ -26,12 +17,42 @@ body.blogr.login
|
|
26
17
|
width: 200px
|
27
18
|
display: block
|
28
19
|
margin: auto
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
20
|
+
form
|
21
|
+
input
|
22
|
+
height: 50px
|
23
|
+
border: none
|
24
|
+
font-size: 14px
|
25
|
+
line-height: 1.5em
|
26
|
+
-webkit-appearance: none
|
27
|
+
display: block
|
28
|
+
margin: auto
|
29
|
+
|
30
|
+
|
31
|
+
input#username
|
32
|
+
background-color: #FAFAFA
|
33
|
+
border-radius: 0px 3px 3px 0px
|
34
|
+
-moz-border-radius: 0px 3px 3px 0px
|
35
|
+
-webkit-border-radius: 0px 3px 3px 0px
|
36
|
+
margin-bottom: 1em
|
37
|
+
width: 300px
|
38
|
+
|
39
|
+
input#password
|
40
|
+
background-color: #FAFAFA
|
41
|
+
border-radius: 0px 3px 3px 0px
|
42
|
+
-moz-border-radius: 0px 3px 3px 0px
|
43
|
+
-webkit-border-radius: 0px 3px 3px 0px
|
44
|
+
margin-bottom: 1em
|
45
|
+
width: 300px
|
46
|
+
|
47
|
+
input[type="submit"]
|
48
|
+
border-radius: 3px
|
49
|
+
-moz-border-radius: 3px
|
50
|
+
-webkit-border-radius: 3px
|
51
|
+
background-color: #e57e31
|
52
|
+
color: #eee
|
53
|
+
font-weight: bold
|
54
|
+
margin-bottom: 2em
|
55
|
+
text-transform: uppercase
|
56
|
+
width: 300px
|
57
|
+
&:hover
|
58
|
+
background-color: #D16D21
|
@@ -6,8 +6,14 @@ module Blogr
|
|
6
6
|
before_action :set_post, only: [:show, :edit, :update, :destroy]
|
7
7
|
|
8
8
|
def index
|
9
|
-
|
9
|
+
pub = params[:published] == "false" ? false : true
|
10
|
+
@posts = Post.order(published_at: :desc).where(published: pub)
|
10
11
|
@title = "Posts"
|
12
|
+
if pub
|
13
|
+
@subtitle = "Showing Published Posts"
|
14
|
+
else
|
15
|
+
@subtitle = "Showing Draft Posts"
|
16
|
+
end
|
11
17
|
end
|
12
18
|
|
13
19
|
def show
|
@@ -56,7 +62,7 @@ module Blogr
|
|
56
62
|
end
|
57
63
|
|
58
64
|
def post_params
|
59
|
-
params.require(:post).permit(:title, :category_id, :permalink, :content, :tag_list, :published, :published_at)
|
65
|
+
params.require(:post).permit(:title, :category_id, :permalink, :content, :tag_list, :post_image, :published, :published_at)
|
60
66
|
end
|
61
67
|
|
62
68
|
end
|
@@ -3,13 +3,18 @@ require_dependency "blogr/application_controller"
|
|
3
3
|
module Blogr
|
4
4
|
class UsersController < ApplicationController
|
5
5
|
|
6
|
-
before_action :set_user, only: [:edit, :update, :destroy]
|
6
|
+
before_action :set_user, only: [:edit, :show, :update, :destroy]
|
7
7
|
|
8
8
|
def index
|
9
9
|
@title = "Users"
|
10
10
|
@users = Blogr::User.all
|
11
11
|
end
|
12
12
|
|
13
|
+
def show
|
14
|
+
@title = @user.username
|
15
|
+
@posts = @user.posts
|
16
|
+
end
|
17
|
+
|
13
18
|
def new
|
14
19
|
@title = "New User"
|
15
20
|
@user = User.new
|
@@ -0,0 +1 @@
|
|
1
|
+
json.categories @categories, :id, :title, :description, :permalink, :created_at, :updated_at
|
@@ -0,0 +1 @@
|
|
1
|
+
json.extract! @category, :id, :title, :description, :permalink, :created_at, :updated_at
|
@@ -0,0 +1 @@
|
|
1
|
+
json.comments @comments, :id, :post_id, :user_id, :content, :author_name, :author_email, :created_at, :updated_at
|
@@ -0,0 +1 @@
|
|
1
|
+
json.extract! @comment, :id, :post_id, :user_id, :content, :author_name, :author_email, :created_at, :updated_at
|
@@ -29,6 +29,10 @@
|
|
29
29
|
= f.label :tag_list
|
30
30
|
= f.text_field :tag_list, placeholder: "Tags - seperate by commas", class: "form-control"
|
31
31
|
|
32
|
+
.form-group
|
33
|
+
= f.label :post_image
|
34
|
+
= f.text_field :post_image, class: "form-control"
|
35
|
+
|
32
36
|
.row
|
33
37
|
.col-md-4
|
34
38
|
= f.label :published
|
@@ -1,4 +1,8 @@
|
|
1
1
|
- content_for :links do
|
2
|
+
- if params[:published] == "false"
|
3
|
+
= link_to "Published Posts", posts_path, class: "btn btn-default"
|
4
|
+
- else
|
5
|
+
= link_to "Drafts", posts_path(published: false), class: "btn btn-default"
|
2
6
|
= link_to "New Post", new_post_path, class: "btn btn-default"
|
3
7
|
|
4
8
|
%table.table.table-bordered.table-striped
|
@@ -0,0 +1 @@
|
|
1
|
+
json.extract! @posts, :id, :title, :content, :permalink, :published_at, :created_at, :updated_at
|
@@ -1,8 +1,8 @@
|
|
1
1
|
.login_container
|
2
|
-
= render "blogr/shared/messages"
|
3
2
|
.login
|
3
|
+
= render "blogr/shared/messages"
|
4
4
|
= image_tag "blogr/logo.png", class: "logo"
|
5
5
|
= form_tag sessions_path, class: "form-inline" do
|
6
|
-
= text_field_tag :username, params[:username], "autocorrect" => "off", "autocapitalize" => "off", placeholder: "Username", class: "form-control"
|
7
|
-
= password_field_tag :password, nil, placeholder: "Password", class: "form-control"
|
8
|
-
=
|
6
|
+
%p= text_field_tag :username, params[:username], "autocorrect" => "off", "autocapitalize" => "off", placeholder: "Username", class: "form-control"
|
7
|
+
%p= password_field_tag :password, nil, placeholder: "Password", class: "form-control"
|
8
|
+
%p= submit_tag "Sign In"
|
@@ -0,0 +1 @@
|
|
1
|
+
json.tags @tags, :id, :name, :permalink, :created_at, :updated_at
|
@@ -0,0 +1 @@
|
|
1
|
+
json.extract! @tag, :id, :name, :permalink, :created_at, :updated_at
|
@@ -0,0 +1 @@
|
|
1
|
+
json.users @users, :id, :first_name, :last_name, :username, :email, :created_at, :updated_at
|
@@ -0,0 +1,29 @@
|
|
1
|
+
- content_for :links do
|
2
|
+
= link_to "Edit User", edit_user_path, class: "btn btn-default"
|
3
|
+
|
4
|
+
%h4 Report Card
|
5
|
+
%ul
|
6
|
+
%li
|
7
|
+
%b Name:
|
8
|
+
= @user.name
|
9
|
+
%li
|
10
|
+
%b Email:
|
11
|
+
= @user.email
|
12
|
+
%li
|
13
|
+
%b Joined:
|
14
|
+
= @user.created_at.strftime("%d %B %Y")
|
15
|
+
%hr
|
16
|
+
%h4
|
17
|
+
= "#{@user.first_name}'s Posts"
|
18
|
+
%table.table.table-bordered.table-striped
|
19
|
+
%thead
|
20
|
+
%tr
|
21
|
+
%th Title
|
22
|
+
%th Date
|
23
|
+
%th Published?
|
24
|
+
%tbody
|
25
|
+
- @posts.each do |post|
|
26
|
+
= content_tag_for(:tr, post) do
|
27
|
+
%td= link_to post.title, post
|
28
|
+
%td= post.date_parsed
|
29
|
+
%td= post.published
|
@@ -0,0 +1 @@
|
|
1
|
+
json.extract! @user, :id, :first_name, :last_name, :username, :email, :created_at, :updated_at
|
@@ -3,7 +3,8 @@
|
|
3
3
|
%head
|
4
4
|
%meta{charset: "utf-8"}/
|
5
5
|
%meta{content: "width=device-width, initial-scale=1.0", name: "viewport"}/
|
6
|
-
%title #{@title} - Blogr
|
6
|
+
%title #{@title} - #{Blogr.config.name}
|
7
|
+
= stylesheet_link_tag "//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"
|
7
8
|
= stylesheet_link_tag "blogr/application"
|
8
9
|
= javascript_include_tag "blogr/application"
|
9
10
|
= csrf_meta_tags
|
@@ -12,7 +13,7 @@
|
|
12
13
|
|
13
14
|
%section.sidebar
|
14
15
|
.logo
|
15
|
-
%h1= link_to "Blogr", root_url
|
16
|
+
%h1= link_to "#{Blogr.config.name} ", root_url
|
16
17
|
.version= link_to "v#{Blogr::VERSION}", "https://github.com/blogr/engine"
|
17
18
|
.user
|
18
19
|
= gravatar(current_blogr_user.email, {size: 50, class: "avatar"})
|
@@ -41,7 +42,7 @@
|
|
41
42
|
|
42
43
|
%footer
|
43
44
|
%p.pull-right Powered by #{link_to "Blogr", "https://github.com/blogr/engine"} v#{Blogr::VERSION}
|
44
|
-
%p © Blogr #{Time.now.year}
|
45
|
+
%p © #{Blogr.config.name} #{Time.now.year}
|
45
46
|
|
46
47
|
- if Rails.env.development?
|
47
48
|
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
|
@@ -3,7 +3,8 @@
|
|
3
3
|
%head
|
4
4
|
%meta{charset: "utf-8"}/
|
5
5
|
%meta{content: "width=device-width, initial-scale=1.0", name: "viewport"}/
|
6
|
-
%title
|
6
|
+
%title Login - #{Blogr.config.name}
|
7
|
+
= stylesheet_link_tag "//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"
|
7
8
|
= stylesheet_link_tag "blogr/application"
|
8
9
|
= javascript_include_tag "blogr/application"
|
9
10
|
= csrf_meta_tags
|
data/config/blogr.example.rb
CHANGED
data/config/routes.rb
CHANGED
data/lib/blogr/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blogr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dean Perry
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -81,19 +81,19 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 4.1.0
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name: haml
|
84
|
+
name: haml
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - '>='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
89
|
+
version: 4.0.4
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '>='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
96
|
+
version: 4.0.4
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: redcarpet
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,28 +170,42 @@ dependencies:
|
|
170
170
|
requirements:
|
171
171
|
- - '>='
|
172
172
|
- !ruby/object:Gem::Version
|
173
|
-
version:
|
173
|
+
version: 1.1.3
|
174
174
|
type: :runtime
|
175
175
|
prerelease: false
|
176
176
|
version_requirements: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
178
|
- - '>='
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version:
|
180
|
+
version: 1.1.3
|
181
181
|
- !ruby/object:Gem::Dependency
|
182
182
|
name: reverse_markdown
|
183
183
|
requirement: !ruby/object:Gem::Requirement
|
184
184
|
requirements:
|
185
185
|
- - '>='
|
186
186
|
- !ruby/object:Gem::Version
|
187
|
-
version:
|
187
|
+
version: 0.4.7
|
188
188
|
type: :runtime
|
189
189
|
prerelease: false
|
190
190
|
version_requirements: !ruby/object:Gem::Requirement
|
191
191
|
requirements:
|
192
192
|
- - '>='
|
193
193
|
- !ruby/object:Gem::Version
|
194
|
-
version:
|
194
|
+
version: 0.4.7
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: jbuilder
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - '>='
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '1.2'
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - '>='
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '1.2'
|
195
209
|
- !ruby/object:Gem::Dependency
|
196
210
|
name: mysql2
|
197
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -262,6 +276,20 @@ dependencies:
|
|
262
276
|
- - '>='
|
263
277
|
- !ruby/object:Gem::Version
|
264
278
|
version: '0'
|
279
|
+
- !ruby/object:Gem::Dependency
|
280
|
+
name: haml-rails
|
281
|
+
requirement: !ruby/object:Gem::Requirement
|
282
|
+
requirements:
|
283
|
+
- - '>='
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: '0'
|
286
|
+
type: :development
|
287
|
+
prerelease: false
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
289
|
+
requirements:
|
290
|
+
- - '>='
|
291
|
+
- !ruby/object:Gem::Version
|
292
|
+
version: '0'
|
265
293
|
description: A Rails engine for adding blogging to any Rails 4 application
|
266
294
|
email:
|
267
295
|
- dean@voupe.com
|
@@ -972,11 +1000,6 @@ files:
|
|
972
1000
|
- app/assets/javascripts/blogr/tags.js
|
973
1001
|
- app/assets/stylesheets/blogr/app.sass
|
974
1002
|
- app/assets/stylesheets/blogr/application.css.scss
|
975
|
-
- app/assets/stylesheets/blogr/bootstrap.min.css
|
976
|
-
- app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.eot
|
977
|
-
- app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.svg
|
978
|
-
- app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.ttf
|
979
|
-
- app/assets/stylesheets/blogr/fonts/glyphicons-halflings-regular.woff
|
980
1003
|
- app/assets/stylesheets/blogr/login.sass
|
981
1004
|
- app/assets/stylesheets/blogr/pygments.css.erb
|
982
1005
|
- app/assets/stylesheets/blogr/sessions.css
|
@@ -1004,30 +1027,41 @@ files:
|
|
1004
1027
|
- app/views/blogr/categories/_form.html.haml
|
1005
1028
|
- app/views/blogr/categories/edit.html.haml
|
1006
1029
|
- app/views/blogr/categories/index.html.haml
|
1030
|
+
- app/views/blogr/categories/index.json.jbuilder
|
1007
1031
|
- app/views/blogr/categories/new.html.haml
|
1008
1032
|
- app/views/blogr/categories/show.html.haml
|
1033
|
+
- app/views/blogr/categories/show.json.jbuilder
|
1009
1034
|
- app/views/blogr/comments/_form.html.haml
|
1010
1035
|
- app/views/blogr/comments/edit.html.haml
|
1011
1036
|
- app/views/blogr/comments/index.html.haml
|
1037
|
+
- app/views/blogr/comments/index.json.jbuilder
|
1012
1038
|
- app/views/blogr/comments/new.html.haml
|
1013
1039
|
- app/views/blogr/comments/show.html.haml
|
1040
|
+
- app/views/blogr/comments/show.json.jbuilder
|
1014
1041
|
- app/views/blogr/dashboard/index.html.haml
|
1015
1042
|
- app/views/blogr/posts/_form.html.haml
|
1016
1043
|
- app/views/blogr/posts/edit.html.haml
|
1017
1044
|
- app/views/blogr/posts/index.html.haml
|
1045
|
+
- app/views/blogr/posts/index.json.jbuilder
|
1018
1046
|
- app/views/blogr/posts/new.html.haml
|
1019
1047
|
- app/views/blogr/posts/show.html.haml
|
1048
|
+
- app/views/blogr/posts/show.json.jbuilder
|
1020
1049
|
- app/views/blogr/sessions/new.html.haml
|
1021
1050
|
- app/views/blogr/shared/_messages.html.haml
|
1022
1051
|
- app/views/blogr/tags/_form.html.haml
|
1023
1052
|
- app/views/blogr/tags/edit.html.haml
|
1024
1053
|
- app/views/blogr/tags/index.html.haml
|
1054
|
+
- app/views/blogr/tags/index.json.jbuilder
|
1025
1055
|
- app/views/blogr/tags/new.html.haml
|
1026
1056
|
- app/views/blogr/tags/show.html.haml
|
1057
|
+
- app/views/blogr/tags/show.json.jbuilder
|
1027
1058
|
- app/views/blogr/users/_form.html.haml
|
1028
1059
|
- app/views/blogr/users/edit.html.haml
|
1029
1060
|
- app/views/blogr/users/index.html.haml
|
1061
|
+
- app/views/blogr/users/index.json.jbuilder
|
1030
1062
|
- app/views/blogr/users/new.html.haml
|
1063
|
+
- app/views/blogr/users/show.html.haml
|
1064
|
+
- app/views/blogr/users/show.json.jbuilder
|
1031
1065
|
- app/views/layouts/blogr/application.html.haml
|
1032
1066
|
- app/views/layouts/blogr/login.html.haml
|
1033
1067
|
- config/blogr.example.rb
|
@@ -1042,6 +1076,7 @@ files:
|
|
1042
1076
|
- db/migrate/20131120191219_create_blogr_users.rb
|
1043
1077
|
- db/migrate/20131204185931_create_blogr_comments.rb
|
1044
1078
|
- db/migrate/20131207215104_add_user_id_to_blogr_posts.rb
|
1079
|
+
- db/migrate/20140305170329_add_post_image_to_blogr_posts.rb
|
1045
1080
|
- db/seeds.rb
|
1046
1081
|
- lib/blogr/configuration.rb
|
1047
1082
|
- lib/blogr/engine.rb
|
@@ -1101,7 +1136,8 @@ files:
|
|
1101
1136
|
- spec/models/blogr/user_spec.rb
|
1102
1137
|
- spec/spec_helper.rb
|
1103
1138
|
homepage: http://blogrhq.com
|
1104
|
-
licenses:
|
1139
|
+
licenses:
|
1140
|
+
- MIT
|
1105
1141
|
metadata: {}
|
1106
1142
|
post_install_message:
|
1107
1143
|
rdoc_options: []
|