thredded-markdown_katex 0.1.0 → 0.1.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df9036fe64d999c575b6b5b534987aedd6e13dca
|
4
|
+
data.tar.gz: c2e2b2c960c057731c8100e6a34a96a46713cab0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b6d8c46ae5b8ee30fa6e6e08e1c45b98242cc65939439a45a0c2671ad7255c975a2d613f87a557f4399944ee32026b4b098db56a39fef8a202fbcc495af808a
|
7
|
+
data.tar.gz: 022c175f6aa4ef101e9fc9d6d0e4ed5ef5916b7ddbf8d943be54161599ae9451ff88aad7fe8491754824bd2f750fe7b3eb115d5949a9b9e288634a2033fc1a98
|
data/README.md
CHANGED
@@ -9,15 +9,15 @@ module Thredded
|
|
9
9
|
def install # rubocop:disable Metrics/MethodLength
|
10
10
|
scss_path = 'app/assets/stylesheets/application.scss'
|
11
11
|
if File.exist? scss_path
|
12
|
-
append_to_file scss_path, "\n" + '@import "
|
12
|
+
append_to_file scss_path, "\n" + '@import "_katex";' + "\n"
|
13
13
|
end
|
14
14
|
sass_path = 'app/assets/stylesheets/application.sass'
|
15
15
|
if File.exist? sass_path
|
16
|
-
append_to_file sass_path, "\n" + '@import "
|
16
|
+
append_to_file sass_path, "\n" + '@import "_katex"' + "\n"
|
17
17
|
end
|
18
18
|
css_path = 'app/assets/stylesheets/application.css'
|
19
19
|
if File.exist? css_path # rubocop:disable Style/GuardClause
|
20
|
-
append_to_file
|
20
|
+
append_to_file css_path, "\n" + '//= require katex' + "\n"
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thredded-markdown_katex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
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: katex
|
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
version: '0'
|
144
144
|
requirements: []
|
145
145
|
rubyforge_project:
|
146
|
-
rubygems_version: 2.6.
|
146
|
+
rubygems_version: 2.6.10
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
149
|
summary: Adds TeX math support to Thredded markup via KaTeX.
|