propel_facets 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/CHANGELOG.md +6 -0
- data/Rakefile +12 -0
- data/lib/propel_facets.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f127ddd4e76d9854822b551a6e54e7d4f8c2b3e1854373cb1f9090099cde6457
|
4
|
+
data.tar.gz: 8644c716754a8d5c21811381e3cce9d1977730765a209a2346b278b4a38d297b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d3fd45a26987c77fa5dda7d2fbb7d204d818472cc8d8823095f2f60c03b982a2c8f52a51eeeac2532ef600a847a8e83a3e16944b9b662972eb2d752c082af7a
|
7
|
+
data.tar.gz: e975b6143227e3113628129782be206175f7dd6871381ada6e7df39a7a8a0e83a02732b870425427bed33394373270ce41f735ffdf6630a0b97c08553b45d29e
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
### Added
|
11
|
+
- **Clean controller generation by default** - PropelFacets controller templates now generate production-ready code
|
12
|
+
- Usage comments removed from default controller templates
|
13
|
+
- `--with-comments` flag available for learning/tutorial mode
|
14
|
+
- Improves integration with PropelApi generators
|
15
|
+
|
10
16
|
### Planned Features
|
11
17
|
- Caching system integration with Rails caching (Solid Cache support)
|
12
18
|
- Automatic association inclusion configuration
|
data/Rakefile
ADDED
data/lib/propel_facets.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: propel_facets
|
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
|
- Propel Team
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -42,6 +42,7 @@ files:
|
|
42
42
|
- CHANGELOG.md
|
43
43
|
- LICENSE
|
44
44
|
- README.md
|
45
|
+
- Rakefile
|
45
46
|
- lib/generators/propel_facets/README.md
|
46
47
|
- lib/generators/propel_facets/USAGE
|
47
48
|
- lib/generators/propel_facets/install_generator.rb
|
@@ -62,6 +63,7 @@ homepage: https://github.com/propel-hq/propel_rails.git
|
|
62
63
|
licenses:
|
63
64
|
- MIT
|
64
65
|
metadata:
|
66
|
+
allowed_push_host: https://rubygems.org
|
65
67
|
homepage_uri: https://github.com/propel-hq/propel_rails.git
|
66
68
|
source_code_uri: https://github.com/propel-hq/propel_rails.git
|
67
69
|
post_install_message:
|