Sha256: c93d7fee781bcfffcfc1c8bda4596a517c504f0964abeb705c0fc5c2d936066c

Contents?: true

Size: 198 Bytes

Versions: 273

Compression:

Stored size: 198 Bytes

Contents

module Sample
  class Group
    attr_reader :members
    
    def initialize()
      @members = []
    end
    
    def <<(member)
      @members << member
    end

  end # Group
end # Sample
    

Version data entries

273 entries across 273 versions & 4 rubygems

Version Path
oj-3.3.4 test/sample/group.rb
oj-3.3.3 test/sample/group.rb
oj-3.3.2 test/sample/group.rb
oj-3.3.1 test/sample/group.rb
oj-3.3.0 test/sample/group.rb
oj-3.2.1 test/sample/group.rb
oj-3.2.0 test/sample/group.rb
oj-3.1.4 test/sample/group.rb
oj-3.1.3 test/sample/group.rb
oj-3.1.2 test/sample/group.rb
oj-3.1.0 test/sample/group.rb
oj-3.0.11 test/sample/group.rb
oj-3.0.10 test/sample/group.rb
oj-3.0.9 test/sample/group.rb
oj-3.0.8 test/sample/group.rb
oj-3.0.7 test/sample/group.rb
oj-3.0.6 test/sample/group.rb
oj-3.0.5 test/sample/group.rb
oj-3.0.4 test/sample/group.rb
oj-3.0.3 test/sample/group.rb