runcoderun-gem_sync 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.1.1
@@ -86,15 +86,4 @@ EOL
86
86
  end
87
87
  end
88
88
 
89
- describe "failed installation" do
90
- xit "should skip the gem and move on if failed due to permission denied" do
91
- out = "Permission denied - /opt/local/lib/ruby/gems/1.8/cache/activesupport-1.4.4.gem"
92
- end
93
-
94
- xit "logs connection refused and skips gem, usually due to firewall blocking or gem mirrir is down"
95
-
96
- xit "should try to install from github if gem was not found in default source(s)" do
97
- end
98
- end
99
-
100
89
  end
data/gem_sync.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gem_sync}
8
- s.version = "1.1.0"
8
+ s.version = "1.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rob Sanheim"]
@@ -5,7 +5,7 @@ module Rcr
5
5
 
6
6
  def self.convert_gem_list(string)
7
7
  gems = []
8
- string.each do |line|
8
+ string.each_line do |line|
9
9
  name = parse_name(line)
10
10
  next unless name
11
11
  versions = parse_versions(line)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runcoderun-gem_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim