Package | Version |
| ​1.0.0​ |
​Ruby,
​bundler,
​Rubygems hosts the data_structure_int
package. Declare the dependency attribute in the Gem Specification file, or declare the gem in the project's Gemfile:
Gemfilegem 'data_structure_int', '~> 1.0.0'
gem_name.gemspecGem::Specification.new do |spec|​# ...spec.add_development_dependency 'data_structure_int', '~> 1.0.0'# Orspec.add_runtime_dependency 'data_structure_int', '~> 1.0.0'# ...​end
Then, download and install:
$ bundle exec install
​Bundler downloads the package and installs in the appropriate context.
Package | Version |
| ​2.0.0​ |
​Ruby,
​bundler,
​node_comp,
​data_library,
​linked_list_comp, ​
​node_error, ​
​diagram_factory_comp, ​
​diagram_comp, ​
node_error, linked_list_comp, diagram_factory_comp, and diagram_comp development dependencies.
node_comp and linked_list_comp 'require'ments.
Test coverage.
Updated Gem Specification's email, summary, description, and dependencies.
Rewrote README.md.
Deleted node and linked_list_impl 'require'ments.
Reformatted.
Deleted linked_list_int, linked_list_impl, and linked_list_iterator dependencies.
'self.types()', 'self.types_element?(type = nil)', and 'self.type_child ?(type = nil)' methods.
Node and LinkedList in the TYPES array.
self.types() method test.
A .yardopts assertion.
Formatted Gem Specification.
Dependencies.
Deleted data_structure_helper.rb.
YARDocumentation.
'require'd 'node' and 'linked_list_impl'.
Replaced test fixtures. Set test constants.
Deleted Travis CI deployment settings.
Gem Specification License attribute.
Gem Specification Changelog URI.
'require' statement in test_helper.rb.
​Rubygems hosts the data_structure_impl
package. Declare the dependency attribute in the Gem Specification file, or declare the gem in the project's Gemfile:
Gemfilegem 'data_structure_impl', '~> 2'
gem_name.gemspecGem::Specification.new do |spec|​# ...spec.add_development_dependency 'data_structure_impl', '~> 2'# Orspec.add_runtime_dependency 'data_structure_impl', '~> 2'# ...​end
Then, download and install:
$ bundle exec install
​Bundler downloads and installs the package in the appropriate context.
Installation complete, insert require 'data_structure_impl'
in a relevant file.
Package | Version |
| ​1.0.0​ |
​Ruby,
​bundler, ​
​node_comp, ​
​linked_list_comp,
​node_error, ​
​data_library, ​
​diagram_factory_comp, ​
​diagram_comp, ​
​data_structure_int, ​
​data_structure_impl, ​
​Rubygems hosts the data_structure_comp
package. Declare the dependency attribute in the Gem Specification file, or declare the gem in the project's Gemfile:
Gemfilegem 'data_structure_comp', '~> 1'
gem_name.gemspecGem::Specification.new do |spec|​# ...spec.add_development_dependency 'data_structure_comp', '~> 1'# Orspec.add_runtime_dependency 'data_structure_comp', '~> 1'# ...​end
Then, download and install:
$ bundle exec install
​Bundler downloads the package and installs in the appropriate context.
Installation complete, insert require 'data_structure_comp'
in a relevant file.
Package | Version |
| ​2.2.0​ |
​Ruby,
​bundler,
​data_structure_comp, ​
​node,
​linked_list_comp, ​
'require'd data_structure_comp.
Test coverage.
Gem Specification email and runtime dependencies.
README.md's repository description, Installation content, Documentation content, and Contributing formatting.
Deleted data_structure_int, data_structure_impl, node, linked_list_int, linked_list_impl, linked_list_iterator, and data_type 'require'ments.
'require'd all components.
A .yardopts file assertion.
Renamed data_structure_library.rb data_structure.rb.
Formatted the Gem Specification.
Dependencies.
Formatted data_structure_library_test.rb.
Deleted Travis CI deployment settings.
README.md's Documentation section.
Gem Specification Changelog URI.
Gem Specification License.
'require' statement in test_helper.rb.
​Rubygems hosts the data_structure_library
package. Declare the dependency attribute in the Gem Specification file, or declare the gem in the project's Gemfile:
Gemfilegem 'data_structure_library', '~> 2'
gem_name.gemspecGem::Specification.new do |spec|​# ...spec.add_development_dependency 'data_structure_library', '~> 2'# Orspec.add_runtime_dependency 'data_structure_library', '~> 2'# ...​end
Then, download and install:
$ bundle exec install
​Bundler downloads the package and installs in the appropriate context.
Installation complete, insert require 'data_structure'
in a relevant file.