runcoderun-gem_sync 0.5.2.1 → 0.5.3

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.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 0.5.3
2
+ * Better urls for the gem list from github, plain old .txt works now
3
+
4
+ === 0.5.2
5
+ * support for gem blacklist, which are always uninstalled at the end of the run
6
+
1
7
  === 0.4.6
2
8
  * Bug fixes
3
9
 
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.2.1"
5
+ s.version = "0.5.3"
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,11 +3,11 @@ require 'open-uri'
3
3
 
4
4
  module Rcr
5
5
  class GemSync
6
- VERSION = '0.5.2.1'
6
+ VERSION = '0.5.3'
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
- RCR_GITHUB_GEM_LIST = "http://github.com/runcoderun/gem_sync/tree/master%2Flib%2Fruncoderun_gems.txt?raw=true"
10
- RCR_GITHUB_GEM_BLACKLIST = ""
9
+ RCR_GITHUB_GEM_LIST = "http://github.com/runcoderun/gem_sync/raw/master/lib/runcoderun_gems.txt"
10
+ RCR_GITHUB_GEM_BLACKLIST = "http://github.com/runcoderun/gem_sync/raw/master/lib/gem_blacklist.txt"
11
11
 
12
12
  def self.install_gems(gem_list = nil)
13
13
  gem_list = RCR_DEFAULT_GEM_LIST unless gem_list
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.2.1
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim @ Relevance