├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .standard.yml ├── Appraisals ├── CHANGELOG.md ├── CODEOWNERS ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── 7.1.gemfile ├── 7.2.gemfile └── 8.0.gemfile ├── lib ├── static_association.rb └── static_association │ └── version.rb ├── spec ├── spec_helper.rb └── static_association_spec.rb └── static_association.gemspec /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/.gitignore -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/.standard.yml -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/7.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/gemfiles/7.1.gemfile -------------------------------------------------------------------------------- /gemfiles/7.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/gemfiles/7.2.gemfile -------------------------------------------------------------------------------- /gemfiles/8.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/gemfiles/8.0.gemfile -------------------------------------------------------------------------------- /lib/static_association.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/lib/static_association.rb -------------------------------------------------------------------------------- /lib/static_association/version.rb: -------------------------------------------------------------------------------- 1 | module StaticAssociation 2 | VERSION = "0.3.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/static_association_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/spec/static_association_spec.rb -------------------------------------------------------------------------------- /static_association.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/static_association/HEAD/static_association.gemspec --------------------------------------------------------------------------------