bridgetown-sample-plugin 0.1.0 → 0.1.1
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 +4 -4
- data/bridgetown-sample-plugin.gemspec +2 -1
- data/lib/sample-plugin/version.rb +1 -1
- data/package.json +9 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1d11c452586f37a3802919fa2af7be953fffab4f407e175c2d7d176a6efb421
|
|
4
|
+
data.tar.gz: d88e1bd82868c1a46eb59c761b7db39f3475325d3da30d6ba5d763c62d4d3508
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71cc6cef7a9d1981888dde1244fb826f8ec4c8b2d99e8bbf935a3664668f7f5e5fd6a44999e68e15ad5fe25c0314cf0a2cadba0a13fdb30a4af370731776cdde
|
|
7
|
+
data.tar.gz: 6a4d73d0764088bde044c5ece94e33b25d3217abb31773d5342f1552bb56a1a48853b85fa5d3c50423d7ce6aa915be7d6b070d2e08a588f28ef1db57c8fdb180
|
|
@@ -11,9 +11,10 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.homepage = "https://github.com/bridgetownrb/bridgetown-sample-plugin"
|
|
12
12
|
spec.license = "MIT"
|
|
13
13
|
|
|
14
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features)/!) }
|
|
14
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features|frontend)/!) }
|
|
15
15
|
spec.test_files = spec.files.grep(%r!^spec/!)
|
|
16
16
|
spec.require_paths = ["lib"]
|
|
17
|
+
spec.metadata = { "yarn-add" => "bridgetown-sample-plugin@#{SamplePlugin::VERSION}" }
|
|
17
18
|
|
|
18
19
|
spec.required_ruby_version = ">= 2.5.0"
|
|
19
20
|
|
data/package.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sample-plugin",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"main": "frontend/javascript/index.js",
|
|
5
|
+
"repository": "git@github.com:bridgetownrb/bridgetown-sample-plugin.git",
|
|
6
|
+
"author": "Bridgetown Maintainers <maintainers@bridgetownrb.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"private": false
|
|
9
|
+
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bridgetown-sample-plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bridgetown Team
|
|
@@ -118,10 +118,12 @@ files:
|
|
|
118
118
|
- lib/sample-plugin.rb
|
|
119
119
|
- lib/sample-plugin/liquid-tag.rb
|
|
120
120
|
- lib/sample-plugin/version.rb
|
|
121
|
+
- package.json
|
|
121
122
|
homepage: https://github.com/bridgetownrb/bridgetown-sample-plugin
|
|
122
123
|
licenses:
|
|
123
124
|
- MIT
|
|
124
|
-
metadata:
|
|
125
|
+
metadata:
|
|
126
|
+
yarn-add: bridgetown-sample-plugin@0.1.1
|
|
125
127
|
post_install_message:
|
|
126
128
|
rdoc_options: []
|
|
127
129
|
require_paths:
|