runcoderun-gem_sync 0.5.3 → 0.5.3.1

Sign up to get free protection for your applications and to get access to all the features.
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.3"
5
+ s.version = "0.5.3.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.3'
6
+ VERSION = '0.5.3.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"
@@ -22,7 +22,9 @@ module Rcr
22
22
  def self.uninstall_bad_gems(gem_list)
23
23
  return unless gem_list == "__from_github__"
24
24
  convert_gem_list(RCR_GITHUB_GEM_BLACKLIST).each do |rubygem|
25
- `gem uninstall -a -x #{rubygem.name}`
25
+ cmd = "gem uninstall -a -x #{rubygem.name}"
26
+ puts cmd
27
+ `#{cmd}`
26
28
  end
27
29
  end
28
30
 
@@ -52,6 +52,7 @@ image_science (1.1.3)
52
52
  json (1.1.3)
53
53
  launchy (0.3.2)
54
54
  libxml-ruby (0.8.3)
55
+ log_buddy
55
56
  Linguistics
56
57
  log_buddy (0.0.5, 0.1.3)
57
58
  main (2.8.2)
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.3
4
+ version: 0.5.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim @ Relevance