gem_dependencies_visualizer 0.1.0 → 0.1.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: 0f63eaa029487b0d04779f520c16dffd724ce294
4
- data.tar.gz: d43022a1180de807717ab9fe3e1bca297e3e8d4d
3
+ metadata.gz: de992f80871f73bf446a31e89e82f91dfacb53a9
4
+ data.tar.gz: a51116d79a4286a8756f989655ab6a1798f5b7c3
5
5
  SHA512:
6
- metadata.gz: c3778755810c69aab26901aca03dcf32fb4d4003b9eaba17a09b00615365893a6ed0096a9e4cb79f94a2089d13b5b3fb57b12faf0634ceac5a8cc953722b1912
7
- data.tar.gz: fc65f077e3e38e67b0935d72cbaf9d10743dc946cad573b31a16b876879865f4f4e8c1bbf4b520e56dc72e36d3f08044479a5f8a361d0f731ef6606137a79db6
6
+ metadata.gz: 988358d47ef693a4035d5a9a8d3e6c072e89594b14a2f9e3a1dd7528e8b428fbb4ba60da3dd4b1ce630f7e508d0586ffb415c3bcef44b080306e8ab146bad51b
7
+ data.tar.gz: 8d1663a7a5cd13eaedd0688d02ad30976180c5ea7bb39fd3c25e5007eb8a8b63ffd326d35726d66645d7b1f7c8db6d5c9c28caf5399a5c9326c5c81c9105e79a
data/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ ## 0.1.1 (2016-09-02)
2
+
3
+ Fixes:
4
+ * Understand \r\n as multilined text
5
+
6
+ ## 0.1.0 (2016-08-01)
7
+
8
+ Initial release
data/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # GemDependenciesVisualizer
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/gem_dependencies_visualizer`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
3
  ## Installation
8
4
 
9
5
  Add this line to your application's Gemfile:
@@ -1,3 +1,3 @@
1
1
  module GemDependenciesVisualizer
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -15,7 +15,7 @@ module GemDependenciesVisualizer
15
15
  #########
16
16
 
17
17
  def self.populate_gem_data(gemfile_lock_content)
18
- string_array = gemfile_lock_content.split("\n")
18
+ string_array = gemfile_lock_content.gsub("\r\n", "\n").split("\n")
19
19
  gem_list_index = 0
20
20
 
21
21
  string_array.each_with_index do |x, index|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_dependencies_visualizer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasilis Kalligas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-01 00:00:00.000000000 Z
11
+ date: 2016-10-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -79,6 +79,7 @@ files:
79
79
  - ".ruby-gemset"
80
80
  - ".ruby-version"
81
81
  - ".travis.yml"
82
+ - CHANGELOG.md
82
83
  - CODE_OF_CONDUCT.md
83
84
  - Gemfile
84
85
  - LICENSE.txt