├── .gitignore ├── .travis.yml ├── CHANGELOG ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── closed_struct.gemspec ├── lib ├── closed_struct.rb └── closed_struct │ └── version.rb └── spec └── closed_struct_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /closed_struct.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/closed_struct.gemspec -------------------------------------------------------------------------------- /lib/closed_struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/lib/closed_struct.rb -------------------------------------------------------------------------------- /lib/closed_struct/version.rb: -------------------------------------------------------------------------------- 1 | class ClosedStruct 2 | VERSION = "1.0.0" 3 | end 4 | -------------------------------------------------------------------------------- /spec/closed_struct_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obrok/closed_struct/HEAD/spec/closed_struct_spec.rb --------------------------------------------------------------------------------