bridgetown-plausible 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02d2d3172cbd56ad3c8f02f1f1e73d3efcf80f50fdc6d00f83b646f96843c1e8
4
- data.tar.gz: 53e005bd002e70c96d034b27f31f1e1c340ec58a92f0046937e5017f6d447880
3
+ metadata.gz: 274f79cc340a1931282e1576222faebb147fa5e0e21f7339210c9015b096c3fd
4
+ data.tar.gz: 1ab93674cee6b180c53b12666948c4011a18c76b6e38bdf5052a177ddd4cd749
5
5
  SHA512:
6
- metadata.gz: 0e7ca25707d7d6038f3005338fbb7ed6c62ec5a6eee29400466d424e54efda534eaeffb9d3d73b919a4e05fab4ccf8425442578a5f724b16889b4538f93ce05e
7
- data.tar.gz: 33b8b638102fd64948321e50f5f2ee7c830fee4a1e763703f138dcc14d83d15e098b8a5b53f6725e97021ca9df4850fd615f4d6842e7bf13676377283fb18ddb
6
+ metadata.gz: 201335bca947648ae012be89419bc8e323fd8107805a0cfb0f3934682edffd785b6fca95be75f568d9109a9c320d7f6356b20e985cbded39d2896914d23ab06e
7
+ data.tar.gz: ba0f6c7e5f669dd49800ce3f9bea12ea60081cb313c4cb883cdcbc6d2e5e2519ccd1eb77cae0e18f4234cf97525427fe3641d3e65b5e589b51a33bedc7daa003
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ### [1.0.2](https://www.github.com/bt-rb/bridgetown-plausible/compare/v1.0.1...v1.0.2) (2021-12-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * use correct link to repo in gemspec and render safe html ([#9](https://www.github.com/bt-rb/bridgetown-plausible/issues/9)) ([02e61b9](https://www.github.com/bt-rb/bridgetown-plausible/commit/02e61b9930240c3b2810627da1e4b357c7563b33))
9
+ * use correct package name in automation ([#10](https://www.github.com/bt-rb/bridgetown-plausible/issues/10)) ([82eb300](https://www.github.com/bt-rb/bridgetown-plausible/commit/82eb3002ce83d822cab96cbe722c1516635fa8dc))
10
+ * use the correct url for the automation in our readme docs ([b2b5961](https://www.github.com/bt-rb/bridgetown-plausible/commit/b2b596132b4452d93cfca8e6227c82d766a8691d))
11
+
3
12
  ### [1.0.1](https://www.github.com/bt-rb/bridgetown-plausible/compare/v1.0.0...v1.0.1) (2021-02-06)
4
13
 
5
14
 
data/README.md CHANGED
@@ -35,7 +35,7 @@
35
35
  Use the automation to add to your site:
36
36
 
37
37
  ```sh
38
- bundle exec bridgetown apply https://github.com/btrb/bridgetown-plausible
38
+ bundle exec bridgetown apply https://github.com/bt-rb/bridgetown-plausible
39
39
  ```
40
40
 
41
41
  ## System requirements
@@ -56,7 +56,7 @@ or add manually in `Gemfile`:
56
56
 
57
57
  ```ruby
58
58
  group :bridgetown_plugins do
59
- gem "bridgetown-plausible", "~> 0.1.0"
59
+ gem "bridgetown-plausible", "~> 1.0.2"
60
60
  end
61
61
  ```
62
62
 
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["andrewmcodes@protonmail.com"]
10
10
  spec.summary = "Plausible Analytics Plugin for Bridgetown"
11
11
  spec.description = "A Liquid tag to add Plausible analytics to your site."
12
- spec.homepage = "https://github.com/btrb/#{spec.name}"
12
+ spec.homepage = "https://github.com/bt-rb/#{spec.name}"
13
13
  spec.license = "MIT"
14
14
  spec.metadata = {
15
15
  "bug_tracker_uri" => "#{spec.homepage}/issues",
@@ -1,8 +1,8 @@
1
- say_status :plausible, "Installing the bridgetown-plausible-tag plugin..."
1
+ say_status :plausible, "Installing the bridgetown-plausible plugin..."
2
2
 
3
3
  domain_name = ask("What's your Plausible domain?")
4
4
 
5
- add_bridgetown_plugin "bridgetown-plausible-tag"
5
+ add_bridgetown_plugin "bridgetown-plausible"
6
6
 
7
7
  append_to_file "bridgetown.config.yml" do
8
8
  <<~YAML
@@ -13,4 +13,4 @@ append_to_file "bridgetown.config.yml" do
13
13
  end
14
14
 
15
15
  say_status :plausible, "All set! Double-check the plausible block in your config file and review docs at"
16
- say_status :plausible, "https://github.com/andrewmcodes/bridgetown-plausible-tag"
16
+ say_status :plausible, "https://github.com/bt-rb/bridgetown-plausible"
@@ -5,11 +5,11 @@ module Bridgetown
5
5
  class Builder < Bridgetown::Builder
6
6
  def build
7
7
  liquid_tag "plausible" do |_attributes, tag|
8
- render
8
+ render.html_safe
9
9
  end
10
10
 
11
11
  helper "plausible" do
12
- render
12
+ render.html_safe
13
13
  end
14
14
  end
15
15
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bridgetown
4
4
  module Plausible
5
- VERSION = "1.0.1"
5
+ VERSION = "1.0.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bridgetown-plausible
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Mason
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-06 00:00:00.000000000 Z
11
+ date: 2021-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bridgetown
@@ -142,15 +142,15 @@ files:
142
142
  - lib/bridgetown-plausible.rb
143
143
  - lib/bridgetown-plausible/builder.rb
144
144
  - lib/bridgetown-plausible/version.rb
145
- homepage: https://github.com/btrb/bridgetown-plausible
145
+ homepage: https://github.com/bt-rb/bridgetown-plausible
146
146
  licenses:
147
147
  - MIT
148
148
  metadata:
149
- bug_tracker_uri: https://github.com/btrb/bridgetown-plausible/issues
150
- changelog_uri: https://github.com/btrb/bridgetown-plausible/blob/main/CHANGELOG.md
151
- documentation_uri: https://github.com/btrb/bridgetown-plausible
152
- homepage_uri: https://github.com/btrb/bridgetown-plausible
153
- source_code_uri: https://github.com/btrb/bridgetown-plausible
149
+ bug_tracker_uri: https://github.com/bt-rb/bridgetown-plausible/issues
150
+ changelog_uri: https://github.com/bt-rb/bridgetown-plausible/blob/main/CHANGELOG.md
151
+ documentation_uri: https://github.com/bt-rb/bridgetown-plausible
152
+ homepage_uri: https://github.com/bt-rb/bridgetown-plausible
153
+ source_code_uri: https://github.com/bt-rb/bridgetown-plausible
154
154
  post_install_message:
155
155
  rdoc_options: []
156
156
  require_paths: