society 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec8cb5a95664084f02de65ed939e89ec04417295
4
- data.tar.gz: 462b53c5009c262f69fab7ddb6c3ba60ce38f227
3
+ metadata.gz: 4e5cc65b940c280045b7a58e3a9c7c8d5cecb92d
4
+ data.tar.gz: 5548508d17a2e950305446fe7ffea1a0f2d35c8c
5
5
  SHA512:
6
- metadata.gz: a84b67d0617f3074d37efe668bec9cb4184615dfa08954134adcfe32f433f546b3cdbe66c857b7a7bfc146a07fb30174f1bfba9216a94172f1e37b0455746c4a
7
- data.tar.gz: 8d7d5eb2196abd41d6eeff66453131b1636cb906d34d2dc24469cae44eaadf0a2c5a4b03c7349eab64a5bb7e9292f3552b8f79ab2a61cdaf6bff548745e433c3
6
+ metadata.gz: b08c3a0057812975f467918470aa5c4788177ac7ed05af96bb54c1261f305c91f2b1241a48c77850d43f233a10b924f762c09f30466e44280353d1ee74c9974a
7
+ data.tar.gz: 685cf4f840d947a494edece44f29c6118573e210998dbf56aa5ef55d95f8b24d20804d4b371fe9020fe92ac60050b3c992b1aa4af23ebb108360c6002d2c6203
data/Gemfile CHANGED
@@ -1,7 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- raise 'Ruby version must be greater than 2.0' unless RUBY_VERSION.to_f > 2.0
4
-
5
3
  # Specify your gem's dependencies in society.gemspec
6
4
  gemspec
7
5
 
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
- methods.
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
- The graph clustering algorithm used in this software is called MCL, described
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
 
@@ -1,3 +1,3 @@
1
1
  module Society
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: society
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Coraline Ada Ehmke