propel_rails 0.1.1 → 0.1.3

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: ceb77f8e5827cfa28561ea50453ebaa21f02454b5a210d5ebbc556994b4fa113
4
- data.tar.gz: 0a9b2b19a9e9f7b82c34d0241a190a931d3461b3d2f4f96224b072fca8e2f78f
3
+ metadata.gz: 01fabd15b4870069a21cc52990748d323301bd646b153039b390e97255b4d7f9
4
+ data.tar.gz: 6ed1422add47bfa280cebc2713c04e0b2b873ad3c28022edfcc382a066ae9c5b
5
5
  SHA512:
6
- metadata.gz: c309658d212e5bbd2c54c51aad21897011f50aaabfe7fc1b52dcf14937fdfbe90c47e03466648c00b341c8f54dc6a7867041c6f82855591274ce708b5722c9fd
7
- data.tar.gz: 044f828e687b18a7aa5d8c1704619683be402dd13e30fed40c13b4f9f4ba4ca7b31b8c3cb447d2a181bd61bd0a57a9c3cd3f5d941750b23225815e9bef6f88cc
6
+ metadata.gz: b280b9741d7265a9a251c7daedc64c416cd0f9fd579a300c0a4a53b51d864d8ddfb67b2de06ccb05c171bd643763706ba1cce46cc23a332c7137328ee02796bb
7
+ data.tar.gz: 70072e65dd2f841403af2e696729f23c6a60bc3cb0c5863476d02fab4554c3cdda94f70735a6261e10d8a4903928aaa4b8ffda96dc024232fd0c02ae7a18cc35
@@ -119,7 +119,7 @@ module Propel
119
119
  missing_gems = []
120
120
 
121
121
  missing_gems << "propel_api" if components.include?(:api) && !gem_available?("propel_api")
122
- missing_gems << "propel_auth" if components.include?(:auth) && !gem_available?("propel_auth")
122
+ missing_gems << "propel_authentication" if components.include?(:auth) && !gem_available?("propel_authentication")
123
123
  missing_gems << "propel_facets" if components.include?(:facets) && !gem_available?("propel_facets")
124
124
  missing_gems << "graphiti" if components.include?(:graphiti) && !gem_available?("graphiti")
125
125
 
@@ -165,7 +165,7 @@ module Propel
165
165
  auth_options = []
166
166
  auth_options << "--skip-migrations" if options[:skip_migrations]
167
167
 
168
- generate "propel_auth:install", *auth_options
168
+ generate "propel_authentication:install", *auth_options
169
169
  say " ✅ PropelAuth installed successfully", :green
170
170
  rescue => e
171
171
  say " ❌ PropelAuth installation failed: #{e.message}", :red
data/lib/propel_rails.rb CHANGED
@@ -1,10 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "propel/rails/version"
4
3
  require "pathname"
5
4
 
6
5
  module Propel
7
6
  module Rails
7
+ VERSION = "0.1.3"
8
+
8
9
  class Error < StandardError; end
9
10
 
10
11
  # Framework configuration
@@ -64,20 +65,20 @@ end
64
65
  # propel-accounting
65
66
 
66
67
 
67
- gems_to_load = %w[
68
- propel_auth
69
- propel_api
70
- propel_facets
71
- ]
68
+ # gems_to_load = %w[
69
+ # propel_authentication
70
+ # propel_api
71
+ # propel_facets
72
+ # ]
72
73
 
73
- gems_to_load.each do |gem_name|
74
- begin
75
- require gem_name
76
- rescue LoadError
77
- # Gem not available, skip it
78
- puts "#{gem_name} not available" if Propel::Rails.configuration.development?
79
- end
80
- end
74
+ # gems_to_load.each do |gem_name|
75
+ # begin
76
+ # require gem_name
77
+ # rescue LoadError
78
+ # # Gem not available, skip it
79
+ # puts "#{gem_name} not available" if Propel::Rails.configuration.development?
80
+ # end
81
+ # end
81
82
 
82
83
  # Welcome message for development
83
84
  if Propel::Rails.configuration.development?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propel_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Propel Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-07-11 00:00:00.000000000 Z
11
+ date: 2025-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: propel_authentication
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.1
19
+ version: 0.1.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.1.1
26
+ version: 0.1.3
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: propel_api
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.1
33
+ version: 0.1.3
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.1.1
40
+ version: 0.1.3
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: propel_facets
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.1.1
47
+ version: 0.1.3
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.1.1
54
+ version: 0.1.3
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: bundler
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -179,7 +179,7 @@ dependencies:
179
179
  - !ruby/object:Gem::Version
180
180
  version: '3.10'
181
181
  description: |
182
- Propel Rails is a modular Ruby framework built as a collection of independent gems
182
+ Propel Rails is a modular framework built as a collection of independent gems
183
183
  that work together seamlessly. It provides authentication, API generation, access control,
184
184
  AI integration, and more - all designed to work individually or as a cohesive framework.
185
185
  email:
@@ -191,9 +191,7 @@ files:
191
191
  - README.md
192
192
  - Rakefile
193
193
  - lib/generators/propel/install_generator.rb
194
- - lib/propel/rails/version.rb
195
194
  - lib/propel_rails.rb
196
- - propel_rails.gemspec
197
195
  homepage: https://github.com/propel-hq/propel_rails.git
198
196
  licenses:
199
197
  - MIT
@@ -1,7 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Propel
4
- module Rails
5
- VERSION = "0.1.1"
6
- end
7
- end
data/propel_rails.gemspec DELETED
@@ -1,62 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/propel/rails/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "propel_rails"
7
- spec.version = Propel::Rails::VERSION
8
- spec.authors = ["Propel Team"]
9
- spec.email = ["admin@propel-hq.dev"]
10
-
11
- spec.summary = "A modular Ruby framework for building modern web applications"
12
- spec.description = <<~DESC
13
- Propel Rails is a modular Ruby framework built as a collection of independent gems
14
- that work together seamlessly. It provides authentication, API generation, access control,
15
- AI integration, and more - all designed to work individually or as a cohesive framework.
16
- DESC
17
- spec.homepage = "https://github.com/propel-hq/propel_rails.git"
18
- spec.license = "MIT"
19
- spec.required_ruby_version = ">= 3.2.0"
20
-
21
- spec.metadata["allowed_push_host"] = "https://rubygems.org"
22
- spec.metadata["homepage_uri"] = spec.homepage
23
- spec.metadata["source_code_uri"] = "https://github.com/propel-hq/propel_rails.git"
24
- # spec.metadata["changelog_uri"] = "https://github.com/propel/propel_rails/blob/main/CHANGELOG.md"
25
- # spec.metadata["documentation_uri"] = "https://docs.propel.com"
26
- # spec.metadata["bug_tracker_uri"] = "https://github.com/propel/propel_rails/issues"
27
-
28
- # Specify which files should be added to the gem when it is released.
29
- spec.files = Dir.chdir(__dir__) do
30
- `git ls-files -z`.split("\x0").reject do |f|
31
- (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
32
- end
33
- end
34
- spec.bindir = "exe"
35
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
36
- spec.require_paths = ["lib"]
37
-
38
- # Runtime dependencies - these are the core gems that make up the framework
39
- spec.add_dependency "propel_authentication", "~> #{Propel::Rails::VERSION}"
40
- spec.add_dependency "propel_api", "~> #{Propel::Rails::VERSION}"
41
- spec.add_dependency "propel_facets", "~> #{Propel::Rails::VERSION}"
42
- # spec.add_dependency "propel_access", "~> #{Propel::Rails::VERSION}"
43
- # spec.add_dependency "propel_ai", "~> #{Propel::Rails::VERSION}"
44
- # spec.add_dependency "propel_billing", "~> #{Propel::Rails::VERSION}"
45
- # spec.add_dependency "propel_invoicing", "~> #{Propel::Rails::VERSION}"
46
- # spec.add_dependency "propel_accounting", "~> #{Propel::Rails::VERSION}"
47
- # spec.add_dependency "propel_forms", "~> #{Propel::Rails::VERSION}"
48
-
49
- # Development dependencies
50
- spec.add_development_dependency "bundler", "~> 2.4"
51
- spec.add_development_dependency "rake", "~> 13.0"
52
- spec.add_development_dependency "minitest", "~> 5.18"
53
- spec.add_development_dependency "minitest-reporters", "~> 1.6"
54
- spec.add_development_dependency "rubocop", "~> 1.50"
55
- spec.add_development_dependency "rubocop-minitest", "~> 0.31"
56
- spec.add_development_dependency "simplecov", "~> 0.22"
57
- spec.add_development_dependency "pry", "~> 0.14"
58
- spec.add_development_dependency "pry-byebug", "~> 3.10"
59
-
60
- # For now, we'll keep it simple and not add the individual gem dependencies
61
- # until they are properly structured and published
62
- end