Skip to content

Commit e395288

Browse files
Merge pull request #44 from brettchaldecott/feat/rails_engine_mount
Feat/rails engine mount
2 parents 08b9158 + 9031a06 commit e395288

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+1331
-12
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: bundler
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
- package-ecosystem: github-actions
9+
directory: "/"
10+
schedule:
11+
interval: daily
12+
open-pull-requests-limit: 10

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
Gemfile.lock
22

33
.idea/
4+
5+
*.gem
6+
log/*
7+
tmp/*

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.0.0

Gemfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
source "https://rubygems.org"
22

3-
gemspec
4-
53
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
64
gem "rails", "~> 7.0.4"
5+
gem 'rspec-core'
6+
gem 'rspec'
7+
gem 'typhoeus', '~> 1.0', '>= 1.0.1'
8+
gem 'oauth2', '~> 2.0'
9+
gem 'pkce_challenge'
10+
gem 'faraday-follow_redirects'
11+
gem 'httparty', '~> 0.19.0'
12+
gem 'jwt', '~> 2.2'
713

814
group :development, :test do
915
gem "rake", "~> 13.0.1"
@@ -14,5 +20,5 @@ group :development, :test do
1420
end
1521

1622
group :test do
17-
gem "webmock"
23+
gem 'webmock'
1824
end

Rakefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ require "bundler/gem_tasks"
22

33
begin
44
require 'rspec/core/rake_task'
5-
65
RSpec::Core::RakeTask.new(:spec) do |t|
76
t.pattern = ['spec/*_spec.rb', 'kinde_api/spec/*_spec.rb', 'kinde_api/spec/*/*_spec.rb']
7+
t.rspec_opts = '--require spec_helper' # Ensures spec/spec_helper.rb is loaded
88
end
99
task default: :spec
10-
end
10+
rescue LoadError
11+
# Handle case where rspec-core isn't available
12+
end

app/assets/images/kinde/ruby/sdk/.keep

Whitespace-only changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/*
2+
* This is a manifest file that'll be compiled into application.css, which will include all the files
3+
* listed below.
4+
*
5+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7+
*
8+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
9+
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10+
* files in this directory. Styles in this file should be added after the last require_* statement.
11+
* It is generally better to create a new file per style scope.
12+
*
13+
*= require_tree .
14+
*= require_self
15+
*/

app/controllers/concerns/.keep

Whitespace-only changes.
File renamed without changes.

app/helpers/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)