rails_app_generator 0.1.11 → 0.1.12

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
  SHA256:
3
- metadata.gz: b44292560d4550ab186996b836d0fb0c84fb5d17ea6cf7b6c72df0c6d5fac33c
4
- data.tar.gz: 46074355f3d140e76c0722c99111d0fccfcbc3b5cba1e6f905e76985b7629196
3
+ metadata.gz: f2307c0ebef36cdf172922b01efbf07d2e24adaa855afca17b7e6490dd4b3e45
4
+ data.tar.gz: 6dff48114607c3adaa8ef5325651762e0738a62032e9e50e6f41e1c7cfbae536
5
5
  SHA512:
6
- metadata.gz: caf678cc3d14eadd3f04e537fba8e6bdad98f3b078d34ba449206d87902c43818bca2a0302245e227b9dc368616ace587ab200aaac1046dd41d24ea9887295f8
7
- data.tar.gz: 9d4147b99276b596098e73931d755b0ffbbda649fd214e503b7f3476a52ea955d0dea881ea0ecbba1a1e5492e1ca84eefef542b8025fa3b0f43ee2f03aa5bed3
6
+ metadata.gz: e1daf6f4579973228d26d984c4db2adf8531091fd9bb169a17ead6df4c641e817f3fe29ba3bf929b5f674a11323ecce929eb2e839d79a866ed82f7725cdfd3b4
7
+ data.tar.gz: ea7d93cb6434418ab160fc2d37b6981b9a6056b26fa8f49baa198d3084be07e06e29d09ef2af0d6893b34d68bc2d2521f9d07e02a3439faa1e0b78a4d048ac2d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.1.11](https://github.com/klueless-io/rails_app_generator/compare/v0.1.10...v0.1.11) (2022-08-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add thor task to create profiles ([0ec4ae0](https://github.com/klueless-io/rails_app_generator/commit/0ec4ae01a2879fc627422cb79e4cbc685e78dcb8))
7
+
1
8
  ## [0.1.10](https://github.com/klueless-io/rails_app_generator/compare/v0.1.9...v0.1.10) (2022-08-02)
2
9
 
3
10
 
@@ -1,3 +1,31 @@
1
- <h1>Rails html sanitizer</h1>
1
+ <h1>Rails HTML Sanitizer</h1>
2
2
 
3
- <h2>HTML sanitization for Rails applications</h2>
3
+ <p>Read more here <a href="https://github.com/rails/rails-html-sanitizer">rails-html-sanitizer</a></p>
4
+
5
+ <textarea rows="4" cols="200">
6
+ full_sanitizer = Rails::Html::FullSanitizer.new
7
+ full_sanitizer.sanitize("<b>Bold</b> no more! <a href='more.html'>See more here</a>...")
8
+ </textarea>
9
+
10
+ <hr>
11
+ <%=
12
+ Rails::Html::FullSanitizer
13
+ .new
14
+ .sanitize("<b>Bold</b> no more! <a href='more.html'>See more here</a>...")
15
+ %>
16
+
17
+ <br/><br/><br/>
18
+
19
+ <hr>
20
+
21
+ <textarea rows="4" cols="200">
22
+ link_sanitizer = Rails::Html::LinkSanitizer.new
23
+ link_sanitizer.sanitize('<a href="example.com">Only the link text will be kept.</a>')
24
+ # => Only the link text will be kept.
25
+ </textarea>
26
+
27
+ <%=
28
+ Rails::Html::LinkSanitizer
29
+ .new
30
+ .sanitize('<a href="example.com">Only the link text will be kept.</a>')
31
+ %>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsAppGenerator
4
- VERSION = '0.1.11'
4
+ VERSION = '0.1.12'
5
5
  end
data/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "rails_app_generator",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "rails_app_generator",
9
- "version": "0.1.11",
9
+ "version": "0.1.12",
10
10
  "dependencies": {
11
11
  "daisyui": "^2.20.0"
12
12
  },
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rails_app_generator",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Create new Rails Application with custom opinions",
5
5
  "scripts": {
6
6
  "release": "semantic-release"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_app_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.11
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Cruwys