panda-core 0.1.8 → 0.1.10
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 +13 -12
- data/lib/generators/panda/core/authentication/templates/reek_spec.rb +16 -16
- data/lib/panda/core/engine.rb +20 -0
- data/lib/panda/core/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: 7d9ff97b0f25c4e447028283376e62de2e27455c98b677db9f47d38e7f249320
|
4
|
+
data.tar.gz: d02061a2342d460a553d812f863ba71e1e597cfa5019a55797806c8c129cdb1b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3faf73492e2788c5217d12f4fe4e2b4e6f12ba7963bfd8b6a90c8e77357d3aece50a848d65fe3ea48e674213bb79c9117120ff4bcdb1b413a221eb462e19c0e
|
7
|
+
data.tar.gz: 222909ea7e4aa72ab865bd24da713f70fa370c6ff849c05f9132ba88e6e247689a57c4997321fc7fe09e10fcd9903dbd4cddcb9519853ed1bc6a434c6fb064b0
|
data/README.md
CHANGED
@@ -117,20 +117,21 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/tastyb
|
|
117
117
|
|
118
118
|
## Releasing
|
119
119
|
|
120
|
-
For e.g. v0.1.
|
120
|
+
For e.g. v0.1.8, run the following commands:
|
121
121
|
|
122
|
-
```
|
122
|
+
```bash
|
123
|
+
RELEASE_VERSION=0.1.8
|
124
|
+
git checkout -b release/v$RELEASE_VERSION
|
125
|
+
gem bump --no-commit --version $RELEASE_VERSION
|
123
126
|
bundle update
|
124
|
-
git
|
125
|
-
git
|
126
|
-
git
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
```
|
133
|
-
bundle exec rake release
|
127
|
+
git commit -am "Release $RELEASE_VERSION"
|
128
|
+
git tag -a $RELEASE_VERSION -m "Release $RELEASE_VERSION"
|
129
|
+
git push origin release/v$RELEASE_VERSION
|
130
|
+
gem tag
|
131
|
+
gem release panda-core -v $RELEASE_VERSION
|
132
|
+
git checkout main && git merge release/v$RELEASE_VERSION
|
133
|
+
git push origin main
|
134
|
+
git push origin :release/v$RELEASE_VERSION
|
134
135
|
```
|
135
136
|
|
136
137
|
## License
|
@@ -1,22 +1,22 @@
|
|
1
1
|
require "spec_helper"
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
].freeze
|
3
|
+
RUBY_FILE_PATTERN = File.expand_path("../../**/*.rb", __dir__)
|
4
|
+
EXCLUDED_PATHS = [
|
5
|
+
"db/schema.rb",
|
6
|
+
"bin/",
|
7
|
+
"script/",
|
8
|
+
"log/",
|
9
|
+
"public/",
|
10
|
+
"tmp/",
|
11
|
+
"doc/",
|
12
|
+
"vendor/",
|
13
|
+
"storage/",
|
14
|
+
"node_modules/",
|
15
|
+
".git/",
|
16
|
+
"spec/dummy/"
|
17
|
+
].freeze
|
19
18
|
|
19
|
+
RSpec.describe "Reek" do
|
20
20
|
it "contains no code smells" do
|
21
21
|
failures = []
|
22
22
|
|
data/lib/panda/core/engine.rb
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
require "rubygems"
|
2
|
+
|
3
|
+
require "active_storage"
|
4
|
+
require "awesome_nested_set"
|
5
|
+
require "aws-sdk-s3"
|
6
|
+
require "dry-configurable"
|
7
|
+
require "faraday"
|
8
|
+
require "faraday/multipart"
|
9
|
+
require "faraday/retry"
|
10
|
+
require "image_processing"
|
11
|
+
require "importmap-rails"
|
12
|
+
require "lookbook"
|
13
|
+
require "omniauth"
|
14
|
+
require "propshaft"
|
15
|
+
require "redis"
|
16
|
+
require "silencer"
|
17
|
+
require "stimulus-rails"
|
18
|
+
require "turbo-rails"
|
19
|
+
require "view_component"
|
20
|
+
|
1
21
|
require "rails/engine"
|
2
22
|
|
3
23
|
module Panda
|
data/lib/panda/core/version.rb
CHANGED