quilljs2-rails 2.0.3
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/.github/workflows/release.yml +36 -0
- data/.gitignore +9 -0
- data/.idea/misc.xml +4 -0
- data/.idea/modules.xml +8 -0
- data/.idea/quilljs-rails.iml +39 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +636 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +125 -0
- data/Rakefile +10 -0
- data/app/assets/javascripts/quill.core.js +7908 -0
- data/app/assets/javascripts/quill.global.js +117 -0
- data/app/assets/javascripts/quill.min.js +14 -0
- data/app/assets/stylesheets/quill.bubble.css +872 -0
- data/app/assets/stylesheets/quill.core.css +378 -0
- data/app/assets/stylesheets/quill.snow.css +904 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/quilljs/rails/version.rb +6 -0
- data/lib/quilljs/rails.rb +10 -0
- data/quilljs-rails.gemspec +32 -0
- data/test/quilljs/functionality_test.rb +68 -0
- data/test/quilljs/rails_test.rb +16 -0
- data/test/test_helper.rb +4 -0
- metadata +117 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2a54de5bb24085eb8551f26086db187f2a2c804610093f665c9e9fac8328ac78
|
4
|
+
data.tar.gz: '0952372ce58a132e8e04f83ef66febc35e0a45a9b08f8d6147b992ad608daf44'
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b37c8c53f2c85cf4cde3dc7f7adfdd6881b053ebbb0e55fab5b9e16209e0d88605f841b4171a90f87ca98069086bba05182bca3b2a8933ee8a3d4f0fa0b404cf
|
7
|
+
data.tar.gz: 4eccd77868ddb9abe3e344777a6925dbe109f9e9d003f05ef0eff48c5729077442d97e7a9844ffe418a7b92c8b281babac63b4de3d67c6b270bc44910d8573e5
|
@@ -0,0 +1,36 @@
|
|
1
|
+
name: Release gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
release:
|
5
|
+
types: [published]
|
6
|
+
workflow_dispatch:
|
7
|
+
|
8
|
+
permissions:
|
9
|
+
contents: read
|
10
|
+
id-token: write # Required for RubyGems Trusted Publishing (OIDC)
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
build-test-and-publish:
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
- name: Checkout
|
17
|
+
uses: actions/checkout@v4
|
18
|
+
|
19
|
+
- name: Set up Ruby
|
20
|
+
uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
bundler-cache: true
|
23
|
+
|
24
|
+
- name: Run tests
|
25
|
+
run: bundle exec rake test
|
26
|
+
|
27
|
+
# This action builds the gem from the gemspec and publishes it to RubyGems.
|
28
|
+
# It supports Trusted Publishing via GitHub OIDC (no API key needed) when
|
29
|
+
# the gem is configured on RubyGems to trust this repository.
|
30
|
+
- name: Publish to RubyGems (Trusted Publishing)
|
31
|
+
uses: rubygems/release-gem@v1
|
32
|
+
if: github.event_name == 'release'
|
33
|
+
# If you prefer using an API key instead of Trusted Publishing, add a repo
|
34
|
+
# secret RUBYGEMS_API_KEY and uncomment the following lines:
|
35
|
+
# with:
|
36
|
+
# rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}
|
data/.gitignore
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/quilljs-rails.iml" filepath="$PROJECT_DIR$/.idea/quilljs-rails.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
@@ -0,0 +1,39 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
4
|
+
<shared />
|
5
|
+
</component>
|
6
|
+
<component name="NewModuleRootManager">
|
7
|
+
<content url="file://$MODULE_DIR$">
|
8
|
+
<sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
|
9
|
+
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
10
|
+
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
11
|
+
</content>
|
12
|
+
<orderEntry type="inheritedJdk" />
|
13
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="actionpack (v6.1.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="actionview (v6.1.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v6.1.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, RVM: ruby-3.0.0) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.2.3, RVM: ruby-3.0.0) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.10, RVM: ruby-3.0.0) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="crass (v1.0.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="erubi (v1.10.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.11.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="jquery-rails (v4.4.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="loofah (v2.18.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="method_source (v1.0.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.16.2, RVM: ruby-3.0.0) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.13.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="racc (v1.6.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v2.2.4, RVM: ruby-3.0.0) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-test (v2.0.2, RVM: ruby-3.0.0) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="rails-dom-testing (v2.0.3, RVM: ruby-3.0.0) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="rails-html-sanitizer (v1.4.3, RVM: ruby-3.0.0) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="railties (v6.1.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, RVM: ruby-3.0.0) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v1.2.1, RVM: ruby-3.0.0) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v2.0.4, RVM: ruby-3.0.0) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.6.0, RVM: ruby-3.0.0) [gem]" level="application" />
|
38
|
+
</component>
|
39
|
+
</module>
|