Skip to content

Commit 492edf0

Browse files
committed
gerrit: Rewrite scripts using only the Gerry gem
See https://github.com/trumant/gerry.
1 parent 314dcc6 commit 492edf0

File tree

283 files changed

+30725
-648
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

283 files changed

+30725
-648
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
source 'https://rubygems.org/'
2-
gem 'net-http-digest_auth'
2+
gem 'gerry'

Gemfile.lock

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
net-http-digest_auth (1.4)
4+
gerry (0.0.3)
5+
httparty
6+
httparty (0.13.5)
7+
json (~> 1.8)
8+
multi_xml (>= 0.5.2)
9+
json (1.8.3)
10+
multi_xml (0.5.5)
511

612
PLATFORMS
713
x64-mingw32
814

915
DEPENDENCIES
10-
net-http-digest_auth
16+
gerry
17+
18+
BUNDLED WITH
19+
1.10.3

bundle/bundler/setup.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
# ruby 1.8.7 doesn't define RUBY_ENGINE
33
ruby_engine = defined?(RUBY_ENGINE) ? RUBY_ENGINE : 'ruby'
44
path = File.expand_path('..', __FILE__)
5-
$:.unshift File.expand_path("#{path}/../#{ruby_engine}/gems/net-http-digest_auth-1.4/lib")
5+
$:.unshift "#{path}/../#{ruby_engine}/gems/json-1.8.3/C/Users/seschube/Development/GitHub/dev-scripts/bundle/ruby/2.1.0/extensions/x64-mingw32/2.1.0/json-1.8.3"
6+
$:.unshift "#{path}/../#{ruby_engine}/gems/json-1.8.3/lib"
7+
$:.unshift "#{path}/../#{ruby_engine}/gems/multi_xml-0.5.5/lib"
8+
$:.unshift "#{path}/../#{ruby_engine}/gems/httparty-0.13.5/lib"
9+
$:.unshift "#{path}/../#{ruby_engine}/gems/gerry-0.0.3/lib"

bundle/ruby/bin/httparty

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#! ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'httparty' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0"
12+
13+
if ARGV.first
14+
str = ARGV.first
15+
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
16+
if str =~ /\A_(.*)_\z/ and Gem::Version.correct?($1) then
17+
version = $1
18+
ARGV.shift
19+
end
20+
end
21+
22+
gem 'httparty', version
23+
load Gem.bin_path('httparty', 'httparty', version)

bundle/ruby/bin/httparty.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@ECHO OFF
2+
IF NOT "%~f0" == "~f0" GOTO :WinNT
3+
@"C:\Ruby21-x64\bin\ruby.exe" "C:/Users/seschube/Development/GitHub/dev-scripts/bundle/ruby/2.1.0/bin/httparty" %1 %2 %3 %4 %5 %6 %7 %8 %9
4+
GOTO :EOF
5+
:WinNT
6+
@"C:\Ruby21-x64\bin\ruby.exe" "%~dpn0" %*

bundle/ruby/cache/gerry-0.0.3.gem

10 KB
Binary file not shown.
77 KB
Binary file not shown.

bundle/ruby/cache/json-1.8.3.gem

149 KB
Binary file not shown.
20.5 KB
Binary file not shown.
-13 KB
Binary file not shown.

0 commit comments

Comments
 (0)