bridgetown-sample-plugin 0.1.1 → 0.1.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 +4 -4
- data/README.md +5 -0
- data/lib/sample-plugin/version.rb +1 -1
- data/package.json +6 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b602d6d1318af92f34c2121933c32a2bfbdc3718b58158d2b8516ee4d24d3e4
|
|
4
|
+
data.tar.gz: c3c26f8cf8746113bcad35f2e7b04b6aab8827f5ee86157d9d9c5dfb6f6cf93f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5f1656d5a29751e2e4364001563efe93a2ffbb944741547a3a0eea7ce92d056b264190486406b4c968ce415272f6c2723b4cdcd20fb6264811d2b9e11ae5d14
|
|
7
|
+
data.tar.gz: 6f40441ac2de099930bbb6f5d49b74d5dcdc0100e781c5477d03fdc05fb982a00e34f26ed0f83dd3771033fa9f94a1cb9a9d7648d15fb5cba8b31c4339a1d23f
|
data/README.md
CHANGED
|
@@ -40,3 +40,8 @@ The plugin will automatically use any of the following metadata variables if the
|
|
|
40
40
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
41
41
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
42
42
|
5. Create a new Pull Request
|
|
43
|
+
|
|
44
|
+
## Releasing
|
|
45
|
+
|
|
46
|
+
To release a new version of the plugin, simply bump up the version number in both
|
|
47
|
+
`version.rb` and `package.json, and then run `script/release`.
|
data/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "sample-plugin",
|
|
3
|
-
"version": "0.1.
|
|
2
|
+
"name": "bridgetown-sample-plugin",
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"main": "frontend/javascript/index.js",
|
|
5
5
|
"repository": "git@github.com:bridgetownrb/bridgetown-sample-plugin.git",
|
|
6
6
|
"author": "Bridgetown Maintainers <maintainers@bridgetownrb.com>",
|
|
7
7
|
"license": "MIT",
|
|
8
|
-
"private": false
|
|
8
|
+
"private": false,
|
|
9
|
+
"files": [
|
|
10
|
+
"frontend"
|
|
11
|
+
]
|
|
9
12
|
}
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bridgetown Team
|
|
@@ -123,7 +123,7 @@ homepage: https://github.com/bridgetownrb/bridgetown-sample-plugin
|
|
|
123
123
|
licenses:
|
|
124
124
|
- MIT
|
|
125
125
|
metadata:
|
|
126
|
-
yarn-add: bridgetown-sample-plugin@0.1.
|
|
126
|
+
yarn-add: bridgetown-sample-plugin@0.1.2
|
|
127
127
|
post_install_message:
|
|
128
128
|
rdoc_options: []
|
|
129
129
|
require_paths:
|