runcoderun-gem_sync 0.5.4 → 0.5.4.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.
Files changed (3) hide show
  1. data/gem_sync.gemspec +1 -1
  2. data/lib/rcr/gem_sync.rb +2 -2
  3. metadata +1 -1
data/gem_sync.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{gem_sync}
5
- s.version = "0.5.4"
5
+ s.version = "0.5.4.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Rob Sanheim @ Relevance"]
data/lib/rcr/gem_sync.rb CHANGED
@@ -3,7 +3,7 @@ require 'open-uri'
3
3
 
4
4
  module Rcr
5
5
  class GemSync
6
- VERSION = '0.5.4'
6
+ VERSION = '0.5.4.1'
7
7
  GITHUB = "http://gems.github.com"
8
8
  RCR_DEFAULT_GEM_LIST = File.expand_path(File.join(File.dirname(__FILE__), *%w[.. runcoderun_gems.txt]))
9
9
  RCR_GITHUB_GEM_LIST = "http://github.com/runcoderun/gem_sync/raw/master/lib/runcoderun_gems.txt"
@@ -24,7 +24,7 @@ module Rcr
24
24
  puts "Uninstalling any gems on the blacklist..."
25
25
  blacklist = open(RCR_GITHUB_GEM_BLACKLIST).read
26
26
  convert_gem_list(blacklist).each do |rubygem|
27
- cmd = "gem uninstall -I -a -x #{rubygem.name}"
27
+ cmd = "gem uninstall #{rubygem.name} -I -a -x"
28
28
  cmd << " --version '#{rubygem.version}'" if rubygem.version
29
29
  puts cmd
30
30
  `#{cmd}`
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: 0.5.4
4
+ version: 0.5.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim @ Relevance