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: c909cb1c04a74a744529f645d77d1faee3236ff1
4
- data.tar.gz: cce8776eb2cd2729c7aa4747b74797d5334331e3
3
+ metadata.gz: df9036fe64d999c575b6b5b534987aedd6e13dca
4
+ data.tar.gz: c2e2b2c960c057731c8100e6a34a96a46713cab0
5
5
  SHA512:
6
- metadata.gz: be17249c94f1137a52711a9a3e7e1e84bd72e45e01e4a9566ce50bbe92f91be0e120b4e8dfaf8bad2db580453ddcd429c6fbc91598b6975a4ac042058d3097df
7
- data.tar.gz: f441d02a24a8cdaafeb03c0856fedc34eba6db6c280589bb9be356273eb2c24ecde142959c22ee7221590154de38b4abcf82b16692bead8dbece5c4ed959e364
6
+ metadata.gz: 2b6d8c46ae5b8ee30fa6e6e08e1c45b98242cc65939439a45a0c2671ad7255c975a2d613f87a557f4399944ee32026b4b098db56a39fef8a202fbcc495af808a
7
+ data.tar.gz: 022c175f6aa4ef101e9fc9d6d0e4ed5ef5916b7ddbf8d943be54161599ae9451ff88aad7fe8491754824bd2f750fe7b3eb115d5949a9b9e288634a2033fc1a98
data/README.md CHANGED
@@ -11,7 +11,7 @@ This is what it looks like:
11
11
  Add this line to your application's Gemfile:
12
12
 
13
13
  ```ruby
14
- gem 'thredded-markdown_katex', '~> 0.1.0'
14
+ gem 'thredded-markdown_katex', '~> 0.1.1'
15
15
  ```
16
16
 
17
17
  And then execute:
@@ -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 "katex";' + "\n"
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 "katex"' + "\n"
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 sass_path, "\n" + '//= require katex' + "\n"
20
+ append_to_file css_path, "\n" + '//= require katex' + "\n"
21
21
  end
22
22
  end
23
23
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Thredded
3
3
  module MarkdownKatex
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
6
6
  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.0
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-01-22 00:00:00.000000000 Z
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.9
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.