society 1.2.0 → 1.2.1
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 +4 -4
- data/Gemfile +0 -2
- data/README.md +4 -7
- data/lib/society/version.rb +1 -1
- data/lib/society.rb +2 -0
- 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: 4e5cc65b940c280045b7a58e3a9c7c8d5cecb92d
|
|
4
|
+
data.tar.gz: 5548508d17a2e950305446fe7ffea1a0f2d35c8c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b08c3a0057812975f467918470aa5c4788177ac7ed05af96bb54c1261f305c91f2b1241a48c77850d43f233a10b924f762c09f30466e44280353d1ee74c9974a
|
|
7
|
+
data.tar.gz: 685cf4f840d947a494edece44f29c6118573e210998dbf56aa5ef55d95f8b24d20804d4b371fe9020fe92ac60050b3c992b1aa4af23ebb108360c6002d2c6203
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
# Society
|
|
2
2
|
|
|
3
|
-
Society analyzes and presents a social graph of relationships between classes or
|
|
4
|
-
|
|
3
|
+
Society analyzes and presents a social graph of relationships between classes in a Ruby or Rails project.
|
|
4
|
+
|
|
5
|
+
Please note that Society requires Ruby 2.1 or later.
|
|
5
6
|
|
|
6
7
|
## Installation
|
|
7
8
|
|
|
@@ -41,11 +42,7 @@ can do so on the command line with `$ bower update`.
|
|
|
41
42
|
|
|
42
43
|
## Recognition
|
|
43
44
|
|
|
44
|
-
|
|
45
|
-
in:
|
|
46
|
-
|
|
47
|
-
* Stijn van Dongen, _Graph Clustering by Flow Simulation_, PhD thesis,
|
|
48
|
-
University of Utrecht, May 2000. [micans.org/mcl](http://micans.org/mcl)
|
|
45
|
+
Society was inspired by an original idea by Kerri Miller (@kerrizor).
|
|
49
46
|
|
|
50
47
|
## Contributing
|
|
51
48
|
|
data/lib/society/version.rb
CHANGED
data/lib/society.rb
CHANGED
|
@@ -12,6 +12,8 @@ require_relative "society/formatter/report/json"
|
|
|
12
12
|
require_relative "society/parser"
|
|
13
13
|
require_relative "society/version"
|
|
14
14
|
|
|
15
|
+
raise 'Ruby version must be greater than 2.0' unless RUBY_VERSION.to_f > 2.0
|
|
16
|
+
|
|
15
17
|
module Society
|
|
16
18
|
|
|
17
19
|
def self.new(*paths_to_files)
|