bundler-pgs 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NjliZGNhZjU0NWMwZGQ3ZGE3ZDA4ZmY3ZDkzYWI3NTdjNjhhYmZiOQ==
5
- data.tar.gz: !binary |-
6
- M2M2ODA4ZWQ5NDJlNzNiMGRkOTZmYjEwODhkM2IyODM4ZWRmYThmZQ==
2
+ SHA1:
3
+ metadata.gz: 30a2f8a6a51c52c11a71d1b294694defc307cde2
4
+ data.tar.gz: 3dee8fba24347cec9a15f33ebc204d6fb0c2e9b3
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MzE3N2FiMGU3ZjI2OTRmMTMwMTFmYjU1N2UzN2JhMmZmN2M0MWJhNDhlMjEx
10
- ZTk0YWEzYjQ4ZTdlZmRiZDgxZjdiOGQ1ZTQ2ODFhNzVlZDYxZTIzZDM4ZmJm
11
- Njk1MmQ4ZmJiNDg2YWY4ZWQwODdiM2Q1YTgzYTRlOGYwMzI2NGI=
12
- data.tar.gz: !binary |-
13
- OTg1MWYxYThjYTA4NWVjOWM4M2I2NWNkNmE3ZjdiYzFkMTJhY2Y1NTQzODc5
14
- MzFkNDdhMDFhZTk1NmE0ZDM3MmY3OGFiMDg2NGI1MzRiNDk4ZGE3YWM0YmJj
15
- MDljNGM1OGUwYTA4N2ViNGRiNThmYzc4YmU3OTAxYTYyNDk3NzY=
6
+ metadata.gz: 46242041cbaf6512b583eecf7772894fce0097a83e58611f681eac763074a00422838dd1938b985f4e6949dc498313ca21d01cc750696361e9ed5e96f93ddead
7
+ data.tar.gz: 84650ea99ab27f1c9c865c71204b294af4a4e6aa491af38aceff1d1524fcf51c6b4485beb6848d15773476b0597fac9f39a51f85e34b232e9f5291a363207d9b
data/README.md CHANGED
@@ -6,7 +6,7 @@ Useful when running an additional private gem server besides rubygems.org.
6
6
  Example:
7
7
 
8
8
  # Gemfile
9
- source https://rubygems.org/
9
+ source "https://rubygems.org/"
10
10
  source "http://_:_@gems.mycompany.com"
11
11
 
12
12
  # Gemfile.lock
@@ -27,6 +27,7 @@ with the credentials again.
27
27
 
28
28
  Currently working bundler version are:
29
29
 
30
+ * 1.6.2
30
31
  * 1.5.3
31
32
  * 1.5.2
32
33
 
data/lib/bundler-pgs.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require 'bundler/version'
2
2
 
3
- if Bundler::VERSION > "1.5.3"
3
+ if Bundler::VERSION > "1.6.2"
4
4
  puts "\nWarning: You are using bundler #{Bundler::VERSION} and bundler-pgs patch might not work for this version."
5
5
  puts "Make sure your Gemfile.lock does not contain your credentials after running pundle!"
6
6
  puts ""
@@ -1,5 +1,5 @@
1
1
  module Bundler
2
2
  module Pgs
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler-pgs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Baustert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-20 00:00:00.000000000 Z
11
+ date: 2014-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ! '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ! '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: bundler patch to support private gem server (pgs)
@@ -46,7 +46,7 @@ executables:
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
- - .gitignore
49
+ - ".gitignore"
50
50
  - Gemfile
51
51
  - LICENSE.txt
52
52
  - README.md
@@ -67,17 +67,17 @@ require_paths:
67
67
  - lib
68
68
  required_ruby_version: !ruby/object:Gem::Requirement
69
69
  requirements:
70
- - - ! '>='
70
+ - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: '0'
73
73
  required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
- - - ! '>='
75
+ - - ">="
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
79
  rubyforge_project:
80
- rubygems_version: 2.2.1
80
+ rubygems_version: 2.2.2
81
81
  signing_key:
82
82
  specification_version: 4
83
83
  summary: bundler patch to support private gem server (pgs)