masq2 1.0.0

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.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. checksums.yaml.gz.sig +0 -0
  3. data/CHANGELOG.md +83 -0
  4. data/CODE_OF_CONDUCT.md +135 -0
  5. data/CONTRIBUTING.md +151 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +426 -0
  8. data/SECURITY.md +23 -0
  9. data/app/assets/images/masq/favicon.ico +0 -0
  10. data/app/assets/images/masq/openid_symbol.png +0 -0
  11. data/app/assets/images/masq/seatbelt_icon.png +0 -0
  12. data/app/assets/images/masq/seatbelt_icon_gray.png +0 -0
  13. data/app/assets/images/masq/seatbelt_icon_high.png +0 -0
  14. data/app/assets/stylesheets/masq/application.css.erb +61 -0
  15. data/app/controllers/masq/accounts_controller.rb +132 -0
  16. data/app/controllers/masq/base_controller.rb +78 -0
  17. data/app/controllers/masq/consumer_controller.rb +144 -0
  18. data/app/controllers/masq/info_controller.rb +23 -0
  19. data/app/controllers/masq/passwords_controller.rb +42 -0
  20. data/app/controllers/masq/personas_controller.rb +75 -0
  21. data/app/controllers/masq/server_controller.rb +247 -0
  22. data/app/controllers/masq/sessions_controller.rb +58 -0
  23. data/app/controllers/masq/sites_controller.rb +60 -0
  24. data/app/controllers/masq/yubikey_associations_controller.rb +25 -0
  25. data/app/helpers/masq/application_helper.rb +57 -0
  26. data/app/helpers/masq/personas_helper.rb +15 -0
  27. data/app/helpers/masq/server_helper.rb +15 -0
  28. data/app/mailers/masq/account_mailer.rb +17 -0
  29. data/app/models/masq/account.rb +245 -0
  30. data/app/models/masq/open_id_request.rb +42 -0
  31. data/app/models/masq/persona.rb +61 -0
  32. data/app/models/masq/release_policy.rb +11 -0
  33. data/app/models/masq/site.rb +68 -0
  34. data/app/views/layouts/masq/base.html.erb +70 -0
  35. data/app/views/layouts/masq/consumer.html.erb +30 -0
  36. data/app/views/masq/account_mailer/forgot_password.html.erb +3 -0
  37. data/app/views/masq/account_mailer/forgot_password.text.erb +3 -0
  38. data/app/views/masq/account_mailer/signup_notification.html.erb +5 -0
  39. data/app/views/masq/account_mailer/signup_notification.text.erb +5 -0
  40. data/app/views/masq/accounts/_hcard.html.erb +29 -0
  41. data/app/views/masq/accounts/edit.html.erb +100 -0
  42. data/app/views/masq/accounts/new.html.erb +27 -0
  43. data/app/views/masq/accounts/show.html.erb +4 -0
  44. data/app/views/masq/accounts/show.xrds.builder +40 -0
  45. data/app/views/masq/consumer/index.html.erb +31 -0
  46. data/app/views/masq/consumer/start.html.erb +2 -0
  47. data/app/views/masq/info/help.html.erb +8 -0
  48. data/app/views/masq/info/index.html.erb +5 -0
  49. data/app/views/masq/info/safe_login.html.erb +24 -0
  50. data/app/views/masq/passwords/edit.html.erb +13 -0
  51. data/app/views/masq/passwords/new.html.erb +11 -0
  52. data/app/views/masq/personas/_form.html.erb +159 -0
  53. data/app/views/masq/personas/edit.html.erb +9 -0
  54. data/app/views/masq/personas/index.html.erb +17 -0
  55. data/app/views/masq/personas/new.html.erb +9 -0
  56. data/app/views/masq/server/decide.html.erb +146 -0
  57. data/app/views/masq/server/index.xrds.builder +19 -0
  58. data/app/views/masq/server/seatbelt_config.xml.builder +24 -0
  59. data/app/views/masq/server/seatbelt_login_state.xml.builder +4 -0
  60. data/app/views/masq/sessions/new.html.erb +27 -0
  61. data/app/views/masq/shared/_error_messages.html.erb +12 -0
  62. data/app/views/masq/sites/edit.html.erb +42 -0
  63. data/app/views/masq/sites/index.html.erb +20 -0
  64. data/config/initializers/configuration.rb +5 -0
  65. data/config/initializers/mime_types.rb +1 -0
  66. data/config/initializers/requires.rb +6 -0
  67. data/config/locales/de.yml +281 -0
  68. data/config/locales/en.yml +271 -0
  69. data/config/locales/es.yml +254 -0
  70. data/config/locales/nl.yml +258 -0
  71. data/config/locales/rails.de.yml +225 -0
  72. data/config/locales/ru.yml +272 -0
  73. data/config/masq.example.yml +132 -0
  74. data/config/routes.rb +41 -0
  75. data/db/migrate/20120312120000_masq_schema.rb +152 -0
  76. data/db/migrate/20130626220915_remame_last_authenticated_with_yubikey_on_masq_accounts.rb +11 -0
  77. data/db/migrate/20130704205532_add_first_and_lastname_columns_to_personas.rb +11 -0
  78. data/db/migrate/20130807060329_change_open_id_associations_server_url_column_type.rb +22 -0
  79. data/lib/masq/active_record_openid_store/association.rb +16 -0
  80. data/lib/masq/active_record_openid_store/nonce.rb +9 -0
  81. data/lib/masq/active_record_openid_store/openid_ar_store.rb +58 -0
  82. data/lib/masq/authenticated_system.rb +136 -0
  83. data/lib/masq/engine.rb +12 -0
  84. data/lib/masq/openid_server_system.rb +110 -0
  85. data/lib/masq/signup.rb +53 -0
  86. data/lib/masq/version.rb +5 -0
  87. data/lib/masq.rb +50 -0
  88. data/lib/masq2.rb +1 -0
  89. data/lib/tasks/masq_tasks.rake +58 -0
  90. data.tar.gz.sig +2 -0
  91. metadata +377 -0
  92. metadata.gz.sig +0 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 77764f37768125b2667fbf1e0cb515fe843646935aacfb91a36535c0ada3150a
4
+ data.tar.gz: 6605b7ade8f832eab801e4afabfc626d168c58609929ca6615747279349ea67c
5
+ SHA512:
6
+ metadata.gz: a340b1cf713473b59f978dd940ee55c21b6f6014d533a5ca8996f40a0108418e27b18c96d04b591c39974251102443ab16fd81788ef29547392dee8523ae38d8
7
+ data.tar.gz: 6a18ce8b8883107a571c9b27d7c3f85d5efaf119af36b3604eac4804b0df1282e496d26b311778a3307b528a05c51a6b3c1cb3362efc8c969a5bd9229279ddcd
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGELOG.md ADDED
@@ -0,0 +1,83 @@
1
+ # Changelog
2
+
3
+ [![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
4
+
5
+ All notable changes to this project will be documented in this file.
6
+
7
+ Since version 1.0, the format is based on [Keep a Changelog][📗keep-changelog],
8
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
9
+ and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
10
+ Please file a bug if you notice a violation of semantic versioning.
11
+
12
+ [📌semver]: https://semver.org/spec/v2.0.0.html
13
+ [📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
14
+ [📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
15
+ [📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
16
+ [📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
17
+ [📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
18
+
19
+ ## [Unreleased]
20
+ ### Added
21
+ ### Changed
22
+ ### Fixed
23
+ ### Removed
24
+
25
+ ## [1.0.0] - 2025-04-04 ([tag][1.0.0t])
26
+ - Line Coverage: 88.48% (776 / 877)
27
+ - Branch Coverage: 69.42% (193 / 278)
28
+ - 38.41% documented
29
+ ### Added
30
+ - Compatibility with Rails v5.2, v6.x, 7.x, 8.0
31
+ - Compatibility with Ruby 2.7.8, 3.0, 3.1, 3.2, 3.3, 3.4, ruby-head
32
+ ### Removed
33
+ - Dropped compatibility with Rails < 5.2
34
+ - Dropped compatibility with Ruby < 2.7.8
35
+
36
+ # masq releases
37
+
38
+ ## v0.3.4
39
+
40
+ * Always populate first and lastname when fullname is passed in
41
+ * Fix cancel_url request when checkid_request returns false
42
+
43
+ ## v0.3.3
44
+
45
+ * [Security] Updated Rails to version 3.2.22.2
46
+
47
+ ## v0.3.2
48
+
49
+ * Updated dependencies
50
+
51
+ ## v0.3.1
52
+
53
+ * Updated dependencies
54
+
55
+ ## v0.3.0
56
+
57
+ * Updated dependencies
58
+ * Patch on routing for email identifiers
59
+ * Internal improvements for testing
60
+
61
+ ## V0.2.9
62
+
63
+ * Fork on gem to make ORACLE compatible fixes.
64
+
65
+ ## v0.2.8
66
+
67
+ * Updated dependencies
68
+
69
+ ## v0.2.7
70
+
71
+ * Updated dependencies, Gemfile.lock was not correct (crypt19 v1.2.1 does not exist anymore)
72
+
73
+ ## v0.2.6
74
+
75
+ * [Security] Updated Rails to version 3.2.12 and JSON to 1.7.7
76
+
77
+ ## v0.2.5
78
+
79
+ * [Security] Updated Rails to version 3.2.11
80
+
81
+ [Unreleased]: https://github.com/oauth-xx/masq2/compare/v1.0.0...HEAD
82
+ [1.0.0]: https://github.com/oauth-xx/masq2/compare/bc6b6d84fe06811b9de19e7863c53c6bfad201fe...v1.0.0
83
+ [1.0.0t]: https://github.com/oauth-xx/masq2/tags/v1.0.0
@@ -0,0 +1,135 @@
1
+
2
+ # Contributor Covenant Code of Conduct
3
+
4
+ ## Our Pledge
5
+
6
+ We as members, contributors, and leaders pledge to make participation in our
7
+ community a harassment-free experience for everyone, regardless of age, body
8
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
9
+ identity and expression, level of experience, education, socio-economic status,
10
+ nationality, personal appearance, race, caste, color, religion, or sexual
11
+ identity and orientation.
12
+
13
+ We pledge to act and interact in ways that contribute to an open, welcoming,
14
+ diverse, inclusive, and healthy community.
15
+
16
+ ## Our Standards
17
+
18
+ Examples of behavior that contributes to a positive environment for our
19
+ community include:
20
+
21
+ * Demonstrating empathy and kindness toward other people
22
+ * Being respectful of differing opinions, viewpoints, and experiences
23
+ * Giving and gracefully accepting constructive feedback
24
+ * Accepting responsibility and apologizing to those affected by our mistakes,
25
+ and learning from the experience
26
+ * Focusing on what is best not just for us as individuals, but for the overall
27
+ community
28
+
29
+ Examples of unacceptable behavior include:
30
+
31
+ * The use of sexualized language or imagery, and sexual attention or advances of
32
+ any kind
33
+ * Trolling, insulting or derogatory comments, and personal or political attacks
34
+ * Public or private harassment
35
+ * Publishing others' private information, such as a physical or email address,
36
+ without their explicit permission
37
+ * Other conduct which could reasonably be considered inappropriate in a
38
+ professional setting
39
+
40
+ ## Enforcement Responsibilities
41
+
42
+ Community leaders are responsible for clarifying and enforcing our standards of
43
+ acceptable behavior and will take appropriate and fair corrective action in
44
+ response to any behavior that they deem inappropriate, threatening, offensive,
45
+ or harmful.
46
+
47
+ Community leaders have the right and responsibility to remove, edit, or reject
48
+ comments, commits, code, wiki edits, issues, and other contributions that are
49
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
50
+ decisions when appropriate.
51
+
52
+ ## Scope
53
+
54
+ This Code of Conduct applies within all community spaces, and also applies when
55
+ an individual is officially representing the community in public spaces.
56
+ Examples of representing our community include using an official email address,
57
+ posting via an official social media account, or acting as an appointed
58
+ representative at an online or offline event.
59
+
60
+ ## Enforcement
61
+
62
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
63
+ reported to the community leaders responsible for enforcement at
64
+ [![Contact BDFL][🚂bdfl-contact-img]][🚂bdfl-contact].
65
+ All complaints will be reviewed and investigated promptly and fairly.
66
+
67
+ All community leaders are obligated to respect the privacy and security of the
68
+ reporter of any incident.
69
+
70
+ ## Enforcement Guidelines
71
+
72
+ Community leaders will follow these Community Impact Guidelines in determining
73
+ the consequences for any action they deem in violation of this Code of Conduct:
74
+
75
+ ### 1. Correction
76
+
77
+ **Community Impact**: Use of inappropriate language or other behavior deemed
78
+ unprofessional or unwelcome in the community.
79
+
80
+ **Consequence**: A private, written warning from community leaders, providing
81
+ clarity around the nature of the violation and an explanation of why the
82
+ behavior was inappropriate. A public apology may be requested.
83
+
84
+ ### 2. Warning
85
+
86
+ **Community Impact**: A violation through a single incident or series of
87
+ actions.
88
+
89
+ **Consequence**: A warning with consequences for continued behavior. No
90
+ interaction with the people involved, including unsolicited interaction with
91
+ those enforcing the Code of Conduct, for a specified period of time. This
92
+ includes avoiding interactions in community spaces as well as external channels
93
+ like social media. Violating these terms may lead to a temporary or permanent
94
+ ban.
95
+
96
+ ### 3. Temporary Ban
97
+
98
+ **Community Impact**: A serious violation of community standards, including
99
+ sustained inappropriate behavior.
100
+
101
+ **Consequence**: A temporary ban from any sort of interaction or public
102
+ communication with the community for a specified period of time. No public or
103
+ private interaction with the people involved, including unsolicited interaction
104
+ with those enforcing the Code of Conduct, is allowed during this period.
105
+ Violating these terms may lead to a permanent ban.
106
+
107
+ ### 4. Permanent Ban
108
+
109
+ **Community Impact**: Demonstrating a pattern of violation of community
110
+ standards, including sustained inappropriate behavior, harassment of an
111
+ individual, or aggression toward or disparagement of classes of individuals.
112
+
113
+ **Consequence**: A permanent ban from any sort of public interaction within the
114
+ community.
115
+
116
+ ## Attribution
117
+
118
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
119
+ version 2.1, available at
120
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
121
+
122
+ Community Impact Guidelines were inspired by
123
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
124
+
125
+ For answers to common questions about this code of conduct, see the FAQ at
126
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
127
+ [https://www.contributor-covenant.org/translations][translations].
128
+
129
+ [homepage]: https://www.contributor-covenant.org
130
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
131
+ [Mozilla CoC]: https://github.com/mozilla/diversity
132
+ [FAQ]: https://www.contributor-covenant.org/faq
133
+ [translations]: https://www.contributor-covenant.org/translations
134
+ [🚂bdfl-contact]: http://www.railsbling.com/contact
135
+ [🚂bdfl-contact-img]: https://img.shields.io/badge/Contact-BDFL-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,151 @@
1
+ # Contributing
2
+
3
+ Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/oauth-xx/masq2][🚎src-main]
4
+ . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
5
+ the [code of conduct][🤝conduct].
6
+
7
+ To submit a patch, please fork the project and create a patch with tests.
8
+ Once you're happy with it send a pull request.
9
+
10
+ We [![Keep A Changelog][📗keep-changelog-img]][📗keep-changelog] so if you make changes, remember to update it.
11
+
12
+ ## You can help!
13
+
14
+ Simply follow these instructions:
15
+
16
+ 1. Fork the repository
17
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
18
+ 3. Make some fixes.
19
+ 4. Commit your changes (`git commit -am 'Added some feature'`)
20
+ 5. Push to the branch (`git push origin my-new-feature`)
21
+ 6. Make sure to add tests for it. This is important, so it doesn't break in a future release.
22
+ 7. Create new Pull Request.
23
+
24
+ ## Appraisals
25
+
26
+ From time to time the appraisal gemfiles in `gemfiles/` will need to be updated.
27
+ They are created and updated with the commands:
28
+
29
+ NOTE: We run on a [fork][🚎appraisal-fork] of Appraisal.
30
+
31
+ Please upvote the PR for `eval_gemfile` [support][🚎appraisal-eval-gemfile-pr]
32
+
33
+ ```shell
34
+ BUNDLE_GEMFILE=Appraisal.root.gemfile bundle
35
+ BUNDLE_GEMFILE=Appraisal.root.gemfile bundle exec appraisal update
36
+ ```
37
+
38
+ When adding an appraisal to CI check the [runner tool cache][🏃‍♂️runner-tool-cache] to see which runner to use.
39
+
40
+ When fixing an issue in CI with a specific appraisal:
41
+ ```shell
42
+ adsf local ruby 3.0.7 # or whatever version you need
43
+ BUNDLE_GEMFILE=Appraisal.root.gemfile bundle install
44
+ BUNDLE_GEMFILE=gemfiles/rails_6_1.gemfile bundle # or whatever appraisal you need
45
+ BUNDLE_GEMFILE=gemfiles/rails_6_1.gemfile bundle exec rake test # or whatever command failed
46
+ ```
47
+
48
+ ## The Reek List
49
+
50
+ Take a look at the `reek` list which is the file called `REEK` and find something to improve.
51
+
52
+ To refresh the `reek` list:
53
+
54
+ ```bash
55
+ bundle exec reek > REEK
56
+ ```
57
+
58
+ ## Run Tests
59
+
60
+ To run all tests
61
+
62
+ ```bash
63
+ bundle exec rake test
64
+ ```
65
+
66
+ To run a single test:
67
+
68
+ ```bash
69
+ bundle exec ruby -I test file/path/to/test.rb --name test_name_that_is_real
70
+ ```
71
+
72
+ Just swap out the example file path and test name, to be something like below:
73
+
74
+ ```bash
75
+ bundle exec ruby -I test test/functional/masq/sessions_controller_test.rb --name test_should_authenticate_with_password_and_yubico_otp
76
+ ```
77
+
78
+ ## Lint It
79
+
80
+ Run all the default tasks, which includes running the gradually autocorrecting linter, `rubocop-gradual`.
81
+
82
+ ```bash
83
+ bundle exec rake
84
+ ```
85
+
86
+ Or just run the linter.
87
+
88
+ ```bash
89
+ bundle exec rake rubocop_gradual:autocorrect
90
+ ```
91
+
92
+ ## Contributors
93
+
94
+ Your picture could be here!
95
+
96
+ [![Contributors][🖐contributors-img]][🖐contributors]
97
+
98
+ Made with [contributors-img][🖐contrib-rocks].
99
+
100
+ Also see GitLab Contributors: [https://gitlab.com/oauth-xx/masq2/-/graphs/main][🚎contributors-gl]
101
+
102
+ ## For Maintainers
103
+
104
+ ### One-time, Per-maintainer, Setup
105
+
106
+ **IMPORTANT**: Your public key for signing gems will need to be picked up by the line in the
107
+ `gemspec` defining the `spec.cert_chain` (check the relevant ENV variables there),
108
+ in order to sign the new release.
109
+ See: [RubyGems Security Guide][🔒️rubygems-security-guide]
110
+
111
+ ### To release a new version:
112
+
113
+ 1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check
114
+ 2. Update the version number in `version.rb`, and ensure `CHANGELOG.md` reflects changes
115
+ 3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`
116
+ 4. Run `git commit -am "🔖 Prepare release v<VERSION>"` to commit the changes
117
+ 5. Run `git push` to trigger the final CI pipeline before release, & merge PRs
118
+ - NOTE: Remember to [check the build][🧪build]!
119
+ 6. Run `export GIT_TRUNK_BRANCH_NAME="$(git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5)" && echo $GIT_TRUNK_BRANCH_NAME`
120
+ 7. Run `git checkout $GIT_TRUNK_BRANCH_NAME`
121
+ 8. Run `git pull origin $GIT_TRUNK_BRANCH_NAME` to ensure you will release the latest trunk code
122
+ 9. Set `SOURCE_DATE_EPOCH` so `rake build` and `rake release` use same timestamp, and generate same checksums
123
+ - Run `export SOURCE_DATE_EPOCH=$EPOCHSECONDS && echo $SOURCE_DATE_EPOCH`
124
+ - If the echo above has no output, then it didn't work.
125
+ - Note that you'll need the `zsh/datetime` module, if running `zsh`.
126
+ - In `bash` you can use `date +%s` instead, i.e. `export SOURCE_DATE_EPOCH=$(date +%s) && echo $SOURCE_DATE_EPOCH`
127
+ 10. Run `bundle exec rake build`
128
+ 11. Run `bin/gem_checksums` (more context [1][🔒️rubygems-checksums-pr] and [2][🔒️rubygems-guides-pr])
129
+ to create SHA-256 and SHA-512 checksums
130
+ - Checksums will be committed automatically by the script, but not pushed
131
+ 12. Run `bundle exec rake release` which will create a git tag for the version,
132
+ push git commits and tags, and push the `.gem` file to [rubygems.org][💎rubygems]
133
+
134
+ [🚎src-main]: https://gitlab.com/oauth-xx/masq2
135
+ [🧪build]: https://github.com/oauth-xx/masq2/actions
136
+ [🤝conduct]: https://gitlab.com/oauth-xx/masq2/-/blob/main/CODE_OF_CONDUCT.md
137
+ [🖐contrib-rocks]: https://contrib.rocks
138
+ [🖐contributors]: https://github.com/oauth-xx/masq2/graphs/contributors
139
+ [🚎contributors-gl]: https://gitlab.com/oauth-xx/masq2/-/graphs/main
140
+ [🖐contributors-img]: https://contrib.rocks/image?repo=oauth-xx/masq2
141
+ [💎rubygems]: https://rubygems.org
142
+ [🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
143
+ [🔒️rubygems-checksums-pr]: https://github.com/rubygems/rubygems/pull/6022
144
+ [🔒️rubygems-guides-pr]: https://github.com/rubygems/guides/pull/325
145
+ [📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
146
+ [📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
147
+ [📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
148
+ [📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
149
+ [🚎appraisal-eval-gemfile-pr]: https://github.com/thoughtbot/appraisal/pull/248
150
+ [🚎appraisal-fork]: https://github.com/pboling/appraisal/tree/galtzo
151
+ [🏃‍♂️runner-tool-cache]: https://github.com/ruby/ruby-builder/releases/tag/toolcache
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2012 Dennis Reimann (mail@dennisreimann.de)
4
+ Copyright (c) 2024 - 2025 Peter Boling (https://railsbling.com)
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.