pumi 0.1.2 → 0.2.0
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/.github/workflows/bump_version.yml +2 -2
- data/README.md +2 -2
- data/lib/pumi/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76011f89d3965a9977830c81e0de7ff76a6aa1111086e1bf3935ce75a6fe04a3
|
4
|
+
data.tar.gz: 8af0e861d125af6de61e33c3850e9cee48ed0dde267e14b3e32b18e3e96c1694
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b524d66886276aa0d6e54cff90f087277180fa6e2796c3b2706f54b957636fa2747bcdabf73d078d636eb51fb86c594800ef2cb8ed0583fbca7d5fbec71f91e
|
7
|
+
data.tar.gz: aa6659de7ad93cf3d263d473d85310d1e5a4c6d8594d8e55f5ebe37b68e69445578c5e9eafd07e6c4ae0309a9d942d0cac9677b582bbf915b12f4c54da9d551d
|
@@ -2,7 +2,7 @@ name: Create Release
|
|
2
2
|
on:
|
3
3
|
push:
|
4
4
|
branches:
|
5
|
-
-
|
5
|
+
- master
|
6
6
|
jobs:
|
7
7
|
release:
|
8
8
|
runs-on: ubuntu-latest
|
@@ -32,7 +32,7 @@ jobs:
|
|
32
32
|
mkdir -p ~/.gem
|
33
33
|
echo -e "---\r\n:rubygems_api_key: $GEM_HOST_API_KEY" > ~/.gem/credentials
|
34
34
|
chmod 0600 ~/.gem/credentials
|
35
|
-
bundle exec bump
|
35
|
+
bundle exec bump minor --tag
|
36
36
|
git push
|
37
37
|
git push --tags
|
38
38
|
bundle exec rake release
|
data/README.md
CHANGED
@@ -22,7 +22,7 @@ Using Pumi with Rails gives you some javascript helpers as well as an API to fil
|
|
22
22
|
To use Pumi with Rails first, require `"pumi/rails"` in your Gemfile:
|
23
23
|
|
24
24
|
```ruby
|
25
|
-
gem
|
25
|
+
gem "pumi", require: "pumi/rails"
|
26
26
|
```
|
27
27
|
|
28
28
|
Next, mount the Pumi routes in `config/routes`
|
@@ -51,7 +51,7 @@ Rails is not a dependency of Pumi so you can use it with Plain Ol' Ruby if you d
|
|
51
51
|
Add this line to your application's Gemfile:
|
52
52
|
|
53
53
|
```ruby
|
54
|
-
gem
|
54
|
+
gem "pumi"
|
55
55
|
```
|
56
56
|
|
57
57
|
And then execute:
|
data/lib/pumi/version.rb
CHANGED