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: 53bb582cea07d5d549c8ebc4468a4ad78b8724bd68a47b0d790c210ca9ab5d67
4
- data.tar.gz: 8bfafc7d21cc11e1ad7e189239085af3738f907221793c928dd99bc2ea0f7594
3
+ metadata.gz: ed7ff4e957fdebd3121ee35516c5d865ef81368306f6cf64b0a4e148da320e94
4
+ data.tar.gz: 7a30a9965de132fe26f24e46199d08b05a388e28d5242a72b7346e3533336ec1
5
5
  SHA512:
6
- metadata.gz: 9d96190183561db7fbbcd218fafac7e9939bc409b44ab1d4f6fa6795cbfe2ddd99890336fdb277e8bd13487e8388bb26bb38c0592c4b15e2e02a8d2745cb72df
7
- data.tar.gz: 0d9f7d831291a748e296391e727eadb33e738054c028d664dde2791b029ac5963550253b7b33d5ffd753e7314c32755d190b49c541c7d2e39b6e35e1cbee674b
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(:one)
9
- @user = users(:one)
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
@@ -1,3 +1,3 @@
1
1
  module PropelApi
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.4"
3
3
  end
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.2
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-07-15 00:00:00.000000000 Z
11
+ date: 2025-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails