networkx 0.0.0 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Guardfile +1 -1
- data/README.md +4 -4
- data/lib/networkx/version.rb +1 -1
- data/networkx.gemspec +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f43ce74dd6bd8fbe91d6b5f29f3b7af355881e9
|
4
|
+
data.tar.gz: 0275c9f6161b6bcf973af9f18a989969ce757bd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17623a41e26fceebed54169c423dbe95a3ee59456a3cc4d3d888e74b70d8e2a58b7329d1565026babdc5196ae37b19422432eaa6e74cce03bbcef21c883c5312
|
7
|
+
data.tar.gz: 8727b100efab027667eb7c8f3aa13bb3396b56e28a21437b3e21eda904bb99e7ebc9fc35a31451e3661f909faba8c6e57a14c2be1c832100526c1dcfedda4c1e
|
data/Guardfile
CHANGED
data/README.md
CHANGED
@@ -13,8 +13,6 @@
|
|
13
13
|
|
14
14
|
### Installing
|
15
15
|
|
16
|
-
[(Back to top)](#list-of-contents)
|
17
|
-
|
18
16
|
- Clone the repository with `git clone git@github.com:athityakumar/networkx.rb.git`
|
19
17
|
- Navigate to networkx with `cd networkx.rb`
|
20
18
|
- Install dependencies with `gem install bundler && bundle install`
|
@@ -32,8 +30,6 @@ g.add_edge('start', 'stop')
|
|
32
30
|
|
33
31
|
### Roadmap
|
34
32
|
|
35
|
-
[(Back to top)](#list-of-contents)
|
36
|
-
|
37
33
|
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
34
|
|
39
35
|
- `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.
|
@@ -44,6 +40,10 @@ Quite easily, any networkx user would be able to understand the number of detail
|
|
44
40
|
|
45
41
|
- `DirectedGraph` : Inherits from `Graph` class. Uses directions between `Edge`s.
|
46
42
|
|
43
|
+
[(Back to top)](#list-of-contents)
|
44
|
+
|
45
|
+
After months of extensive searching, we realised there was not a single repository that could guide a newbie to machine learning and natural language processing in Ruby. Thus, after a series of naming discussions, `sciruby-examples` was born.
|
46
|
+
|
47
47
|
### Contributing
|
48
48
|
|
49
49
|
[(Back to top)](#list-of-contents)
|
data/lib/networkx/version.rb
CHANGED
data/networkx.gemspec
CHANGED