ruby_graph 0.1.0.pre.alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: daf31d604b055ac3b48d29626827fb98b9b9097494cadf558dbc46bf05fa36fe
4
+ data.tar.gz: 9c4f92104a037601ef44dbd0fd71c2cae65e20afb5aec443a58cc79941a73c01
5
+ SHA512:
6
+ metadata.gz: '029f81e76115fe8f0f3204fdccc21d88c6e523a4343f968b3ee292ba2decbaa59ed5e890628ccdf7f579cf53a1fd7cebbe1e559060ef2b98c592b9d42f7dd1b1'
7
+ data.tar.gz: d749fa145783eb919863604ba6d8c2121bcc43a207e5d535ede60425995fc22dc481c5e44875b13d11300733fab4cd1dad568b49009a1bc74b7688ec7c44c291
@@ -0,0 +1,61 @@
1
+ **/*.swp
2
+ **.war
3
+ *.rbc
4
+ *.sassc
5
+
6
+ .DS_STORE
7
+ .byebug_history
8
+ .pry_history
9
+ .pryrc_custom
10
+ .redcar/
11
+ .sass-cache
12
+ .yardoc
13
+ .yarn-integrity
14
+ .zeus.sock
15
+
16
+ rerun.txt
17
+ yarn-debug.log*
18
+
19
+ !/log/.keep
20
+ !/storage/.keep
21
+ !/tmp/.keep
22
+
23
+ /.bundle
24
+ /builds
25
+ /cache
26
+ /capybara*
27
+ /capybara-*.html
28
+ /config/config.yml
29
+ /config/master.key
30
+ /coverage.data
31
+ /coverage/
32
+ /db/*.sqlite3
33
+ /db/*.sqlite3-journal
34
+ /db/*.sqlite3-*
35
+ /doc
36
+ /doc/api/
37
+ /doc/app/
38
+ /doc/features.html
39
+ /doc/specs.html
40
+ /features_report.html
41
+ /gems
42
+ /log/*
43
+ /node_modules
44
+ /public/assets/
45
+ /public/cache
46
+ /public/packs
47
+ /public/packs-test
48
+ /public/stylesheets/compiled
49
+ /public/system
50
+ /public/system/*
51
+ /shared/*
52
+ /shared/storage/*
53
+ /spec/tmp/*
54
+ /specifications
55
+ /storage/*
56
+ /target/
57
+ /tmp/*
58
+ /vendor/bundle/
59
+ /vendor/ruby/
60
+ /yarn-error.log
61
+ .env
@@ -0,0 +1,105 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+ Exclude:
4
+ - 'bin/*'
5
+ - 'builds/**/*'
6
+ - 'config/**/*'
7
+ - 'db/**/*'
8
+ - 'gems/**/*'
9
+ - 'node_modules/**/*'
10
+ - 'script/**/*'
11
+ - 'vendor/**/*'
12
+ - '**/bin/*'
13
+ - '**/Capfile'
14
+ - '**/Guardfile'
15
+
16
+ # Avoid 'Missing top-level class documentation comment'
17
+ Documentation:
18
+ Enabled: false
19
+
20
+ Layout/IndentationWidth:
21
+ Width: 2
22
+
23
+ Layout/LeadingCommentSpace:
24
+ Enabled: false
25
+
26
+ Layout/LineLength:
27
+ Max: 120
28
+ Exclude:
29
+ - 'test/**/*.rb'
30
+
31
+ # The ABC size is a calculated magnitude, so this number can be a Fixnum or a Float (default 15)
32
+ Metrics/AbcSize:
33
+ Exclude:
34
+ - 'test/factories/**/*.rb'
35
+ - 'test/support/**/*.rb'
36
+
37
+ Metrics/BlockLength:
38
+ Exclude:
39
+ - '**/*.rake'
40
+ - 'test/factories/*.rb'
41
+ - 'test/**/*.rb'
42
+ - Gemfile
43
+
44
+ Metrics/ClassLength:
45
+ Enabled: true
46
+ Exclude:
47
+ - '**/*_spec.rb'
48
+ - '**/*.rake'
49
+ - 'test/factories/*.rb'
50
+ - 'test/**/*.rb'
51
+
52
+ Metrics/MethodLength:
53
+ CountComments: false # count full line comments?
54
+ Exclude:
55
+ - 'test/factories/**/*.rb'
56
+ - 'test/support/*.rb'
57
+ - 'test/**/*.rb'
58
+
59
+ Metrics/ModuleLength:
60
+ Enabled: true
61
+ Exclude:
62
+ - spec/**/*
63
+ - test/**/*
64
+ - "**/*.rake"
65
+
66
+ Naming/MemoizedInstanceVariableName:
67
+ Enabled: false
68
+
69
+ Naming/MethodParameterName:
70
+ Enabled: false
71
+
72
+ # Allow methods starting with 'has_'
73
+ Naming/PredicateName:
74
+ Enabled: false
75
+
76
+ # Allow inline declaration 'private def bar; end'
77
+ Style/AccessModifierDeclarations:
78
+ EnforcedStyle: inline
79
+
80
+ # Allow code-style 'my_condtion and return true'
81
+ Style/AndOr:
82
+ EnforcedStyle: conditionals
83
+
84
+ Style/BlockDelimiters:
85
+ Exclude:
86
+ - 'test/factories/*.rb'
87
+ - 'lib/tasks/**/*.rake'
88
+
89
+ Style/ClassAndModuleChildren:
90
+ Exclude:
91
+ - test/**/*.rb
92
+
93
+ # Should be deprecated in newer Rails-versions # https://bugs.ruby-lang.org/issues/11473#note-53
94
+ Style/FrozenStringLiteralComment:
95
+ Enabled: false
96
+
97
+ Style/RegexpLiteral:
98
+ Enabled: false
99
+
100
+ Style/Semicolon:
101
+ AllowAsExpressionSeparator: true
102
+
103
+ Style/SymbolArray:
104
+ Exclude:
105
+ - 'test/factories/*.rb'
@@ -0,0 +1 @@
1
+ ruby-2.6.0
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.5.3
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at michael.ajwani@i22.de. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,17 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruby_graph.gemspec
4
+ gemspec
5
+
6
+ gem 'guard'
7
+ gem 'guard-minitest'
8
+ gem 'minitest', '~> 5.0'
9
+ gem 'minitest-focus' # Focus on one test at a time by adding 'focus' above the test.
10
+ gem 'pry'
11
+ gem 'pry-alias'
12
+ gem 'pry-byebug'
13
+ gem 'pry-rescue'
14
+ gem 'pry-stack_explorer'
15
+ gem 'rake', '~> 12.0'
16
+ gem 'rb-readline'
17
+ gem 'rubocop'
@@ -0,0 +1,104 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ ruby_graph (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ ast (2.4.1)
10
+ binding_of_caller (0.8.0)
11
+ debug_inspector (>= 0.0.1)
12
+ byebug (11.1.3)
13
+ coderay (1.1.3)
14
+ debug_inspector (0.0.3)
15
+ ffi (1.13.1)
16
+ formatador (0.2.5)
17
+ guard (2.16.2)
18
+ formatador (>= 0.2.4)
19
+ listen (>= 2.7, < 4.0)
20
+ lumberjack (>= 1.0.12, < 2.0)
21
+ nenv (~> 0.1)
22
+ notiffany (~> 0.0)
23
+ pry (>= 0.9.12)
24
+ shellany (~> 0.0)
25
+ thor (>= 0.18.1)
26
+ guard-compat (1.2.1)
27
+ guard-minitest (2.4.6)
28
+ guard-compat (~> 1.2)
29
+ minitest (>= 3.0)
30
+ interception (0.5)
31
+ listen (3.3.1)
32
+ rb-fsevent (~> 0.10, >= 0.10.3)
33
+ rb-inotify (~> 0.9, >= 0.9.10)
34
+ lumberjack (1.2.8)
35
+ method_source (1.0.0)
36
+ minitest (5.14.2)
37
+ minitest-focus (1.2.1)
38
+ minitest (>= 4, < 6)
39
+ nenv (0.3.0)
40
+ notiffany (0.1.3)
41
+ nenv (~> 0.1)
42
+ shellany (~> 0.0)
43
+ parallel (1.20.1)
44
+ parser (2.7.2.0)
45
+ ast (~> 2.4.1)
46
+ pry (0.13.1)
47
+ coderay (~> 1.1)
48
+ method_source (~> 1.0)
49
+ pry-alias (0.0.1)
50
+ binding_of_caller
51
+ pry
52
+ pry-byebug (3.9.0)
53
+ byebug (~> 11.0)
54
+ pry (~> 0.13.0)
55
+ pry-rescue (1.5.2)
56
+ interception (>= 0.5)
57
+ pry (>= 0.12.0)
58
+ pry-stack_explorer (0.4.12)
59
+ binding_of_caller (~> 0.7)
60
+ pry (~> 0.13)
61
+ rainbow (3.0.0)
62
+ rake (12.3.3)
63
+ rb-fsevent (0.10.4)
64
+ rb-inotify (0.10.1)
65
+ ffi (~> 1.0)
66
+ rb-readline (0.5.5)
67
+ regexp_parser (2.0.0)
68
+ rexml (3.2.4)
69
+ rubocop (1.4.2)
70
+ parallel (~> 1.10)
71
+ parser (>= 2.7.1.5)
72
+ rainbow (>= 2.2.2, < 4.0)
73
+ regexp_parser (>= 1.8)
74
+ rexml
75
+ rubocop-ast (>= 1.1.1)
76
+ ruby-progressbar (~> 1.7)
77
+ unicode-display_width (>= 1.4.0, < 2.0)
78
+ rubocop-ast (1.2.0)
79
+ parser (>= 2.7.1.5)
80
+ ruby-progressbar (1.10.1)
81
+ shellany (0.0.1)
82
+ thor (1.0.1)
83
+ unicode-display_width (1.7.0)
84
+
85
+ PLATFORMS
86
+ ruby
87
+
88
+ DEPENDENCIES
89
+ guard
90
+ guard-minitest
91
+ minitest (~> 5.0)
92
+ minitest-focus
93
+ pry
94
+ pry-alias
95
+ pry-byebug
96
+ pry-rescue
97
+ pry-stack_explorer
98
+ rake (~> 12.0)
99
+ rb-readline
100
+ rubocop
101
+ ruby_graph!
102
+
103
+ BUNDLED WITH
104
+ 2.1.4
@@ -0,0 +1,42 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ guard :minitest do
19
+ # with Minitest::Unit
20
+ watch(%r{^test/(.*)\/?test_(.*)\.rb$})
21
+ watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
22
+ watch(%r{^test/test_helper\.rb$}) { 'test' }
23
+
24
+ # with Minitest::Spec
25
+ # watch(%r{^spec/(.*)_spec\.rb$})
26
+ # watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
27
+ # watch(%r{^spec/spec_helper\.rb$}) { 'spec' }
28
+
29
+ # Rails 4
30
+ # watch(%r{^app/(.+)\.rb$}) { |m| "test/#{m[1]}_test.rb" }
31
+ # watch(%r{^app/controllers/application_controller\.rb$}) { 'test/controllers' }
32
+ # watch(%r{^app/controllers/(.+)_controller\.rb$}) { |m| "test/integration/#{m[1]}_test.rb" }
33
+ # watch(%r{^app/views/(.+)_mailer/.+}) { |m| "test/mailers/#{m[1]}_mailer_test.rb" }
34
+ # watch(%r{^lib/(.+)\.rb$}) { |m| "test/lib/#{m[1]}_test.rb" }
35
+ # watch(%r{^test/.+_test\.rb$})
36
+ # watch(%r{^test/test_helper\.rb$}) { 'test' }
37
+
38
+ # Rails < 4
39
+ # watch(%r{^app/controllers/(.*)\.rb$}) { |m| "test/functional/#{m[1]}_test.rb" }
40
+ # watch(%r{^app/helpers/(.*)\.rb$}) { |m| "test/helpers/#{m[1]}_test.rb" }
41
+ # watch(%r{^app/models/(.*)\.rb$}) { |m| "test/unit/#{m[1]}_test.rb" }
42
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Michael Ajwani
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # RubyGraph
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ruby_graph`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'ruby_graph'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle install
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install ruby_graph
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ruby_graph. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/ruby_graph/blob/master/CODE_OF_CONDUCT.md).
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
+
42
+ ## Code of Conduct
43
+
44
+ Everyone interacting in the RubyGraph project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/ruby_graph/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,10 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << 'test'
6
+ t.libs << 'lib'
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task default: :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'ruby_graph'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,6 @@
1
+ require 'ruby_graph/version'
2
+
3
+ module RubyGraph
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,3 @@
1
+ module RubyGraph
2
+ VERSION = '0.1.0-alpha'.freeze
3
+ end
@@ -0,0 +1,32 @@
1
+ require_relative 'lib/ruby_graph/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = 'ruby_graph'
5
+ spec.version = RubyGraph::VERSION
6
+ spec.authors = ['OneDivZero']
7
+ spec.email = ['']
8
+
9
+ spec.summary = 'A simple graph-library for ruby'
10
+ spec.description = 'A simple graph-library for ruby'
11
+ spec.homepage = 'https://github.com/OneDivZero/ruby-graph'
12
+ spec.license = 'MIT'
13
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
14
+
15
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = spec.homepage
19
+ # spec.metadata['changelog_uri'] = "TODO: Put your gem's CHANGELOG.md URL here."
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = 'exe'
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ['lib']
29
+
30
+ spec.add_development_dependency 'guard-minitest'
31
+ spec.add_development_dependency 'minitest'
32
+ end
metadata ADDED
@@ -0,0 +1,89 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_graph
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.pre.alpha
5
+ platform: ruby
6
+ authors:
7
+ - OneDivZero
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-11-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: guard-minitest
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A simple graph-library for ruby
42
+ email:
43
+ - ''
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".rubocop.yml"
50
+ - ".ruby-version"
51
+ - ".travis.yml"
52
+ - CODE_OF_CONDUCT.md
53
+ - Gemfile
54
+ - Gemfile.lock
55
+ - Guardfile
56
+ - LICENSE.txt
57
+ - README.md
58
+ - Rakefile
59
+ - bin/console
60
+ - bin/setup
61
+ - lib/ruby_graph.rb
62
+ - lib/ruby_graph/version.rb
63
+ - ruby_graph.gemspec
64
+ homepage: https://github.com/OneDivZero/ruby-graph
65
+ licenses:
66
+ - MIT
67
+ metadata:
68
+ homepage_uri: https://github.com/OneDivZero/ruby-graph
69
+ source_code_uri: https://github.com/OneDivZero/ruby-graph
70
+ post_install_message:
71
+ rdoc_options: []
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 2.6.0
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">"
82
+ - !ruby/object:Gem::Version
83
+ version: 1.3.1
84
+ requirements: []
85
+ rubygems_version: 3.0.6
86
+ signing_key:
87
+ specification_version: 4
88
+ summary: A simple graph-library for ruby
89
+ test_files: []