networkx 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +2 -0
- data/.rspec_formatter.rb +24 -0
- data/.rubocop.yml +109 -0
- data/.travis.yml +18 -0
- data/.yardopts +2 -0
- data/CODE_OF_CONDUCT.md +46 -0
- data/CONTRIBUTING.md +50 -0
- data/Gemfile +2 -0
- data/Guardfile +7 -0
- data/LICENSE.md +21 -0
- data/README.md +57 -0
- data/Rakefile +12 -0
- data/lib/networkx.rb +1 -0
- data/lib/networkx/version.rb +3 -0
- data/networkx.gemspec +36 -0
- metadata +229 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 075600936b353d065030ac10f584289ef859051b
|
4
|
+
data.tar.gz: 24ee821d52b51dd5d4c4c90fa07f06ed3d0e8218
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e1c43f90d1f537e034b131f2329a55462cf2b58829c6cfc0213ab9b25a1ba6261885e8e1a9799934a91a43565e2f18623909e39bd21c02bb58745d30192fb33f
|
7
|
+
data.tar.gz: c1ad69746300bd9bbfc69a8b8aa95ca38e0743835c8883cda82a7e3d0433d1df2e619358044fa00155c78a991da5906c42b5b626c8ed8905e3d8903c68f323c7
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.rspec_formatter.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
RSpec::Support.require_rspec_core 'formatters/base_text_formatter'
|
2
|
+
|
3
|
+
class SimpleFormatter < RSpec::Core::Formatters::BaseTextFormatter
|
4
|
+
RSpec::Core::Formatters.register self,
|
5
|
+
:example_passed, :example_pending, :example_failed, :dump_pending, :dump_failures, :dump_summary
|
6
|
+
|
7
|
+
def example_passed(message); end
|
8
|
+
|
9
|
+
def example_pending(message); end
|
10
|
+
|
11
|
+
def example_failed(message); end
|
12
|
+
|
13
|
+
def dump_pending(message); end
|
14
|
+
|
15
|
+
def dump_failures(message); end
|
16
|
+
|
17
|
+
def dump_summary(message)
|
18
|
+
colorizer = ::RSpec::Core::Formatters::ConsoleCodes
|
19
|
+
|
20
|
+
output.puts "\nFinished in #{message.formatted_duration} " \
|
21
|
+
"(files took #{message.formatted_load_time} to load)\n" \
|
22
|
+
"#{message.colorized_totals_line(colorizer)}\n"
|
23
|
+
end
|
24
|
+
end
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
require: rubocop-rspec
|
2
|
+
|
3
|
+
AllCops:
|
4
|
+
Include:
|
5
|
+
- 'lib/**/*'
|
6
|
+
Exclude:
|
7
|
+
- 'vendor/**/*'
|
8
|
+
- 'benchmarks/*'
|
9
|
+
- 'profile/*'
|
10
|
+
DisplayCopNames: true
|
11
|
+
TargetRubyVersion: 2.1
|
12
|
+
|
13
|
+
# Preferred codebase style ---------------------------------------------
|
14
|
+
|
15
|
+
### Layouts ------------------------------------------------------------
|
16
|
+
|
17
|
+
Layout/AlignParameters:
|
18
|
+
EnforcedStyle: with_fixed_indentation
|
19
|
+
|
20
|
+
Layout/ExtraSpacing:
|
21
|
+
AllowForAlignment: true
|
22
|
+
|
23
|
+
Layout/SpaceAfterComma:
|
24
|
+
Enabled: false
|
25
|
+
|
26
|
+
Layout/SpaceAroundEqualsInParameterDefault:
|
27
|
+
EnforcedStyle: no_space
|
28
|
+
|
29
|
+
Layout/SpaceAroundOperators:
|
30
|
+
Enabled: false
|
31
|
+
|
32
|
+
Layout/SpaceInsideBlockBraces:
|
33
|
+
EnforcedStyle: space
|
34
|
+
|
35
|
+
Layout/SpaceInsideHashLiteralBraces:
|
36
|
+
EnforcedStyle: no_space
|
37
|
+
|
38
|
+
### Styles -------------------------------------------------------------
|
39
|
+
|
40
|
+
Style/AndOr:
|
41
|
+
EnforcedStyle: conditionals
|
42
|
+
|
43
|
+
Style/DoubleNegation:
|
44
|
+
Enabled: false
|
45
|
+
|
46
|
+
Style/EmptyCaseCondition:
|
47
|
+
Enabled: false
|
48
|
+
|
49
|
+
Style/EmptyElse:
|
50
|
+
EnforcedStyle: empty
|
51
|
+
|
52
|
+
Style/EmptyMethod:
|
53
|
+
EnforcedStyle: compact
|
54
|
+
|
55
|
+
Style/FileName:
|
56
|
+
Enabled: false
|
57
|
+
|
58
|
+
Style/FormatString:
|
59
|
+
EnforcedStyle: percent
|
60
|
+
|
61
|
+
Style/ParallelAssignment:
|
62
|
+
Enabled: false
|
63
|
+
|
64
|
+
Style/SingleLineBlockParams:
|
65
|
+
Enabled: false
|
66
|
+
|
67
|
+
Style/PerlBackrefs:
|
68
|
+
Enabled: false
|
69
|
+
|
70
|
+
Style/Documentation:
|
71
|
+
Enabled: false # TODO
|
72
|
+
|
73
|
+
### Metrics ------------------------------------------------------------
|
74
|
+
|
75
|
+
Metrics/AbcSize:
|
76
|
+
Max: 20
|
77
|
+
|
78
|
+
Metrics/BlockLength:
|
79
|
+
Exclude:
|
80
|
+
- 'spec/**/*'
|
81
|
+
|
82
|
+
Metrics/ClassLength:
|
83
|
+
Max: 200
|
84
|
+
|
85
|
+
Metrics/CyclomaticComplexity:
|
86
|
+
Max: 7
|
87
|
+
|
88
|
+
Metrics/LineLength:
|
89
|
+
Max: 120
|
90
|
+
|
91
|
+
Metrics/MethodLength:
|
92
|
+
Max: 15
|
93
|
+
|
94
|
+
Metrics/ModuleLength:
|
95
|
+
Max: 200
|
96
|
+
|
97
|
+
Style/MultilineBlockChain:
|
98
|
+
Enabled: false
|
99
|
+
|
100
|
+
Metrics/ParameterLists:
|
101
|
+
Max: 10
|
102
|
+
|
103
|
+
### RSpec --------------------------------------------------------------
|
104
|
+
|
105
|
+
RSpec/MessageSpies:
|
106
|
+
EnforcedStyle: receive
|
107
|
+
|
108
|
+
RSpec/NestedGroups:
|
109
|
+
Max: 5
|
data/.travis.yml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
language:
|
2
|
+
ruby
|
3
|
+
|
4
|
+
rvm:
|
5
|
+
- '2.1'
|
6
|
+
- '2.2'
|
7
|
+
- '2.3.0'
|
8
|
+
- '2.4.0'
|
9
|
+
|
10
|
+
script:
|
11
|
+
- bundle exec rspec
|
12
|
+
- bundle exec rubocop
|
13
|
+
|
14
|
+
install:
|
15
|
+
- gem install bundler
|
16
|
+
- gem install rainbow -v '2.2.1'
|
17
|
+
- sudo apt-get update -qq
|
18
|
+
- bundle install
|
data/.yardopts
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
6
|
+
|
7
|
+
## Our Standards
|
8
|
+
|
9
|
+
Examples of behavior that contributes to creating a positive environment include:
|
10
|
+
|
11
|
+
* Using welcoming and inclusive language
|
12
|
+
* Being respectful of differing viewpoints and experiences
|
13
|
+
* Gracefully accepting constructive criticism
|
14
|
+
* Focusing on what is best for the community
|
15
|
+
* Showing empathy towards other community members
|
16
|
+
|
17
|
+
Examples of unacceptable behavior by participants include:
|
18
|
+
|
19
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
20
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
21
|
+
* Public or private harassment
|
22
|
+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
23
|
+
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
24
|
+
|
25
|
+
## Our Responsibilities
|
26
|
+
|
27
|
+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
28
|
+
|
29
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
30
|
+
|
31
|
+
## Scope
|
32
|
+
|
33
|
+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
34
|
+
|
35
|
+
## Enforcement
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at athityakumar@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
38
|
+
|
39
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
40
|
+
|
41
|
+
## Attribution
|
42
|
+
|
43
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
44
|
+
|
45
|
+
[homepage]: http://contributor-covenant.org
|
46
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# Contribution guidelines
|
2
|
+
|
3
|
+
First of all, thanks for thinking of contributing to this project. :smile:
|
4
|
+
|
5
|
+
Before sending a Pull Request, please make sure that you're assigned the task on a GitHub issue.
|
6
|
+
|
7
|
+
- If a relevant issue already exists, discuss on the issue and get it assigned to yourself on GitHub.
|
8
|
+
- If no relevant issue exists, open a new issue and get it assigned to yourself on GitHub.
|
9
|
+
|
10
|
+
Please proceed with a Pull Request only after you're assigned. It'd be sad if your Pull Request (and your hardwork) isn't accepted just because it isn't idealogically compatible.
|
11
|
+
|
12
|
+
# Developing the gem
|
13
|
+
|
14
|
+
1. Clone this repository and install all the required gem dependencies.
|
15
|
+
|
16
|
+
```sh
|
17
|
+
git clone https://github.com/athityakumar/daru-io.git
|
18
|
+
cd daru-io
|
19
|
+
gem install bundler
|
20
|
+
bundle install
|
21
|
+
```
|
22
|
+
|
23
|
+
2. Checkout to a different git branch (say, `adds-new-feature`).
|
24
|
+
|
25
|
+
3. Add any gem dependencies required, appropriately to the gemspec file or Gemfile.
|
26
|
+
|
27
|
+
4. Add code and YARD documentation.
|
28
|
+
|
29
|
+
5. Add tests to `spec/networkx/filename_spec.rb`. Add any files required for testing in the `spec/fixtures/` directory.
|
30
|
+
|
31
|
+
6. Run the rspec test-suite.
|
32
|
+
```sh
|
33
|
+
# Runs test suite for all files
|
34
|
+
bundle exec rspec
|
35
|
+
|
36
|
+
# Runs test-suite only for a particular file
|
37
|
+
bundle exec rspec spec/networkx/filename_spec.rb
|
38
|
+
```
|
39
|
+
|
40
|
+
7. Run the rubocop for static code quality comments.
|
41
|
+
|
42
|
+
```sh
|
43
|
+
# Runs rubocop test for all files
|
44
|
+
bundle exec rubocop
|
45
|
+
|
46
|
+
# Runs rubocop test only for a particular file
|
47
|
+
bundle exec rubocop lib/networkx/filename.rb
|
48
|
+
```
|
49
|
+
|
50
|
+
8. Send a Pull Request back to this repository. :tada:
|
data/Gemfile
ADDED
data/Guardfile
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 [Athitya Kumar](https://github.com/athityakumar/).
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# NetworkX.rb
|
2
|
+
|
3
|
+
[NetworkX](https://networkx.github.io/) is a very popular Python library, that handles various use-cases of the Graph Data Structure. This project intends to provide a working alternative to the Ruby community, by closely mimicing as many features as possible.
|
4
|
+
|
5
|
+
*This project has begun just now, and a v0.1.0 release with basic Graph classes can be expected by January 2018.*
|
6
|
+
|
7
|
+
### List of contents
|
8
|
+
|
9
|
+
- [Installing](#installing)
|
10
|
+
- [Roadmap](#roadmap)
|
11
|
+
- [Contributing](#contributing)
|
12
|
+
- [License](#license)
|
13
|
+
|
14
|
+
### Installing
|
15
|
+
|
16
|
+
[(Back to top)](#list-of-contents)
|
17
|
+
|
18
|
+
- Clone the repository with `git clone git@github.com:athityakumar/networkx.rb.git`
|
19
|
+
- Navigate to networkx with `cd networkx.rb`
|
20
|
+
- Install dependencies with `gem install bundler && bundle install`
|
21
|
+
- Install networkx gem with `rake install`
|
22
|
+
- Start checking out in PRY / IRB console :
|
23
|
+
|
24
|
+
```ruby
|
25
|
+
require 'networkx'
|
26
|
+
#=> true
|
27
|
+
|
28
|
+
# Yet to be implemented
|
29
|
+
g = NetworkX::Graph.new()
|
30
|
+
g.add_edge('start', 'stop')
|
31
|
+
```
|
32
|
+
|
33
|
+
### Roadmap
|
34
|
+
|
35
|
+
[(Back to top)](#list-of-contents)
|
36
|
+
|
37
|
+
Quite easily, any networkx user would be able to understand the number of details that have been implemented in the Python library. As a humble start towards the release of v0.1.0, the following could be the goals to achieve :
|
38
|
+
|
39
|
+
- `Node` : This class should be capable of handling different types of nodes (not just `String` / `Integer`). A possible complex use-case could be XML nodes.
|
40
|
+
|
41
|
+
- `Edge` : This class should be capable of handling different types of edges. Though a basic undirected Graph doesn't store any metadata in the edges, weighted edges and parametric edges are something that need to be handled.
|
42
|
+
|
43
|
+
- `Graph` : The simplest of graphs. This class handles just connections between different `Node`s via `Edge`s.
|
44
|
+
|
45
|
+
- `DirectedGraph` : Inherits from `Graph` class. Uses directions between `Edge`s.
|
46
|
+
|
47
|
+
### Contributing
|
48
|
+
|
49
|
+
[(Back to top)](#list-of-contents)
|
50
|
+
|
51
|
+
Your contributions are always welcome! Please have a look at the [contribution guidelines](CONTRIBUTING.md) first. :tada:
|
52
|
+
|
53
|
+
### License
|
54
|
+
|
55
|
+
[(Back to top)](#list-of-contents)
|
56
|
+
|
57
|
+
The MIT License 2017 - [Athitya Kumar](https://github.com/athityakumar). Please have a look at the [LICENSE.md](LICENSE.md) for more details.
|
data/Rakefile
ADDED
data/lib/networkx.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'networkx/version'
|
data/networkx.gemspec
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require 'networkx/version'
|
4
|
+
|
5
|
+
NetworkX::DESCRIPTION = <<MSG.freeze
|
6
|
+
A Ruby implemenation of the well-known graph library called "networkx".
|
7
|
+
MSG
|
8
|
+
|
9
|
+
Gem::Specification.new do |spec|
|
10
|
+
spec.name = 'networkx'
|
11
|
+
spec.version = NetworkX::VERSION
|
12
|
+
spec.authors = ['Athitya Kumar']
|
13
|
+
spec.email = ['athityakumar@gmail.com']
|
14
|
+
spec.summary = 'A Ruby implemenation of the well-known graph library called networkx.'
|
15
|
+
spec.description = NetworkX::DESCRIPTION
|
16
|
+
spec.homepage = 'https://github.com/athityakumar/networkx.rb'
|
17
|
+
spec.license = 'MIT'
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
spec.bindir = 'bin'
|
20
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ['lib']
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.15'
|
24
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
25
|
+
spec.add_development_dependency 'redcarpet'
|
26
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
27
|
+
spec.add_development_dependency 'rspec-its'
|
28
|
+
spec.add_development_dependency 'rubocop', '>= 0.40.0'
|
29
|
+
spec.add_development_dependency 'rubocop-rspec'
|
30
|
+
spec.add_development_dependency 'rubygems-tasks'
|
31
|
+
spec.add_development_dependency 'saharspec'
|
32
|
+
spec.add_development_dependency 'simplecov'
|
33
|
+
spec.add_development_dependency 'yard'
|
34
|
+
|
35
|
+
spec.add_development_dependency 'guard-rspec' if RUBY_VERSION >= '2.2.5'
|
36
|
+
end
|
metadata
ADDED
@@ -0,0 +1,229 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: networkx
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Athitya Kumar
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-11-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: redcarpet
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec-its
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.40.0
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.40.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rubocop-rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rubygems-tasks
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: saharspec
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: simplecov
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: yard
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: guard-rspec
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
description: |2
|
182
|
+
A Ruby implemenation of the well-known graph library called "networkx".
|
183
|
+
email:
|
184
|
+
- athityakumar@gmail.com
|
185
|
+
executables: []
|
186
|
+
extensions: []
|
187
|
+
extra_rdoc_files: []
|
188
|
+
files:
|
189
|
+
- ".gitignore"
|
190
|
+
- ".rspec"
|
191
|
+
- ".rspec_formatter.rb"
|
192
|
+
- ".rubocop.yml"
|
193
|
+
- ".travis.yml"
|
194
|
+
- ".yardopts"
|
195
|
+
- CODE_OF_CONDUCT.md
|
196
|
+
- CONTRIBUTING.md
|
197
|
+
- Gemfile
|
198
|
+
- Guardfile
|
199
|
+
- LICENSE.md
|
200
|
+
- README.md
|
201
|
+
- Rakefile
|
202
|
+
- lib/networkx.rb
|
203
|
+
- lib/networkx/version.rb
|
204
|
+
- networkx.gemspec
|
205
|
+
homepage: https://github.com/athityakumar/networkx.rb
|
206
|
+
licenses:
|
207
|
+
- MIT
|
208
|
+
metadata: {}
|
209
|
+
post_install_message:
|
210
|
+
rdoc_options: []
|
211
|
+
require_paths:
|
212
|
+
- lib
|
213
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
214
|
+
requirements:
|
215
|
+
- - ">="
|
216
|
+
- !ruby/object:Gem::Version
|
217
|
+
version: '0'
|
218
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
requirements: []
|
224
|
+
rubyforge_project:
|
225
|
+
rubygems_version: 2.6.12
|
226
|
+
signing_key:
|
227
|
+
specification_version: 4
|
228
|
+
summary: A Ruby implemenation of the well-known graph library called networkx.
|
229
|
+
test_files: []
|