TinyStruct
Build Struct classes that do less. TinyStruct is a very similar concept to Struct classes in Ruby, with a few key differences:
- In
Structclasses all parameters are optional, inTinyStructthey are all required. - In
Structclasses each parameter is accessible through anattr_accessor, inTinyStructthey are accessible throughattr_readers. - In
Structclasses you can call all kinds of querying methods on the objects as if they were an enumerable of the various values they represent (e.g.,to_a,to_h,size,[],values_at, etc.), inTinyStructnone of these methods are defined.
Use Struct if you need the flexibility and extra query methods provided by the constructor. If not, consider using TinyStruct.
Installation
Add this line to your application's Gemfile:
gem 'tiny_struct'
And then execute:
$ bundle
Or install it yourself as:
$ gem install tiny_struct
Usage
Basic usage
Build TinyStruct classes like so:
class User < TinyStruct.new(:first_name, :last_name)
def full_name
"#{first_name} #{last_name}"
end
end
Now you can build User objects like so:
user = User.new('Kevin', 'Deisz')
# => #<User @first_name="Kevin" @last_name="Deisz">
Configuration
TinyStruct by default will cache each of the classes that is constructed through TinyStruct::new in order to deduplicate potential new classes with those that are already constructed. This cache is by default stored in memory. If you're worried about memory performance and don't mind taking a hit to performance, you can turn this off (and have it instead just loop through ObjectSpace) by doing the following before you configure anything:
TinyStruct.configure do |config|
config.cache = false
end
Development
After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/kddeisz/tiny_struct.
License
The gem is available as open source under the terms of the MIT License.