propel_api 0.1.2 → 0.1.4
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed7ff4e957fdebd3121ee35516c5d865ef81368306f6cf64b0a4e148da320e94
|
4
|
+
data.tar.gz: 7a30a9965de132fe26f24e46199d08b05a388e28d5242a72b7346e3533336ec1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 349c2159adbc9142f5f6b2d5de77c2f155fa8b9aba80c1ffc69e797f37dd9cf2da1710c61f961d2af97360ab71898d23003cc522ab1d87b8b6b416dc76f75097
|
7
|
+
data.tar.gz: 949dad44b2a40257b3c9019f0c4985334879d4c3503727457b80f73f39db69a2aebe49e37c67ec223546f251d2825cb39713bd6158179157633f9658bd43a67d
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
10
10
|
### Planned Features
|
11
11
|
- GraphQL adapter support
|
12
12
|
|
13
|
+
## [0.1.4] - 2025-01-23
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
- **Generator extraction system** - Core infrastructure files now properly extracted during installation
|
17
|
+
- **Standalone operation** - Complete "no black box" policy implementation
|
18
|
+
- **Component architecture** - Enhanced unpack system for selective extraction
|
19
|
+
|
13
20
|
## [0.1.2] - 2025-01-11
|
14
21
|
|
15
22
|
### Added
|
@@ -5,8 +5,8 @@ require "test_helper"
|
|
5
5
|
class <%= controller_class_name_with_namespace %>ControllerTest < ActionDispatch::IntegrationTest
|
6
6
|
|
7
7
|
def setup
|
8
|
-
@organization = organizations(:
|
9
|
-
@user = users(:
|
8
|
+
@organization = organizations(:acme_org)
|
9
|
+
@user = users(:john_user)
|
10
10
|
@<%= singular_table_name %> = <%= table_name %>(:one)
|
11
11
|
@token = @user.generate_jwt_token
|
12
12
|
@auth_headers = { 'Authorization' => "Bearer #{@token}" }
|
data/lib/propel_api.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: propel_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ryan Martin, Rafael Pivato, Chi Putera
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|