thredded_create_app 0.1.5 → 0.1.6
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 +4 -4
- data/lib/thredded_create_app/tasks/setup_app_skeleton/application.scss +1 -0
- data/lib/thredded_create_app/tasks/setup_app_skeleton/application_helper_methods.rb +2 -2
- data/lib/thredded_create_app/tasks/setup_app_skeleton/seeds.rb.erb +8 -1
- data/lib/thredded_create_app/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79d691805cc0dd79223c86c6c8df35520dd93253
|
|
4
|
+
data.tar.gz: 43b887ec2b346f222e0a707e0c8e4b91f969143e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35a0fdff1b86d5e17bc0404da332c38d830c8d626286cd82aa1db8275deb80c7979e3a79d6b9ea671e85d69fabce5aade276e494051197e002406cbc23944bc5
|
|
7
|
+
data.tar.gz: e737e4755bedbb0a905f07ee979b005b4ef3f26cbfa4369944244fbc6bc8cb73ff1fac269bcb72d19f029083785fe3a9665cbef130e4c5c6e31e2a84e430d491
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
def page_title
|
|
2
|
-
[content_for(:page_title) || content_for(:thredded_page_title),
|
|
3
|
-
|
|
2
|
+
safe_join [content_for(:page_title) || content_for(:thredded_page_title),
|
|
3
|
+
t('brand.name')].compact, ' - '
|
|
4
4
|
end
|
|
5
5
|
|
|
6
6
|
# @param datetime [DateTime]
|
|
@@ -45,7 +45,14 @@ https://www.youtube.com/watch?v=dQw4w9WgXcQ
|
|
|
45
45
|
puts 'Hello world'
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
Code highlighting can be enabled by installing the
|
|
49
|
+
[Markdown Coderay plugin](https://github.com/thredded/thredded-markdown_coderay).
|
|
50
|
+
|
|
51
|
+
BBCode support (e.g. [b]bold[/b]) can be enabled by installing the
|
|
52
|
+
[BBCode plugin](https://github.com/thredded/thredded-bbcode).
|
|
53
|
+
|
|
54
|
+
TeX Math support (e.g. $$\phi$$) can be enabled by installing the
|
|
55
|
+
[KaTeX plugin](https://github.com/thredded/thredded-markdown_katex).
|
|
49
56
|
MARKDOWN
|
|
50
57
|
user: admin,
|
|
51
58
|
messageboard: messageboard
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: thredded_create_app
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gleb Mazovetskiy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: term-ansicolor
|