graphiti-rails 0.3.0 → 0.4.1

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: bce137505cdca25b658def15e2bfde137b6cf16b7a80aaae9c21218c8ada8f59
4
- data.tar.gz: f48bbbb85727bffa2367ca8f409574787fc2809c18115027c0c228208c8549a5
3
+ metadata.gz: 1d21bd110b218be81b90dc36e351c4497e372e3d68494e974da486760b79fc0e
4
+ data.tar.gz: 77d43f24e90ad20652f337af5fe0ec975aa7da24d11b4fa1afa1b7cc473357a9
5
5
  SHA512:
6
- metadata.gz: 28d90e3f09621739f7e743000114c478ee75520dc484baa36e28fe450f6a1f2ac85d084e2e25961d7347cc21c56f8a77019efb5146638591a6b760a218f42868
7
- data.tar.gz: 9da0d55120df21ec87e99d5746c827f999d2c1efe92f568e03930f06edb5cf4b010ffb01a5b41ec19c15f6b86eb71dbd40837e7d6b9a58427b7a82f0d00c9a6f
6
+ metadata.gz: 72db45334240aa6a4890a6ed0259676aad04d0d1149c7a00f9fd61e5a4f4a604ec10ccd59673928c95e863ae45267587cec2a8b09af0d72523bb4847e10c4755
7
+ data.tar.gz: af12ee496a30f8e8a712e88bbb50cb70b386d8d05cf0e3aeb7325aaa25d106274edaf693470830560bdfb9aadcb06f88a319295d79b921bf4645e3d324f486dc
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ graphiti-rails changelog
2
+
3
+ ## [0.4.1](https://github.com/graphiti-api/graphiti-rails/compare/v0.4.0...v0.4.1) (2025-03-21)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * `register_parameter_parser` overiding custom config ([#109](https://github.com/graphiti-api/graphiti-rails/issues/109)) ([a135bfa](https://github.com/graphiti-api/graphiti-rails/commit/a135bfa7729b921cf57563916567e272237b6b1f))
9
+ * Add basic column type conversion. ([#83](https://github.com/graphiti-api/graphiti-rails/issues/83)) ([e5bbc92](https://github.com/graphiti-api/graphiti-rails/commit/e5bbc92335376311f02af71d0db3ddc13bdd1ad9))
10
+ * Add condition to check RSpec availability in install generator ([#63](https://github.com/graphiti-api/graphiti-rails/issues/63)) ([13895d9](https://github.com/graphiti-api/graphiti-rails/commit/13895d98f8784f5552256840fd44caaa80c4717b))
11
+ * rspec double was leaking across tests ([#105](https://github.com/graphiti-api/graphiti-rails/issues/105)) ([b38faf2](https://github.com/graphiti-api/graphiti-rails/commit/b38faf2a02bd9e5e91e9014ca060092d7398b47d))
12
+ * Stringify path if Rails version > 7 ([#107](https://github.com/graphiti-api/graphiti-rails/issues/107)) ([47d356c](https://github.com/graphiti-api/graphiti-rails/commit/47d356c23c3d800e83236227a6684fc40af360af))
13
+
1
14
  # Changelog
2
15
 
3
16
  All notable changes to this project will be documented in this file.
@@ -7,6 +20,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
20
 
8
21
  ---
9
22
 
23
+ ## [0.4.0] - 2022-02-03
24
+ - `rescue_registry` has been updated to 0.4.0 for Ruby 3.1 support.
25
+
10
26
  ## [0.3.0] - 2021-05-11
11
27
  ### Changed
12
28
  - `rescue_registry` has been updated to 0.3.0. This causes some changes to error payloads.
data/Rakefile CHANGED
@@ -7,6 +7,7 @@ end
7
7
  require 'yard'
8
8
  require 'rspec/core/rake_task'
9
9
  require 'bundler/gem_tasks'
10
+ require 'rails/version'
10
11
 
11
12
  YARD::Rake::YardocTask.new
12
13
 
@@ -14,7 +15,11 @@ RSpec::Core::RakeTask.new(:spec) do |t|
14
15
  t.rspec_opts = "--order random"
15
16
  end
16
17
 
17
- APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
18
+ if Rails::VERSION::MAJOR < 7
19
+ APP_RAKEFILE = File.expand_path("spec/rails5/dummy/Rakefile", __dir__)
20
+ else
21
+ APP_RAKEFILE = File.expand_path("spec/rails7/dummy/Rakefile", __dir__)
22
+ end
18
23
  load "rails/tasks/engine.rake"
19
24
 
20
25
  task default: :spec
@@ -41,8 +41,10 @@ module Graphiti
41
41
  RUBY
42
42
  end
43
43
 
44
- inject_into_file "spec/rails_helper.rb", after: /RSpec.configure.+^end$/m do
45
- "\n\nGraphitiSpecHelpers::RSpec.schema!"
44
+ if defined?(RSpec)
45
+ inject_into_file "spec/rails_helper.rb", after: /RSpec.configure.+^end$/m do
46
+ "\n\nGraphitiSpecHelpers::RSpec.schema!"
47
+ end
46
48
  end
47
49
 
48
50
  insert_into_file "config/routes.rb", after: "Rails.application.routes.draw do\n" do
@@ -100,7 +100,10 @@ module Graphiti
100
100
  end
101
101
  if attributes_class.table_exists?
102
102
  return attributes_class.columns.map do |c|
103
- OpenStruct.new({name: c.name.to_sym, type: c.type})
103
+ OpenStruct.new({
104
+ name: c.name.to_sym,
105
+ type: convert_column_type_to_graphiti_resource_type(c.type)
106
+ })
104
107
  end
105
108
  else
106
109
  raise "#{attributes_class} table must exist. Please run migrations."
@@ -181,5 +184,34 @@ module Graphiti
181
184
  def type
182
185
  model_klass.name.underscore.pluralize
183
186
  end
187
+
188
+ def convert_column_type_to_graphiti_resource_type(type)
189
+ # TODO: Support database specific types.
190
+ case type
191
+ when :string, :text
192
+ :string
193
+ when :float, :decimal
194
+ :integer
195
+ when :integer, :bigint
196
+ :integer
197
+ when :datetime, :time
198
+ :datetime
199
+ when :date
200
+ :date
201
+ when :boolean
202
+ :boolean
203
+ when :numeric
204
+ # TODO: Return type.
205
+ type
206
+ when :primary_key
207
+ # TODO: Return type.
208
+ type
209
+ when :binary
210
+ # TODO: Return type.
211
+ type
212
+ else
213
+ type
214
+ end
215
+ end
184
216
  end
185
217
  end
@@ -72,9 +72,9 @@ module Graphiti
72
72
 
73
73
  def register_parameter_parser
74
74
  if ::Rails::VERSION::MAJOR >= 5
75
- ActionDispatch::Request.parameter_parsers[:jsonapi] = PARSER
75
+ ActionDispatch::Request.parameter_parsers[:jsonapi] ||= PARSER
76
76
  else
77
- ActionDispatch::ParamsParser::DEFAULT_PARSERS[Mime[:jsonapi]] = PARSER
77
+ ActionDispatch::ParamsParser::DEFAULT_PARSERS[Mime[:jsonapi]] ||= PARSER
78
78
  end
79
79
  end
80
80
 
@@ -131,8 +131,11 @@ module Graphiti
131
131
  end
132
132
 
133
133
  route = begin
134
+ if Gem::Version.new(::Rails::VERSION::STRING) >= Gem::Version.new("7.0.0")
135
+ path = path.to_s
136
+ end
134
137
  ::Rails.application.routes.recognize_path(path, method: method)
135
- rescue
138
+ rescue => e
136
139
  nil
137
140
  end
138
141
  "#{route[:controller]}_controller".classify.safe_constantize if route
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Graphiti
4
4
  module Rails
5
- VERSION = '0.3.0'
5
+ VERSION = '0.4.1'
6
6
  end
7
7
  end
@@ -22,7 +22,10 @@ namespace :graphiti do
22
22
  end
23
23
  path = "#{path}&debug=true" if debug
24
24
  handle_request_exceptions do
25
- session.get(path.to_s)
25
+ headers = {
26
+ "Authorization": ENV['AUTHORIZATION_HEADER']
27
+ }.compact
28
+ session.get(path.to_s, headers: headers)
26
29
  end
27
30
  JSON.parse(session.response.body)
28
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphiti-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Wagenet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-11 00:00:00.000000000 Z
11
+ date: 2025-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphiti
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.3.0
33
+ version: '1.0'
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.3.0
40
+ version: '1.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: railties
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -251,7 +251,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
251
251
  - !ruby/object:Gem::Version
252
252
  version: '0'
253
253
  requirements: []
254
- rubygems_version: 3.2.15
254
+ rubygems_version: 3.3.27
255
255
  signing_key:
256
256
  specification_version: 4
257
257
  summary: Rails integration for Graphiti