Add frozen string literal comment to files.
This commit is contained in:
parent
2e62867df2
commit
c3eac34afc
2
Gemfile
2
Gemfile
|
@ -1,3 +1,5 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
# Usage:
|
# Usage:
|
||||||
# bundle install
|
# bundle install
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
# the idea here is to support server rendering
|
# the idea here is to support server rendering
|
||||||
# there is a node example and we could inject this in a post processing job
|
# there is a node example and we could inject this in a post processing job
|
||||||
class DiscourseMath::MathRenderer
|
class DiscourseMath::MathRenderer
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
# name: discourse-math
|
# name: discourse-math
|
||||||
# about: Official mathjax plugin for Discourse
|
# about: Official mathjax plugin for Discourse
|
||||||
# version: 0.9
|
# version: 0.9
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
# TODO server rendering
|
# TODO server rendering
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require 'rails_helper'
|
require 'rails_helper'
|
||||||
|
|
||||||
describe PrettyText do
|
describe PrettyText do
|
||||||
|
|
Loading…
Reference in New Issue