web47sso 0.1.2 → 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: dfd03942d9dfe2cf3e7c565e9a859fb9964f94fccaaa7ec15087306d8bdd0e40
4
- data.tar.gz: b0cc9dcc0ac1e8d8a24c17515d058337a51bc044b3f3c8131843c88bf29afd0a
3
+ metadata.gz: 6dd350847f7f2c6681088f26350ccf32d014792b47a4d931141e43a803b3798e
4
+ data.tar.gz: 70ca4f811126dc0333f94bbab8e79e89835b7edcd1dee6ac48a9d6608e4337a1
5
5
  SHA512:
6
- metadata.gz: 536ea65c53acdcf4cc4c502ead2c1e00687f63235ab1d1a1cd98c4e1dea9442e450b2810572643c3a0c214a2b1a69565cc946f12b1f672ea603cf81ffc2c65d4
7
- data.tar.gz: a69b389c8fcb4e1af11de916a5045e049e09ecca1a025a255b35c44d8f828dec31ee188a38ac508d1aa89e79a81d83d2516cd2ecb3e3011f29f0169f8f0d3d47
6
+ metadata.gz: 5664c96e17d97c1d955859d90f0b77b34242acc1a643f8eaa578b4a07eec0b390383fa7252586a9e95cd7c47a2e90aa91253713500d45a9af12c52d0ec75313b
7
+ data.tar.gz: 52dd0dd0066f2e6af28a3076f9579d6d7d70ed9afa5058bb9a2c468e1281144c6e497601cc7a1a1e3df3610163dd3cfad40442bde27d43c950595b29d89d17ab
@@ -1,3 +1,3 @@
1
1
  module Web47sso
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: web47sso
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Schroeder
@@ -341,19 +341,8 @@ executables:
341
341
  extensions: []
342
342
  extra_rdoc_files: []
343
343
  files:
344
- - ".bundle/config"
345
- - ".circleci/config.yml"
346
- - ".gitignore"
347
- - ".rubocop.yml"
348
- - ".ruby-version"
349
- - ".travis.yml"
350
- - CODE_OF_CONDUCT.md
351
- - Gemfile
352
- - Gemfile.lock
353
344
  - LICENSE
354
- - LICENSE.txt
355
345
  - README.md
356
- - Rakefile
357
346
  - app/assets/config/manifest.js
358
347
  - app/controllers/sso_google_servers_controller.rb
359
348
  - app/jobs/cron/trim_secure_requests.rb
@@ -364,7 +353,6 @@ files:
364
353
  - bin/console
365
354
  - bin/setup
366
355
  - config/locales/en.yml
367
- - coverage_merge.rb
368
356
  - lib/app/controllers/concerns/core_sso_servers_controller.rb
369
357
  - lib/app/models/secure_request.rb
370
358
  - lib/app/models/sso_google_server.rb
@@ -377,7 +365,6 @@ files:
377
365
  - lib/web47sso.rb
378
366
  - lib/web47sso/engine.rb
379
367
  - lib/web47sso/version.rb
380
- - web47sso.gemspec
381
368
  homepage: https://github.com/App47/web47sso.git
382
369
  licenses:
383
370
  - MIT
data/.bundle/config DELETED
@@ -1,3 +0,0 @@
1
- ---
2
- BUNDLE_PATH: "vendor"
3
- BUNDLE_DEFAULT: "2.5.13"
data/.circleci/config.yml DELETED
@@ -1,172 +0,0 @@
1
- #
2
- # All-in-one
3
- #
4
- # This test configuration runs all tests in a single job.
5
- #
6
- version: 2.1
7
-
8
- commands:
9
- setup_environment:
10
- description: Run the tests for a given directory in the test folder
11
- steps:
12
- - attach_workspace:
13
- at: /tmp/workspace
14
- - checkout
15
- - restore_cache:
16
- keys:
17
- - app47-web-sso-gem-cache-v2-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile" }}
18
- - run:
19
- name: Version information
20
- shell: /bin/bash -l
21
- command: |
22
- ruby --version;
23
- gem --version;
24
- bundle --version;
25
- - run:
26
- name: Setup environment
27
- shell: /bin/bash -l
28
- command: |
29
- ulimit -n 2096;
30
- mkdir -p ./log;
31
- mkdir -p ./tmp;
32
- bundle install;
33
- - save_cache:
34
- key: app47-web-sso-gem-cache-v2-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile" }}
35
- paths:
36
- - vendor
37
- run_tests:
38
- description: Run the test directory
39
- parameters:
40
- dir_name:
41
- type: string
42
- steps:
43
- - run:
44
- name: Wait for Redis Server
45
- command: dockerize -wait tcp://localhost:6379 -timeout 1m
46
- - run:
47
- name: Wait for MongoDB Server
48
- command: dockerize -wait tcp://localhost:27017 -timeout 1m
49
- - run:
50
- name: Run tests
51
- shell: /bin/bash -l
52
- command: bundle exec rails test test/<< parameters.dir_name >>
53
- - run:
54
- name: Copy coverage results
55
- shell: /bin/bash -l
56
- command: mv ./coverage/lcov/web47sso.lcov ./coverage/lcov/<< parameters.dir_name >>.lcov
57
- - run:
58
- name: Copy coverage results 2
59
- shell: /bin/bash -l
60
- command: mv ./coverage/.resultset.json ./coverage/lcov/<< parameters.dir_name >>.json
61
- - persist_to_workspace:
62
- root: ./coverage
63
- paths:
64
- - lcov
65
-
66
- executors:
67
- app47_executor:
68
- docker:
69
- - image: app47/ruby323:noble
70
- environment:
71
- ENV: CI
72
- RACK_ENV: test
73
- RAILS_ENV: test
74
- COVERAGE: 1
75
- RUBYOPT: W0
76
- stack_executor:
77
- docker:
78
- - image: app47/ruby323:noble
79
- - image: app47/redis7:noble
80
- - image: app47/mongodb8:noble
81
- environment:
82
- ENV: CI
83
- REDIS_URL: redis://localhost:6379
84
- MONGO_URL: localhost:27017
85
- RACK_ENV: test
86
- RAILS_ENV: test
87
- COVERAGE: 1
88
- RUBYOPT: W0
89
-
90
-
91
- jobs:
92
- update_vendor_cache:
93
- executor: app47_executor
94
- resource_class: small
95
- steps:
96
- - setup_environment
97
- controllers:
98
- executor: stack_executor
99
- resource_class: small
100
- steps:
101
- - setup_environment
102
- - run_tests:
103
- dir_name: controllers
104
- models:
105
- executor: stack_executor
106
- resource_class: small
107
- steps:
108
- - setup_environment
109
- - run_tests:
110
- dir_name: models
111
- jobs:
112
- executor: stack_executor
113
- resource_class: small
114
- steps:
115
- - setup_environment
116
- - run_tests:
117
- dir_name: jobs
118
- report_to_codacy:
119
- executor: app47_executor
120
- resource_class: small
121
- steps:
122
- - attach_workspace:
123
- at: /tmp/workspace
124
- - setup_environment
125
- - run:
126
- name: Install coverage reporter and upload to codacy
127
- shell: /bin/bash -l
128
- command: |
129
- wget https://coverage.codacy.com/get.sh -O codacy.sh
130
- bundle exec ruby coverage_merge.rb
131
- bash codacy.sh report -l Ruby -r ./coverage/final.lcov
132
- push_to_ruby_gems:
133
- executor: app47_executor
134
- resource_class: small
135
- steps:
136
- - setup_environment
137
- - run:
138
- name: Push to RubyGems
139
- shell: /bin/bash -lx
140
- command: |
141
- GEM_VERSION=$(grep 'VERSION = ' lib/web47sso/version.rb | awk -F "'" '{print $2}')
142
- gem list -r -e web47sso
143
- if gem list -r -e web47sso | grep "${GEM_VERSION}"; then
144
- echo "Gem version ${GEM_VERSION} already exists on Rubygems. Skipping push."
145
- else
146
- echo "Gem version ${GEM_VERSION} not found on Rubygems. Proceeding with push."
147
- gem build
148
- gem push web47sso-"${GEM_VERSION}".gem
149
- fi
150
-
151
- workflows:
152
- version: 2
153
- build_and_test:
154
- jobs:
155
- - update_vendor_cache
156
- - controllers:
157
- requires:
158
- - update_vendor_cache
159
- - models:
160
- requires:
161
- - update_vendor_cache
162
- - jobs:
163
- requires:
164
- - update_vendor_cache
165
- - report_to_codacy:
166
- requires:
167
- - controllers
168
- - models
169
- - jobs
170
- - push_to_ruby_gems:
171
- requires:
172
- - report_to_codacy
data/.gitignore DELETED
@@ -1,59 +0,0 @@
1
- *.gem
2
- *.rbc
3
- /.config
4
- /coverage/
5
- /InstalledFiles
6
- /pkg/
7
- /spec/reports/
8
- /spec/examples.txt
9
- /test/tmp/
10
- /test/version_tmp/
11
- /tmp/
12
-
13
- # Used by dotenv library to load environment variables.
14
- # .env
15
-
16
- # Ignore Byebug command history file.
17
- .byebug_history
18
-
19
- ## Specific to RubyMotion:
20
- .dat*
21
- .repl_history
22
- build/
23
- *.bridgesupport
24
- build-iPhoneOS/
25
- build-iPhoneSimulator/
26
-
27
- ## Specific to RubyMotion (use of CocoaPods):
28
- #
29
- # We recommend against adding the Pods directory to your .gitignore. However
30
- # you should judge for yourself, the pros and cons are mentioned at:
31
- # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
32
- #
33
- # vendor/Pods/
34
-
35
- ## Documentation cache and generated files:
36
- /.yardoc/
37
- /_yardoc/
38
- /doc/
39
- /rdoc/
40
-
41
- # for a library or gem, you might want to ignore these files since the code is
42
- # intended to run in multiple environments; otherwise, check them in:
43
- # Gemfile.lock
44
- # .ruby-version
45
- # .ruby-gemset
46
-
47
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
48
- .rvmrc
49
-
50
- # Used by RuboCop. Remote config files pulled in from inherit_from directive.
51
- # .rubocop-https?--*
52
- vendor/*
53
- tmp/*
54
- log
55
- log/*
56
- *.tmproj
57
- *.json
58
- .idea/*
59
- test/fixtures/files/aws/ec2.yml
data/.rubocop.yml DELETED
@@ -1,34 +0,0 @@
1
- AllCops:
2
- Exclude:
3
- - 'bin/**/*'
4
- - 'config/**/*'
5
- - 'test/**/*'
6
- - 'lib/**/*'
7
- - 'vendor/**/*'
8
-
9
- Metrics/LineLength:
10
- Max: 120
11
-
12
- Metrics/ClassLength:
13
- Max: 600
14
-
15
- Metrics/ModuleLength:
16
- Max: 600
17
-
18
- Metrics/MethodLength:
19
- Max: 40
20
-
21
- Metrics/AbcSize:
22
- Max: 40
23
-
24
- Metrics/CyclomaticComplexity:
25
- Max: 15
26
-
27
- Metrics/PerceivedComplexity:
28
- Max: 15
29
-
30
- Metrics/MaxOptionalParameters:
31
- Max: 8
32
-
33
- Naming/RescuedExceptionsVariableName:
34
- PreferredName: error
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- 3.2.3
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.6.10
7
- before_install: gem install bundler -v 1.17.2
data/CODE_OF_CONDUCT.md DELETED
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at chris@app47.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile DELETED
@@ -1,5 +0,0 @@
1
- source "https://rubygems.org"
2
- ruby '3.2.3'
3
-
4
- # Specify your gem's dependencies in web47sso.gemspec
5
- gemspec
data/Gemfile.lock DELETED
@@ -1,440 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- web47sso (0.1.2)
5
- mongoid (~> 9.0)
6
- web47core (~> 3.2.28)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (7.2.2.1)
12
- actionpack (= 7.2.2.1)
13
- activesupport (= 7.2.2.1)
14
- nio4r (~> 2.0)
15
- websocket-driver (>= 0.6.1)
16
- zeitwerk (~> 2.6)
17
- actionmailbox (7.2.2.1)
18
- actionpack (= 7.2.2.1)
19
- activejob (= 7.2.2.1)
20
- activerecord (= 7.2.2.1)
21
- activestorage (= 7.2.2.1)
22
- activesupport (= 7.2.2.1)
23
- mail (>= 2.8.0)
24
- actionmailer (7.2.2.1)
25
- actionpack (= 7.2.2.1)
26
- actionview (= 7.2.2.1)
27
- activejob (= 7.2.2.1)
28
- activesupport (= 7.2.2.1)
29
- mail (>= 2.8.0)
30
- rails-dom-testing (~> 2.2)
31
- actionpack (7.2.2.1)
32
- actionview (= 7.2.2.1)
33
- activesupport (= 7.2.2.1)
34
- nokogiri (>= 1.8.5)
35
- racc
36
- rack (>= 2.2.4, < 3.2)
37
- rack-session (>= 1.0.1)
38
- rack-test (>= 0.6.3)
39
- rails-dom-testing (~> 2.2)
40
- rails-html-sanitizer (~> 1.6)
41
- useragent (~> 0.16)
42
- actiontext (7.2.2.1)
43
- actionpack (= 7.2.2.1)
44
- activerecord (= 7.2.2.1)
45
- activestorage (= 7.2.2.1)
46
- activesupport (= 7.2.2.1)
47
- globalid (>= 0.6.0)
48
- nokogiri (>= 1.8.5)
49
- actionview (7.2.2.1)
50
- activesupport (= 7.2.2.1)
51
- builder (~> 3.1)
52
- erubi (~> 1.11)
53
- rails-dom-testing (~> 2.2)
54
- rails-html-sanitizer (~> 1.6)
55
- activejob (7.2.2.1)
56
- activesupport (= 7.2.2.1)
57
- globalid (>= 0.3.6)
58
- activemodel (7.2.2.1)
59
- activesupport (= 7.2.2.1)
60
- activerecord (7.2.2.1)
61
- activemodel (= 7.2.2.1)
62
- activesupport (= 7.2.2.1)
63
- timeout (>= 0.4.0)
64
- activestorage (7.2.2.1)
65
- actionpack (= 7.2.2.1)
66
- activejob (= 7.2.2.1)
67
- activerecord (= 7.2.2.1)
68
- activesupport (= 7.2.2.1)
69
- marcel (~> 1.0)
70
- activesupport (7.2.2.1)
71
- base64
72
- benchmark (>= 0.3)
73
- bigdecimal
74
- concurrent-ruby (~> 1.0, >= 1.3.1)
75
- connection_pool (>= 2.2.5)
76
- drb
77
- i18n (>= 1.6, < 2)
78
- logger (>= 1.4.2)
79
- minitest (>= 5.1)
80
- securerandom (>= 0.3)
81
- tzinfo (~> 2.0, >= 2.0.5)
82
- addressable (2.8.7)
83
- public_suffix (>= 2.0.2, < 7.0)
84
- ansi (1.5.0)
85
- autoprefixer-rails (10.4.21.0)
86
- execjs (~> 2)
87
- aws-eventstream (1.4.0)
88
- aws-partitions (1.1135.0)
89
- aws-sdk-autoscaling (1.139.0)
90
- aws-sdk-core (~> 3, >= 3.227.0)
91
- aws-sigv4 (~> 1.5)
92
- aws-sdk-core (3.227.0)
93
- aws-eventstream (~> 1, >= 1.3.0)
94
- aws-partitions (~> 1, >= 1.992.0)
95
- aws-sigv4 (~> 1.9)
96
- base64
97
- jmespath (~> 1, >= 1.6.1)
98
- logger
99
- aws-sigv4 (1.12.1)
100
- aws-eventstream (~> 1, >= 1.0.2)
101
- base64 (0.3.0)
102
- benchmark (0.4.1)
103
- bigdecimal (3.2.2)
104
- brakeman (7.1.0)
105
- racc
106
- bson (5.1.1)
107
- builder (3.3.0)
108
- cancancan (3.6.1)
109
- codacy-coverage (2.2.1)
110
- simplecov
111
- concurrent-ruby (1.3.5)
112
- connection_pool (2.5.3)
113
- crack (1.0.0)
114
- bigdecimal
115
- rexml
116
- crass (1.0.6)
117
- daemons (1.4.1)
118
- database_cleaner-core (2.0.1)
119
- database_cleaner-mongoid (2.0.1)
120
- database_cleaner-core (~> 2.0.0)
121
- mongoid
122
- date (3.4.1)
123
- delayed_job (4.1.13)
124
- activesupport (>= 3.0, < 9.0)
125
- delayed_job_mongoid (3.0.0)
126
- delayed_job (>= 3.0, < 5)
127
- mongoid (>= 5.0)
128
- docile (1.4.1)
129
- domain_name (0.6.20240107)
130
- drb (2.2.3)
131
- erb (5.0.2)
132
- erubi (1.13.1)
133
- execjs (2.10.0)
134
- factory_bot (6.5.4)
135
- activesupport (>= 6.1.0)
136
- factory_bot_rails (6.5.0)
137
- factory_bot (~> 6.5)
138
- railties (>= 6.1.0)
139
- faraday (2.13.4)
140
- faraday-net_http (>= 2.0, < 3.5)
141
- json
142
- logger
143
- faraday-net_http (3.4.1)
144
- net-http (>= 0.5.0)
145
- ffi (1.17.2-aarch64-linux-gnu)
146
- ffi (1.17.2-aarch64-linux-musl)
147
- ffi (1.17.2-arm-linux-gnu)
148
- ffi (1.17.2-arm-linux-musl)
149
- ffi (1.17.2-arm64-darwin)
150
- ffi (1.17.2-x86_64-darwin)
151
- ffi (1.17.2-x86_64-linux-gnu)
152
- ffi (1.17.2-x86_64-linux-musl)
153
- globalid (1.2.1)
154
- activesupport (>= 6.1)
155
- haml (6.3.0)
156
- temple (>= 0.8.2)
157
- thor
158
- tilt
159
- hashdiff (1.2.0)
160
- http-accept (1.7.0)
161
- http-cookie (1.0.8)
162
- domain_name (~> 0.5)
163
- i18n (1.14.7)
164
- concurrent-ruby (~> 1.0)
165
- io-console (0.8.1)
166
- irb (1.15.2)
167
- pp (>= 0.6.0)
168
- rdoc (>= 4.0.0)
169
- reline (>= 0.4.2)
170
- jmespath (1.6.2)
171
- json (2.13.2)
172
- jwt (2.10.2)
173
- base64
174
- liquid (5.8.7)
175
- bigdecimal
176
- strscan (>= 3.1.1)
177
- listen (3.9.0)
178
- rb-fsevent (~> 0.10, >= 0.10.3)
179
- rb-inotify (~> 0.9, >= 0.9.10)
180
- logger (1.7.0)
181
- loofah (2.24.1)
182
- crass (~> 1.0.2)
183
- nokogiri (>= 1.12.0)
184
- mail (2.8.1)
185
- mini_mime (>= 0.1.1)
186
- net-imap
187
- net-pop
188
- net-smtp
189
- marcel (1.0.4)
190
- materialize-sass (1.0.0.1)
191
- autoprefixer-rails (>= 6.0.3)
192
- mime-types (3.7.0)
193
- logger
194
- mime-types-data (~> 3.2025, >= 3.2025.0507)
195
- mime-types-data (3.2025.0722)
196
- mini_mime (1.1.5)
197
- minitest (5.25.5)
198
- minitest-rails (7.2.0)
199
- minitest (~> 5.20)
200
- railties (>= 7.2.0, < 8.0.0)
201
- minitest-reporters (1.7.1)
202
- ansi
203
- builder
204
- minitest (>= 5.0)
205
- ruby-progressbar
206
- mocha (2.7.1)
207
- ruby2_keywords (>= 0.0.5)
208
- mongo (2.21.2)
209
- base64
210
- bson (>= 4.14.1, < 6.0.0)
211
- mongoid (9.0.7)
212
- activemodel (>= 5.1, < 8.1, != 7.0.0)
213
- concurrent-ruby (>= 1.0.5, < 2.0)
214
- mongo (>= 2.18.0, < 3.0.0)
215
- net-http (0.6.0)
216
- uri
217
- net-imap (0.5.9)
218
- date
219
- net-protocol
220
- net-pop (0.1.2)
221
- net-protocol
222
- net-protocol (0.2.2)
223
- timeout
224
- net-smtp (0.5.1)
225
- net-protocol
226
- netrc (0.11.0)
227
- nio4r (2.7.4)
228
- nokogiri (1.18.9-aarch64-linux-gnu)
229
- racc (~> 1.4)
230
- nokogiri (1.18.9-aarch64-linux-musl)
231
- racc (~> 1.4)
232
- nokogiri (1.18.9-arm-linux-gnu)
233
- racc (~> 1.4)
234
- nokogiri (1.18.9-arm-linux-musl)
235
- racc (~> 1.4)
236
- nokogiri (1.18.9-arm64-darwin)
237
- racc (~> 1.4)
238
- nokogiri (1.18.9-x86_64-darwin)
239
- racc (~> 1.4)
240
- nokogiri (1.18.9-x86_64-linux-gnu)
241
- racc (~> 1.4)
242
- nokogiri (1.18.9-x86_64-linux-musl)
243
- racc (~> 1.4)
244
- power_assert (2.0.5)
245
- pp (0.6.2)
246
- prettyprint
247
- prettyprint (0.2.0)
248
- psych (5.2.6)
249
- date
250
- stringio
251
- public_suffix (6.0.2)
252
- racc (1.8.1)
253
- rack (3.1.16)
254
- rack-session (2.1.1)
255
- base64 (>= 0.1.0)
256
- rack (>= 3.0.0)
257
- rack-test (2.2.0)
258
- rack (>= 1.3)
259
- rackup (2.2.1)
260
- rack (>= 3)
261
- rails (7.2.2.1)
262
- actioncable (= 7.2.2.1)
263
- actionmailbox (= 7.2.2.1)
264
- actionmailer (= 7.2.2.1)
265
- actionpack (= 7.2.2.1)
266
- actiontext (= 7.2.2.1)
267
- actionview (= 7.2.2.1)
268
- activejob (= 7.2.2.1)
269
- activemodel (= 7.2.2.1)
270
- activerecord (= 7.2.2.1)
271
- activestorage (= 7.2.2.1)
272
- activesupport (= 7.2.2.1)
273
- bundler (>= 1.15.0)
274
- railties (= 7.2.2.1)
275
- rails-dom-testing (2.3.0)
276
- activesupport (>= 5.0.0)
277
- minitest
278
- nokogiri (>= 1.6)
279
- rails-html-sanitizer (1.6.2)
280
- loofah (~> 2.21)
281
- nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
282
- railties (7.2.2.1)
283
- actionpack (= 7.2.2.1)
284
- activesupport (= 7.2.2.1)
285
- irb (~> 1.13)
286
- rackup (>= 1.0.0)
287
- rake (>= 12.2)
288
- thor (~> 1.0, >= 1.2.2)
289
- zeitwerk (~> 2.6)
290
- rake (13.3.0)
291
- rb-fsevent (0.11.2)
292
- rb-inotify (0.11.1)
293
- ffi (~> 1.0)
294
- rdoc (6.14.2)
295
- erb
296
- psych (>= 4.0.0)
297
- redis (5.4.1)
298
- redis-client (>= 0.22.0)
299
- redis-client (0.25.1)
300
- connection_pool
301
- reline (0.6.2)
302
- io-console (~> 0.5)
303
- rest-client (2.1.0)
304
- http-accept (>= 1.7.0, < 2.0)
305
- http-cookie (>= 1.0.2, < 2.0)
306
- mime-types (>= 1.16, < 4.0)
307
- netrc (~> 0.8)
308
- rexml (3.4.1)
309
- ruby-progressbar (1.13.0)
310
- ruby2_keywords (0.0.5)
311
- sass (3.7.4)
312
- sass-listen (~> 4.0.0)
313
- sass-listen (4.0.0)
314
- rb-fsevent (~> 0.9, >= 0.9.4)
315
- rb-inotify (~> 0.9, >= 0.9.7)
316
- sass-rails (6.0.0)
317
- sassc-rails (~> 2.1, >= 2.1.1)
318
- sassc (2.4.0)
319
- ffi (~> 1.9)
320
- sassc-rails (2.1.2)
321
- railties (>= 4.0.0)
322
- sassc (>= 2.0)
323
- sprockets (> 3.0)
324
- sprockets-rails
325
- tilt
326
- securerandom (0.4.1)
327
- shoulda (4.0.0)
328
- shoulda-context (~> 2.0)
329
- shoulda-matchers (~> 4.0)
330
- shoulda-context (2.0.0)
331
- shoulda-matchers (4.5.1)
332
- activesupport (>= 4.2.0)
333
- simplecov (0.22.0)
334
- docile (~> 1.1)
335
- simplecov-html (~> 0.11)
336
- simplecov_json_formatter (~> 0.1)
337
- simplecov-html (0.13.2)
338
- simplecov_json_formatter (0.1.4)
339
- simplecov_lcov_formatter (0.9.0)
340
- simplecov (>= 0.18)
341
- sprockets (4.2.2)
342
- concurrent-ruby (~> 1.0)
343
- logger
344
- rack (>= 2.2.4, < 4)
345
- sprockets-rails (3.5.2)
346
- actionpack (>= 6.1)
347
- activesupport (>= 6.1)
348
- sprockets (>= 3.0.0)
349
- stringio (3.1.7)
350
- strscan (3.1.5)
351
- temple (0.10.4)
352
- test-unit (3.7.0)
353
- power_assert
354
- thor (1.4.0)
355
- tilt (2.6.1)
356
- timeout (0.4.3)
357
- twilio-ruby (7.7.0)
358
- faraday (>= 0.9, < 3.0)
359
- jwt (>= 1.5, < 3.0)
360
- nokogiri (>= 1.6, < 2.0)
361
- tzinfo (2.0.6)
362
- concurrent-ruby (~> 1.0)
363
- tzinfo-data (1.2025.2)
364
- tzinfo (>= 1.0.0)
365
- uri (1.0.3)
366
- useragent (0.16.11)
367
- valid_url (0.0.4)
368
- addressable
369
- rails
370
- validate_url (1.0.15)
371
- activemodel (>= 3.0.0)
372
- public_suffix
373
- web47core (3.2.28)
374
- activemodel
375
- activesupport
376
- aws-sdk-autoscaling
377
- cancancan
378
- daemons
379
- delayed_job_mongoid
380
- haml
381
- jwt
382
- liquid
383
- materialize-sass
384
- mongoid (~> 9.0)
385
- redis
386
- rest-client
387
- sass
388
- twilio-ruby
389
- tzinfo-data
390
- valid_url
391
- validate_url
392
- webmock (3.25.1)
393
- addressable (>= 2.8.0)
394
- crack (>= 0.3.2)
395
- hashdiff (>= 0.4.0, < 2.0.0)
396
- websocket-driver (0.8.0)
397
- base64
398
- websocket-extensions (>= 0.1.0)
399
- websocket-extensions (0.1.5)
400
- zeitwerk (2.7.3)
401
-
402
- PLATFORMS
403
- aarch64-linux-gnu
404
- aarch64-linux-musl
405
- arm-linux-gnu
406
- arm-linux-musl
407
- arm64-darwin
408
- x86_64-darwin
409
- x86_64-linux-gnu
410
- x86_64-linux-musl
411
-
412
- DEPENDENCIES
413
- brakeman
414
- codacy-coverage
415
- database_cleaner-mongoid
416
- factory_bot
417
- factory_bot_rails
418
- listen
419
- minitest (~> 5.0)
420
- minitest-rails
421
- minitest-reporters
422
- mocha
423
- rails (~> 7.2.2)
424
- railties
425
- rake
426
- sass-rails
427
- shoulda (~> 4.0.0)
428
- shoulda-context
429
- shoulda-matchers
430
- simplecov
431
- simplecov_lcov_formatter
432
- test-unit
433
- web47sso!
434
- webmock
435
-
436
- RUBY VERSION
437
- ruby 3.2.3p157
438
-
439
- BUNDLED WITH
440
- 2.5.13
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2025 Chris Schroeder
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
data/Rakefile DELETED
@@ -1,10 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rake/testtask"
3
-
4
- Rake::TestTask.new(:test) do |t|
5
- t.libs << "test"
6
- t.libs << "lib"
7
- t.test_files = FileList["test/**/*_test.rb"]
8
- end
9
-
10
- task :default => :test
data/coverage_merge.rb DELETED
@@ -1,28 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'simplecov'
4
- require 'simplecov_lcov_formatter'
5
-
6
- # Load up the files in the workspace and merge or collate them together.
7
- # This should kick out a single coverage file out
8
- SimpleCov::Formatter::LcovFormatter.config do |c|
9
- c.single_report_path = 'coverage/final.lcov'
10
- c.report_with_single_file = true
11
- end
12
- SimpleCov.collate Dir['/tmp/workspace/lcov/*.json'], 'rails' do
13
- add_filter '/spec/'
14
- add_filter '/config/'
15
- add_filter '/lib/'
16
- add_filter '/test/'
17
- add_filter '/vendor/'
18
- add_filter '/config/'
19
- add_filter '/db/'
20
- add_filter '/public/'
21
- add_filter '/coverage_merge.rb'
22
- add_filter '/Gemfile'
23
- add_filter '/Rakefile'
24
- add_filter '/Gemfile.lock'
25
- add_filter '/rubocop.yml'
26
- enable_coverage :branch
27
- formatter SimpleCov::Formatter::LcovFormatter
28
- end
data/web47sso.gemspec DELETED
@@ -1,61 +0,0 @@
1
-
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "web47sso/version"
5
- Gem::Specification.new do |spec|
6
- spec.name = "web47sso"
7
- spec.version = Web47sso::VERSION
8
- spec.authors = ["Chris Schroeder"]
9
- spec.email = ["chris@app47.com"]
10
-
11
- spec.summary = %q{App47 Web SSO}
12
- spec.description = %q{Single Sign On (SSO) components used in several App47 Apps}
13
- spec.homepage = "https://github.com/App47/web47sso.git"
14
- spec.license = "MIT"
15
-
16
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
- # to allow pushing to a single host or delete this section to allow pushing to any host.
18
- if spec.respond_to?(:metadata)
19
- spec.metadata["allowed_push_host"] = 'https://rubygems.org'
20
-
21
- spec.metadata["homepage_uri"] = spec.homepage
22
- spec.metadata["source_code_uri"] = "https://github.com/App47/web47sso.git"
23
- else
24
- raise "RubyGems 2.0 or newer is required to protect against " \
25
- "public gem pushes."
26
- end
27
-
28
- # Specify which files should be added to the gem when it is released.
29
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
30
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
31
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
32
- end
33
- spec.bindir = "bin"
34
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
35
- spec.require_paths = ["lib"]
36
-
37
- spec.add_runtime_dependency 'mongoid', '~> 9.0'
38
-
39
- spec.add_runtime_dependency 'web47core', '~> 3.2.28'
40
- spec.add_development_dependency "rake"
41
- spec.add_development_dependency "minitest", "~> 5.0"
42
- spec.add_development_dependency 'brakeman'
43
- spec.add_development_dependency 'codacy-coverage'
44
- spec.add_development_dependency 'database_cleaner-mongoid'
45
- spec.add_development_dependency 'factory_bot'
46
- spec.add_development_dependency 'factory_bot_rails'
47
- spec.add_development_dependency 'listen'
48
- spec.add_development_dependency 'minitest-rails'
49
- spec.add_development_dependency 'minitest-reporters'
50
- spec.add_development_dependency 'mocha'
51
- spec.add_development_dependency 'rails', '~> 7.2.2'
52
- spec.add_development_dependency 'railties'
53
- spec.add_development_dependency 'sass-rails'
54
- spec.add_development_dependency 'shoulda', '~> 4.0.0'
55
- spec.add_development_dependency 'shoulda-context'
56
- spec.add_development_dependency 'shoulda-matchers'
57
- spec.add_development_dependency 'simplecov'
58
- spec.add_development_dependency 'simplecov_lcov_formatter'
59
- spec.add_development_dependency 'test-unit'
60
- spec.add_development_dependency 'webmock'
61
- end