quill-editor-rails 0.1.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 +7 -0
- data/.gitignore +8 -0
- data/Gemfile +6 -0
- data/LICENSE +29 -0
- data/LICENSE.txt +21 -0
- data/README.md +40 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/assets/javascripts/quill.min.js +8 -0
- data/lib/assets/stylesheets/quill.bubble.css +952 -0
- data/lib/assets/stylesheets/quill.snow.css +945 -0
- data/lib/quill/editor/rails.rb +9 -0
- data/lib/quill/editor/rails/version.rb +7 -0
- data/quill-editor-rails.gemspec +27 -0
- metadata +62 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
require_relative 'lib/quill/editor/rails/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "quill-editor-rails"
|
5
|
+
spec.version = Quill::Editor::Rails::VERSION
|
6
|
+
spec.authors = ["yanzijun"]
|
7
|
+
spec.email = ["c75a90@gmail.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{The quill editor for rails}
|
10
|
+
spec.description = %q{You could use quill editor in rails via importing quill in application.js directly}
|
11
|
+
spec.homepage = "https://github.com/yanzijun/quill-editor-rails"
|
12
|
+
spec.license = "BSD-3-Clause"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/yanzijun/quill-editor-rails"
|
17
|
+
spec.metadata["changelog_uri"] = "https://github.com/yanzijun/quill-editor-rails"
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: quill-editor-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- yanzijun
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-03-26 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: You could use quill editor in rails via importing quill in application.js
|
14
|
+
directly
|
15
|
+
email:
|
16
|
+
- c75a90@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- ".gitignore"
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE
|
24
|
+
- LICENSE.txt
|
25
|
+
- README.md
|
26
|
+
- Rakefile
|
27
|
+
- bin/console
|
28
|
+
- bin/setup
|
29
|
+
- lib/assets/javascripts/quill.min.js
|
30
|
+
- lib/assets/stylesheets/quill.bubble.css
|
31
|
+
- lib/assets/stylesheets/quill.snow.css
|
32
|
+
- lib/quill/editor/rails.rb
|
33
|
+
- lib/quill/editor/rails/version.rb
|
34
|
+
- quill-editor-rails.gemspec
|
35
|
+
homepage: https://github.com/yanzijun/quill-editor-rails
|
36
|
+
licenses:
|
37
|
+
- BSD-3-Clause
|
38
|
+
metadata:
|
39
|
+
homepage_uri: https://github.com/yanzijun/quill-editor-rails
|
40
|
+
source_code_uri: https://github.com/yanzijun/quill-editor-rails
|
41
|
+
changelog_uri: https://github.com/yanzijun/quill-editor-rails
|
42
|
+
post_install_message:
|
43
|
+
rdoc_options: []
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: 2.3.0
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ">="
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
requirements: []
|
57
|
+
rubyforge_project:
|
58
|
+
rubygems_version: 2.7.6
|
59
|
+
signing_key:
|
60
|
+
specification_version: 4
|
61
|
+
summary: The quill editor for rails
|
62
|
+
test_files: []
|