networkx 0.0.0 → 0.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 075600936b353d065030ac10f584289ef859051b
4
- data.tar.gz: 24ee821d52b51dd5d4c4c90fa07f06ed3d0e8218
3
+ metadata.gz: 3f43ce74dd6bd8fbe91d6b5f29f3b7af355881e9
4
+ data.tar.gz: 0275c9f6161b6bcf973af9f18a989969ce757bd0
5
5
  SHA512:
6
- metadata.gz: e1c43f90d1f537e034b131f2329a55462cf2b58829c6cfc0213ab9b25a1ba6261885e8e1a9799934a91a43565e2f18623909e39bd21c02bb58745d30192fb33f
7
- data.tar.gz: c1ad69746300bd9bbfc69a8b8aa95ca38e0743835c8883cda82a7e3d0433d1df2e619358044fa00155c78a991da5906c42b5b626c8ed8905e3d8903c68f323c7
6
+ metadata.gz: 17623a41e26fceebed54169c423dbe95a3ee59456a3cc4d3d888e74b70d8e2a58b7329d1565026babdc5196ae37b19422432eaa6e74cce03bbcef21c883c5312
7
+ data.tar.gz: 8727b100efab027667eb7c8f3aa13bb3396b56e28a21437b3e21eda904bb99e7ebc9fc35a31451e3661f909faba8c6e57a14c2be1c832100526c1dcfedda4c1e
data/Guardfile CHANGED
@@ -1,7 +1,7 @@
1
1
  guard :rspec, cmd: 'rspec' do
2
2
  watch(%r{^spec/.+_spec\.rb$})
3
3
  watch(%r{^lib/networkx/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4
- watch('spec/spec_helper.rb') { 'spec' }
4
+ watch('spec/spec_helper.rb') { 'spec' }
5
5
  end
6
6
 
7
7
  # TODO: Run Rubocop in the background
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)
@@ -1,3 +1,3 @@
1
1
  module NetworkX
2
- VERSION = '0.0.0'.freeze
2
+ VERSION = '0.1.0'.freeze
3
3
  end
@@ -31,6 +31,5 @@ Gem::Specification.new do |spec|
31
31
  spec.add_development_dependency 'saharspec'
32
32
  spec.add_development_dependency 'simplecov'
33
33
  spec.add_development_dependency 'yard'
34
-
35
34
  spec.add_development_dependency 'guard-rspec' if RUBY_VERSION >= '2.2.5'
36
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: networkx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Athitya Kumar