├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── hash_with_dot_access.gemspec └── lib ├── hash_with_dot_access.rb └── hash_with_dot_access └── version.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.4 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/Rakefile -------------------------------------------------------------------------------- /hash_with_dot_access.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/hash_with_dot_access.gemspec -------------------------------------------------------------------------------- /lib/hash_with_dot_access.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bridgetownrb/hash_with_dot_access/HEAD/lib/hash_with_dot_access.rb -------------------------------------------------------------------------------- /lib/hash_with_dot_access/version.rb: -------------------------------------------------------------------------------- 1 | module HashWithDotAccess 2 | VERSION = "2.1.1" 3 | end 4 | --------------------------------------------------------------------------------