simple_discussion 0.9.4 → 1.3.0
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.
- checksums.yaml +5 -5
- data/.github/FUNDING.yml +12 -0
- data/.github/workflows/ci.yml +44 -0
- data/Appraisals +16 -0
- data/CHANGELOG.md +13 -0
- data/Gemfile +8 -1
- data/README.md +5 -3
- data/Rakefile +25 -3
- data/app/assets/stylesheets/simple_discussion.scss +40 -2
- data/app/controllers/simple_discussion/application_controller.rb +15 -3
- data/app/controllers/simple_discussion/forum_categories_controller.rb +5 -5
- data/app/controllers/simple_discussion/forum_posts_controller.rb +20 -14
- data/app/controllers/simple_discussion/forum_threads_controller.rb +10 -10
- data/app/controllers/simple_discussion/notifications_controller.rb +3 -3
- data/app/helpers/simple_discussion/forum_posts_helper.rb +7 -1
- data/app/helpers/simple_discussion/forum_threads_helper.rb +4 -4
- data/app/jobs/simple_discussion/forum_post_notification_job.rb +3 -3
- data/app/jobs/simple_discussion/forum_thread_notification_job.rb +2 -2
- data/app/mailers/simple_discussion/user_mailer.rb +4 -4
- data/app/models/forum_category.rb +1 -1
- data/app/models/forum_post.rb +1 -2
- data/app/models/forum_subscription.rb +4 -4
- data/app/models/forum_thread.rb +12 -12
- data/app/views/layouts/simple_discussion.html.erb +61 -18
- data/app/views/simple_discussion/forum_posts/_form.html.erb +2 -2
- data/app/views/simple_discussion/forum_posts/_forum_post.html.erb +16 -9
- data/app/views/simple_discussion/forum_posts/edit.html.erb +7 -3
- data/app/views/simple_discussion/forum_threads/_form.html.erb +8 -8
- data/app/views/simple_discussion/forum_threads/_forum_thread.html.erb +5 -5
- data/app/views/simple_discussion/forum_threads/edit.html.erb +1 -1
- data/app/views/simple_discussion/forum_threads/index.html.erb +11 -9
- data/app/views/simple_discussion/forum_threads/new.html.erb +1 -1
- data/app/views/simple_discussion/forum_threads/show.html.erb +15 -10
- data/bin/rails +14 -0
- data/config/locales/en.yml +46 -0
- data/config/locales/es.yml +41 -0
- data/config/locales/fr.yml +47 -0
- data/db/migrate/20170417012930_create_forum_categories.rb +6 -6
- data/db/migrate/20170417012931_create_forum_threads.rb +1 -1
- data/db/migrate/20170417012932_create_forum_posts.rb +3 -3
- data/db/migrate/20170417012933_create_forum_subscriptions.rb +2 -2
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5_2.gemfile +12 -0
- data/gemfiles/rails_5_2.gemfile.lock +191 -0
- data/gemfiles/rails_6.gemfile +12 -0
- data/gemfiles/rails_6.gemfile.lock +207 -0
- data/gemfiles/rails_6_1.gemfile +12 -0
- data/gemfiles/rails_6_1.gemfile.lock +210 -0
- data/gemfiles/rails_master.gemfile +12 -0
- data/gemfiles/rails_master.gemfile.lock +222 -0
- data/lib/generators/simple_discussion/controllers_generator.rb +2 -2
- data/lib/generators/simple_discussion/helpers_generator.rb +2 -2
- data/lib/generators/simple_discussion/views_generator.rb +2 -2
- data/lib/simple_discussion.rb +8 -9
- data/lib/simple_discussion/engine.rb +1 -1
- data/lib/simple_discussion/slack.rb +6 -6
- data/lib/simple_discussion/version.rb +1 -1
- data/lib/simple_discussion/will_paginate.rb +12 -12
- data/simple_discussion.gemspec +15 -17
- metadata +27 -25
@@ -0,0 +1,222 @@
|
|
1
|
+
GIT
|
2
|
+
remote: https://github.com/ghiculescu/devise
|
3
|
+
revision: 038c969fa3ab6220d8ab0caf979ee305354179da
|
4
|
+
branch: patch-2
|
5
|
+
specs:
|
6
|
+
devise (4.7.3)
|
7
|
+
bcrypt (~> 3.0)
|
8
|
+
orm_adapter (~> 0.1)
|
9
|
+
railties (>= 4.1.0)
|
10
|
+
responders
|
11
|
+
warden (~> 1.2.3)
|
12
|
+
|
13
|
+
GIT
|
14
|
+
remote: https://github.com/rails/rails
|
15
|
+
revision: d612542336d9a61381311c95a27d801bb4094779
|
16
|
+
branch: main
|
17
|
+
specs:
|
18
|
+
actioncable (7.0.0.alpha)
|
19
|
+
actionpack (= 7.0.0.alpha)
|
20
|
+
activesupport (= 7.0.0.alpha)
|
21
|
+
nio4r (~> 2.0)
|
22
|
+
websocket-driver (>= 0.6.1)
|
23
|
+
actionmailbox (7.0.0.alpha)
|
24
|
+
actionpack (= 7.0.0.alpha)
|
25
|
+
activejob (= 7.0.0.alpha)
|
26
|
+
activerecord (= 7.0.0.alpha)
|
27
|
+
activestorage (= 7.0.0.alpha)
|
28
|
+
activesupport (= 7.0.0.alpha)
|
29
|
+
mail (>= 2.7.1)
|
30
|
+
actionmailer (7.0.0.alpha)
|
31
|
+
actionpack (= 7.0.0.alpha)
|
32
|
+
actionview (= 7.0.0.alpha)
|
33
|
+
activejob (= 7.0.0.alpha)
|
34
|
+
activesupport (= 7.0.0.alpha)
|
35
|
+
mail (~> 2.5, >= 2.5.4)
|
36
|
+
rails-dom-testing (~> 2.0)
|
37
|
+
actionpack (7.0.0.alpha)
|
38
|
+
actionview (= 7.0.0.alpha)
|
39
|
+
activesupport (= 7.0.0.alpha)
|
40
|
+
rack (~> 2.0, >= 2.0.9)
|
41
|
+
rack-test (>= 0.6.3)
|
42
|
+
rails-dom-testing (~> 2.0)
|
43
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
44
|
+
actiontext (7.0.0.alpha)
|
45
|
+
actionpack (= 7.0.0.alpha)
|
46
|
+
activerecord (= 7.0.0.alpha)
|
47
|
+
activestorage (= 7.0.0.alpha)
|
48
|
+
activesupport (= 7.0.0.alpha)
|
49
|
+
nokogiri (>= 1.8.5)
|
50
|
+
actionview (7.0.0.alpha)
|
51
|
+
activesupport (= 7.0.0.alpha)
|
52
|
+
builder (~> 3.1)
|
53
|
+
erubi (~> 1.4)
|
54
|
+
rails-dom-testing (~> 2.0)
|
55
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
56
|
+
activejob (7.0.0.alpha)
|
57
|
+
activesupport (= 7.0.0.alpha)
|
58
|
+
globalid (>= 0.3.6)
|
59
|
+
activemodel (7.0.0.alpha)
|
60
|
+
activesupport (= 7.0.0.alpha)
|
61
|
+
activerecord (7.0.0.alpha)
|
62
|
+
activemodel (= 7.0.0.alpha)
|
63
|
+
activesupport (= 7.0.0.alpha)
|
64
|
+
activestorage (7.0.0.alpha)
|
65
|
+
actionpack (= 7.0.0.alpha)
|
66
|
+
activejob (= 7.0.0.alpha)
|
67
|
+
activerecord (= 7.0.0.alpha)
|
68
|
+
activesupport (= 7.0.0.alpha)
|
69
|
+
marcel (~> 1.0.0)
|
70
|
+
mini_mime (~> 1.0.2)
|
71
|
+
activesupport (7.0.0.alpha)
|
72
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
73
|
+
i18n (>= 1.6, < 2)
|
74
|
+
minitest (>= 5.1)
|
75
|
+
tzinfo (~> 2.0)
|
76
|
+
zeitwerk (~> 2.3)
|
77
|
+
rails (7.0.0.alpha)
|
78
|
+
actioncable (= 7.0.0.alpha)
|
79
|
+
actionmailbox (= 7.0.0.alpha)
|
80
|
+
actionmailer (= 7.0.0.alpha)
|
81
|
+
actionpack (= 7.0.0.alpha)
|
82
|
+
actiontext (= 7.0.0.alpha)
|
83
|
+
actionview (= 7.0.0.alpha)
|
84
|
+
activejob (= 7.0.0.alpha)
|
85
|
+
activemodel (= 7.0.0.alpha)
|
86
|
+
activerecord (= 7.0.0.alpha)
|
87
|
+
activestorage (= 7.0.0.alpha)
|
88
|
+
activesupport (= 7.0.0.alpha)
|
89
|
+
bundler (>= 1.15.0)
|
90
|
+
railties (= 7.0.0.alpha)
|
91
|
+
sprockets-rails (>= 2.0.0)
|
92
|
+
railties (7.0.0.alpha)
|
93
|
+
actionpack (= 7.0.0.alpha)
|
94
|
+
activesupport (= 7.0.0.alpha)
|
95
|
+
method_source
|
96
|
+
rake (>= 0.13)
|
97
|
+
thor (~> 1.0)
|
98
|
+
|
99
|
+
PATH
|
100
|
+
remote: ..
|
101
|
+
specs:
|
102
|
+
simple_discussion (1.3.0)
|
103
|
+
font-awesome-sass (>= 5.13.0)
|
104
|
+
friendly_id (>= 5.2.0)
|
105
|
+
rails (>= 4.2)
|
106
|
+
will_paginate (>= 3.1.0)
|
107
|
+
|
108
|
+
GEM
|
109
|
+
remote: https://rubygems.org/
|
110
|
+
specs:
|
111
|
+
appraisal (2.4.0)
|
112
|
+
bundler
|
113
|
+
rake
|
114
|
+
thor (>= 0.14.0)
|
115
|
+
ast (2.4.2)
|
116
|
+
bcrypt (3.1.16)
|
117
|
+
builder (3.2.4)
|
118
|
+
concurrent-ruby (1.1.8)
|
119
|
+
crass (1.0.6)
|
120
|
+
erubi (1.10.0)
|
121
|
+
ffi (1.15.0)
|
122
|
+
font-awesome-sass (5.15.1)
|
123
|
+
sassc (>= 1.11)
|
124
|
+
friendly_id (5.4.2)
|
125
|
+
activerecord (>= 4.0.0)
|
126
|
+
globalid (0.4.2)
|
127
|
+
activesupport (>= 4.2.0)
|
128
|
+
i18n (1.8.10)
|
129
|
+
concurrent-ruby (~> 1.0)
|
130
|
+
loofah (2.9.0)
|
131
|
+
crass (~> 1.0.2)
|
132
|
+
nokogiri (>= 1.5.9)
|
133
|
+
mail (2.7.1)
|
134
|
+
mini_mime (>= 0.1.1)
|
135
|
+
marcel (1.0.0)
|
136
|
+
method_source (1.0.0)
|
137
|
+
mini_mime (1.0.3)
|
138
|
+
minitest (5.14.4)
|
139
|
+
nio4r (2.5.7)
|
140
|
+
nokogiri (1.11.2-x86_64-darwin)
|
141
|
+
racc (~> 1.4)
|
142
|
+
nokogiri (1.11.2-x86_64-linux)
|
143
|
+
racc (~> 1.4)
|
144
|
+
orm_adapter (0.5.0)
|
145
|
+
parallel (1.20.1)
|
146
|
+
parser (3.0.0.0)
|
147
|
+
ast (~> 2.4.1)
|
148
|
+
puma (5.2.2)
|
149
|
+
nio4r (~> 2.0)
|
150
|
+
racc (1.5.2)
|
151
|
+
rack (2.2.3)
|
152
|
+
rack-test (1.1.0)
|
153
|
+
rack (>= 1.0, < 3)
|
154
|
+
rails-dom-testing (2.0.3)
|
155
|
+
activesupport (>= 4.2.0)
|
156
|
+
nokogiri (>= 1.6)
|
157
|
+
rails-html-sanitizer (1.3.0)
|
158
|
+
loofah (~> 2.3)
|
159
|
+
rainbow (3.0.0)
|
160
|
+
rake (13.0.3)
|
161
|
+
regexp_parser (2.1.1)
|
162
|
+
responders (3.0.1)
|
163
|
+
actionpack (>= 5.0)
|
164
|
+
railties (>= 5.0)
|
165
|
+
rexml (3.2.4)
|
166
|
+
rubocop (1.11.0)
|
167
|
+
parallel (~> 1.10)
|
168
|
+
parser (>= 3.0.0.0)
|
169
|
+
rainbow (>= 2.2.2, < 4.0)
|
170
|
+
regexp_parser (>= 1.8, < 3.0)
|
171
|
+
rexml
|
172
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
173
|
+
ruby-progressbar (~> 1.7)
|
174
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
175
|
+
rubocop-ast (1.4.1)
|
176
|
+
parser (>= 2.7.1.5)
|
177
|
+
rubocop-performance (1.10.1)
|
178
|
+
rubocop (>= 0.90.0, < 2.0)
|
179
|
+
rubocop-ast (>= 0.4.0)
|
180
|
+
ruby-progressbar (1.11.0)
|
181
|
+
sassc (2.4.0)
|
182
|
+
ffi (~> 1.9)
|
183
|
+
sprockets (4.0.2)
|
184
|
+
concurrent-ruby (~> 1.0)
|
185
|
+
rack (> 1, < 3)
|
186
|
+
sprockets-rails (3.2.2)
|
187
|
+
actionpack (>= 4.0)
|
188
|
+
activesupport (>= 4.0)
|
189
|
+
sprockets (>= 3.0.0)
|
190
|
+
sqlite3 (1.4.2)
|
191
|
+
standard (1.0.4)
|
192
|
+
rubocop (= 1.11.0)
|
193
|
+
rubocop-performance (= 1.10.1)
|
194
|
+
standardrb (1.0.0)
|
195
|
+
standard
|
196
|
+
thor (1.1.0)
|
197
|
+
tzinfo (2.0.4)
|
198
|
+
concurrent-ruby (~> 1.0)
|
199
|
+
unicode-display_width (2.0.0)
|
200
|
+
warden (1.2.9)
|
201
|
+
rack (>= 2.0.9)
|
202
|
+
websocket-driver (0.7.3)
|
203
|
+
websocket-extensions (>= 0.1.0)
|
204
|
+
websocket-extensions (0.1.5)
|
205
|
+
will_paginate (3.3.0)
|
206
|
+
zeitwerk (2.4.2)
|
207
|
+
|
208
|
+
PLATFORMS
|
209
|
+
x86_64-darwin-20
|
210
|
+
x86_64-linux
|
211
|
+
|
212
|
+
DEPENDENCIES
|
213
|
+
appraisal
|
214
|
+
devise!
|
215
|
+
puma
|
216
|
+
rails!
|
217
|
+
simple_discussion!
|
218
|
+
sqlite3
|
219
|
+
standardrb
|
220
|
+
|
221
|
+
BUNDLED WITH
|
222
|
+
2.2.15
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "rails/generators"
|
2
2
|
|
3
3
|
module SimpleDiscussion
|
4
4
|
module Generators
|
@@ -6,7 +6,7 @@ module SimpleDiscussion
|
|
6
6
|
source_root File.expand_path("../../../..", __FILE__)
|
7
7
|
|
8
8
|
def copy_controllers
|
9
|
-
directory
|
9
|
+
directory "app/controllers/simple_discussion", "app/controllers/simple_discussion"
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "rails/generators"
|
2
2
|
|
3
3
|
module SimpleDiscussion
|
4
4
|
module Generators
|
@@ -6,7 +6,7 @@ module SimpleDiscussion
|
|
6
6
|
source_root File.expand_path("../../../..", __FILE__)
|
7
7
|
|
8
8
|
def copy_views
|
9
|
-
directory
|
9
|
+
directory "app/helpers", "app/helpers"
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "rails/generators"
|
2
2
|
|
3
3
|
module SimpleDiscussion
|
4
4
|
module Generators
|
@@ -6,7 +6,7 @@ module SimpleDiscussion
|
|
6
6
|
source_root File.expand_path("../../../..", __FILE__)
|
7
7
|
|
8
8
|
def copy_views
|
9
|
-
directory
|
9
|
+
directory "app/views", "app/views"
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
data/lib/simple_discussion.rb
CHANGED
@@ -1,13 +1,12 @@
|
|
1
|
-
require
|
2
|
-
require
|
3
|
-
require
|
4
|
-
require 'will_paginate'
|
1
|
+
require "font-awesome-sass"
|
2
|
+
require "friendly_id"
|
3
|
+
require "will_paginate"
|
5
4
|
|
6
|
-
require
|
7
|
-
require
|
8
|
-
require
|
9
|
-
require
|
10
|
-
require
|
5
|
+
require "simple_discussion/engine"
|
6
|
+
require "simple_discussion/forum_user"
|
7
|
+
require "simple_discussion/slack"
|
8
|
+
require "simple_discussion/version"
|
9
|
+
require "simple_discussion/will_paginate"
|
11
10
|
|
12
11
|
module SimpleDiscussion
|
13
12
|
# Define who owns the subscription
|
@@ -1,5 +1,5 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require "open-uri"
|
2
|
+
require "net/http"
|
3
3
|
|
4
4
|
module SimpleDiscussion
|
5
5
|
class Slack
|
@@ -10,11 +10,11 @@ module SimpleDiscussion
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def post(payload)
|
13
|
-
uri
|
14
|
-
request
|
15
|
-
req_options
|
13
|
+
uri = URI.parse(url)
|
14
|
+
request = Net::HTTP::Post.new(uri)
|
15
|
+
req_options = {use_ssl: uri.scheme == "https"}
|
16
16
|
request.body = "payload=#{payload.to_json}"
|
17
|
-
|
17
|
+
Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
|
18
18
|
http.request(request)
|
19
19
|
end
|
20
20
|
end
|
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "will_paginate/view_helpers/action_view"
|
2
2
|
|
3
3
|
module SimpleDiscussion
|
4
4
|
# This code serves two purposes
|
@@ -7,14 +7,13 @@ module SimpleDiscussion
|
|
7
7
|
# 2. It adds Bootstrap 4 styling to will_paginate
|
8
8
|
|
9
9
|
class BootstrapLinkRenderer < WillPaginate::ActionView::LinkRenderer
|
10
|
-
|
11
10
|
# This method adds the `url_builder` option so we can pass in the
|
12
11
|
# mounted Rails engine's scope for will_paginate
|
13
12
|
def url(page)
|
14
13
|
@base_url_params ||= begin
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
url_params = merge_get_params(default_url_params)
|
15
|
+
merge_optional_params(url_params)
|
16
|
+
end
|
18
17
|
|
19
18
|
url_params = @base_url_params.dup
|
20
19
|
add_current_page_param(url_params, page)
|
@@ -24,30 +23,31 @@ module SimpleDiscussion
|
|
24
23
|
end
|
25
24
|
|
26
25
|
protected
|
26
|
+
|
27
27
|
def html_container(html)
|
28
28
|
tag :nav, tag(:ul, html, class: ul_class)
|
29
29
|
end
|
30
30
|
|
31
31
|
def page_number(page)
|
32
|
-
item_class = if
|
33
|
-
|
32
|
+
item_class = if page == current_page
|
33
|
+
"active page-item"
|
34
34
|
else
|
35
|
-
|
35
|
+
"page-item"
|
36
36
|
end
|
37
37
|
|
38
|
-
tag :li, link(page, page, :
|
38
|
+
tag :li, link(page, page, rel: rel_value(page), class: "page-link"), class: item_class
|
39
39
|
end
|
40
40
|
|
41
41
|
def gap
|
42
|
-
tag :li, link(
|
42
|
+
tag :li, link("…".html_safe, "#", class: "page-link"), class: "page-item disabled"
|
43
43
|
end
|
44
44
|
|
45
45
|
def previous_or_next_page(page, text, classname)
|
46
|
-
tag :li, link(text, page ||
|
46
|
+
tag :li, link(text, page || "#", class: "page-link"), class: [(classname[0..3] if @options[:page_links]), (classname if @options[:page_links]), ("disabled" unless page), "page-item"].join(" ")
|
47
47
|
end
|
48
48
|
|
49
49
|
def ul_class
|
50
|
-
|
50
|
+
["pagination", container_attributes[:class]].compact.join(" ")
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
data/simple_discussion.gemspec
CHANGED
@@ -1,29 +1,27 @@
|
|
1
|
-
# coding: utf-8
|
2
1
|
lib = File.expand_path("../lib", __FILE__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require "simple_discussion/version"
|
5
4
|
|
6
5
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name
|
8
|
-
spec.version
|
9
|
-
spec.authors
|
10
|
-
spec.email
|
6
|
+
spec.name = "simple_discussion"
|
7
|
+
spec.version = SimpleDiscussion::VERSION
|
8
|
+
spec.authors = ["Chris Oliver"]
|
9
|
+
spec.email = ["excid3@gmail.com"]
|
11
10
|
|
12
|
-
spec.summary
|
13
|
-
spec.description
|
14
|
-
spec.homepage
|
15
|
-
spec.license
|
11
|
+
spec.summary = "A simple, extensible Rails forum"
|
12
|
+
spec.description = "A simple, extensible Rails forum"
|
13
|
+
spec.homepage = "https://github.com/excid3/simple_discussion"
|
14
|
+
spec.license = "MIT"
|
16
15
|
|
17
|
-
spec.files
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
17
|
f.match(%r{^(test|spec|features)/})
|
19
18
|
end
|
20
|
-
spec.bindir
|
21
|
-
spec.executables
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
21
|
spec.require_paths = ["lib"]
|
23
22
|
|
24
|
-
spec.add_dependency
|
25
|
-
spec.add_dependency
|
26
|
-
spec.add_dependency
|
27
|
-
spec.add_dependency
|
28
|
-
spec.add_dependency 'will_paginate', '>= 3.1.0'
|
23
|
+
spec.add_dependency "font-awesome-sass", ">= 5.13.0"
|
24
|
+
spec.add_dependency "friendly_id", ">= 5.2.0"
|
25
|
+
spec.add_dependency "rails", ">= 4.2"
|
26
|
+
spec.add_dependency "will_paginate", ">= 3.1.0"
|
29
27
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_discussion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Oliver
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: font-awesome-sass
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 5.13.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 5.13.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: friendly_id
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -38,20 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 5.2.0
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: gravatar_image_tag
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
41
|
- !ruby/object:Gem::Dependency
|
56
42
|
name: rails
|
57
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -87,8 +73,12 @@ executables: []
|
|
87
73
|
extensions: []
|
88
74
|
extra_rdoc_files: []
|
89
75
|
files:
|
76
|
+
- ".github/FUNDING.yml"
|
77
|
+
- ".github/workflows/ci.yml"
|
90
78
|
- ".gitignore"
|
91
79
|
- ".travis.yml"
|
80
|
+
- Appraisals
|
81
|
+
- CHANGELOG.md
|
92
82
|
- CODE_OF_CONDUCT.md
|
93
83
|
- Gemfile
|
94
84
|
- LICENSE.txt
|
@@ -123,12 +113,25 @@ files:
|
|
123
113
|
- app/views/simple_discussion/user_mailer/new_post.html.erb
|
124
114
|
- app/views/simple_discussion/user_mailer/new_thread.html.erb
|
125
115
|
- bin/console
|
116
|
+
- bin/rails
|
126
117
|
- bin/setup
|
118
|
+
- config/locales/en.yml
|
119
|
+
- config/locales/es.yml
|
120
|
+
- config/locales/fr.yml
|
127
121
|
- config/routes.rb
|
128
122
|
- db/migrate/20170417012930_create_forum_categories.rb
|
129
123
|
- db/migrate/20170417012931_create_forum_threads.rb
|
130
124
|
- db/migrate/20170417012932_create_forum_posts.rb
|
131
125
|
- db/migrate/20170417012933_create_forum_subscriptions.rb
|
126
|
+
- gemfiles/.bundle/config
|
127
|
+
- gemfiles/rails_5_2.gemfile
|
128
|
+
- gemfiles/rails_5_2.gemfile.lock
|
129
|
+
- gemfiles/rails_6.gemfile
|
130
|
+
- gemfiles/rails_6.gemfile.lock
|
131
|
+
- gemfiles/rails_6_1.gemfile
|
132
|
+
- gemfiles/rails_6_1.gemfile.lock
|
133
|
+
- gemfiles/rails_master.gemfile
|
134
|
+
- gemfiles/rails_master.gemfile.lock
|
132
135
|
- lib/generators/simple_discussion/controllers_generator.rb
|
133
136
|
- lib/generators/simple_discussion/helpers_generator.rb
|
134
137
|
- lib/generators/simple_discussion/views_generator.rb
|
@@ -143,7 +146,7 @@ homepage: https://github.com/excid3/simple_discussion
|
|
143
146
|
licenses:
|
144
147
|
- MIT
|
145
148
|
metadata: {}
|
146
|
-
post_install_message:
|
149
|
+
post_install_message:
|
147
150
|
rdoc_options: []
|
148
151
|
require_paths:
|
149
152
|
- lib
|
@@ -158,9 +161,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
158
161
|
- !ruby/object:Gem::Version
|
159
162
|
version: '0'
|
160
163
|
requirements: []
|
161
|
-
|
162
|
-
|
163
|
-
signing_key:
|
164
|
+
rubygems_version: 3.2.3
|
165
|
+
signing_key:
|
164
166
|
specification_version: 4
|
165
167
|
summary: A simple, extensible Rails forum
|
166
168
|
test_files: []
|