simple_discussion 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04550c334662cad9d3c499d5491d11c72926c821
4
- data.tar.gz: 2c4297ad07399e4fafb916cae5fe464a2e566fa8
3
+ metadata.gz: 584ec2c3ab8802d72c6f363f9b10ea08065caa9f
4
+ data.tar.gz: c53ec10ed28f235c1e5d30df9f76b8ef27c2ba88
5
5
  SHA512:
6
- metadata.gz: 7157df980c2e77655d0d567dd11f3623944934ee9aeddd13694e1985cdbcc79a37cede6daeb00f7bbe0c2f79df472c8ad03ee42051b2f86b8fdbe337a85610d7
7
- data.tar.gz: 8cf33b46566b4d7a032540ae5adfc6fb69be64484b8fead0b2ffc186ac6a381aaf9c04b0088ae8bf025d9918f4342aac8eb0bf010f014643c583f8e9f2dc4e2e
6
+ metadata.gz: '09cce64a0c017def10cc52dca5482101f62bfcf36669f72de4afc555f1e54b70256d0eb8a16cc661ab55fd58614ffd95c1c6d1a6886d0d900c39db8b71e94048'
7
+ data.tar.gz: acb759aa73030f40137b16475a2d51d4d2f0ae387c3592494334eaac4468b33ebb0256f77029d1af1221c9db6dc43301d252cfea7b4e0d5d249b98e6185c370a
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # SimpleDiscussion
2
2
 
3
- SimpleDiscussion is a Rails forum gem extracting the forum from [GoRails' forum](https://gorails.com/forum). It includes categories, simple moderation, the ability to mark threads as solved, and more.
3
+ SimpleDiscussion is a Rails forum gem extracting the [forum from GoRails](https://gorails.com/forum). It includes categories, simple moderation, the ability to mark threads as solved, and more.
4
4
 
5
5
  Out of the box, SimpleDiscussion comes with styling for Boostrap v4 but you're free to customize the UI as much as you like by installing the views and tweaking the HTML.
6
6
 
7
7
  ## Installation
8
8
 
9
- Before you get started, SimpleDiscussion requires a `User` model in your application (for now).
9
+ Before you get started, SimpleDiscussion requires a `User` model in your application (for now).
10
10
 
11
11
  Add this line to your application's Gemfile:
12
12
 
@@ -52,10 +52,10 @@ Add the following line to your `config/routes.rb` file:
52
52
  mount SimpleDiscussion::Engine => "/forum"
53
53
  ```
54
54
 
55
- You can also add the CSS to your `application.css` to load some helpful default styles.
55
+ Lastly, add the CSS to your `application.css` to load some default styles.
56
56
 
57
- ```javascript
58
- //= require simple_discussion
57
+ ```scss
58
+ *= require simple_discussion
59
59
  ```
60
60
 
61
61
  ## Usage
@@ -1,3 +1,6 @@
1
+ @import "font-awesome-sprockets";
2
+ @import "font-awesome";
3
+
1
4
  /* Allow pagination to be centered */
2
5
  .forum-threads-nav nav {
3
6
  display: inline-block;
@@ -1,3 +1,3 @@
1
1
  module SimpleDiscussion
2
- VERSION = "0.9.1"
2
+ VERSION = "0.9.2"
3
3
  end
@@ -1,6 +1,7 @@
1
+ require 'font-awesome-sass'
1
2
  require 'friendly_id'
2
- require 'will_paginate'
3
3
  require 'gravatar_image_tag'
4
+ require 'will_paginate'
4
5
 
5
6
  require "simple_discussion/version"
6
7
  require "simple_discussion/engine"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_discussion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Oliver