summaryrefslogtreecommitdiff
path: root/spec/support/artifice
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-01-31 11:29:09 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-01-31 22:22:06 -0600
commit7ae072865e3fc23d9844322dde6ad0f6906e3f2c (patch)
tree2133b2f27e243af2d8beda66f19b2f1086685a0e /spec/support/artifice
parentb1afbe3a2ff7623c9a0e8504bc85af4bd8156059 (diff)
downloadbundler-7ae072865e3fc23d9844322dde6ad0f6906e3f2c.tar.gz
Compatibility with frozen string literals
Diffstat (limited to 'spec/support/artifice')
-rw-r--r--spec/support/artifice/compact_index.rb2
-rw-r--r--spec/support/artifice/compact_index_api_missing.rb1
-rw-r--r--spec/support/artifice/compact_index_basic_authentication.rb1
-rw-r--r--spec/support/artifice/compact_index_creds_diff_host.rb1
-rw-r--r--spec/support/artifice/compact_index_extra.rb1
-rw-r--r--spec/support/artifice/compact_index_extra_api.rb1
-rw-r--r--spec/support/artifice/compact_index_extra_missing.rb1
-rw-r--r--spec/support/artifice/compact_index_forbidden.rb1
-rw-r--r--spec/support/artifice/compact_index_host_redirect.rb1
-rw-r--r--spec/support/artifice/compact_index_redirects.rb1
-rw-r--r--spec/support/artifice/compact_index_strict_basic_authentication.rb1
-rw-r--r--spec/support/artifice/endopint_marshal_fail_basic_authentication.rb1
-rw-r--r--spec/support/artifice/endpoint.rb1
-rw-r--r--spec/support/artifice/endpoint_500.rb1
-rw-r--r--spec/support/artifice/endpoint_api_forbidden.rb1
-rw-r--r--spec/support/artifice/endpoint_api_missing.rb1
-rw-r--r--spec/support/artifice/endpoint_basic_authentication.rb1
-rw-r--r--spec/support/artifice/endpoint_creds_diff_host.rb1
-rw-r--r--spec/support/artifice/endpoint_extra.rb1
-rw-r--r--spec/support/artifice/endpoint_extra_api.rb1
-rw-r--r--spec/support/artifice/endpoint_extra_missing.rb1
-rw-r--r--spec/support/artifice/endpoint_fallback.rb1
-rw-r--r--spec/support/artifice/endpoint_host_redirect.rb1
-rw-r--r--spec/support/artifice/endpoint_marshal_fail.rb1
-rw-r--r--spec/support/artifice/endpoint_mirror_source.rb1
-rw-r--r--spec/support/artifice/endpoint_redirect.rb1
-rw-r--r--spec/support/artifice/endpoint_strict_basic_authentication.rb1
-rw-r--r--spec/support/artifice/endpoint_timeout.rb1
28 files changed, 28 insertions, 1 deletions
diff --git a/spec/support/artifice/compact_index.rb b/spec/support/artifice/compact_index.rb
index eb17f01905..88706c3590 100644
--- a/spec/support/artifice/compact_index.rb
+++ b/spec/support/artifice/compact_index.rb
@@ -48,7 +48,7 @@ class CompactIndexAPI < Endpoint
end
def quote(string)
- '"' << string << '"'
+ %("#{string}")
end
def parse_etags(value)
diff --git a/spec/support/artifice/compact_index_api_missing.rb b/spec/support/artifice/compact_index_api_missing.rb
index db6528b878..6d15b54b85 100644
--- a/spec/support/artifice/compact_index_api_missing.rb
+++ b/spec/support/artifice/compact_index_api_missing.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_basic_authentication.rb b/spec/support/artifice/compact_index_basic_authentication.rb
index 5ddcdf7fa7..bffb5b9e2b 100644
--- a/spec/support/artifice/compact_index_basic_authentication.rb
+++ b/spec/support/artifice/compact_index_basic_authentication.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_creds_diff_host.rb b/spec/support/artifice/compact_index_creds_diff_host.rb
index 2e8cd46b5e..0c417f0580 100644
--- a/spec/support/artifice/compact_index_creds_diff_host.rb
+++ b/spec/support/artifice/compact_index_creds_diff_host.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_extra.rb b/spec/support/artifice/compact_index_extra.rb
index 3300b70610..8a87fc4343 100644
--- a/spec/support/artifice/compact_index_extra.rb
+++ b/spec/support/artifice/compact_index_extra.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_extra_api.rb b/spec/support/artifice/compact_index_extra_api.rb
index df4674396a..063e5589d4 100644
--- a/spec/support/artifice/compact_index_extra_api.rb
+++ b/spec/support/artifice/compact_index_extra_api.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_extra_missing.rb b/spec/support/artifice/compact_index_extra_missing.rb
index 48fffd51a8..2af5ce9c27 100644
--- a/spec/support/artifice/compact_index_extra_missing.rb
+++ b/spec/support/artifice/compact_index_extra_missing.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index_extra", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_forbidden.rb b/spec/support/artifice/compact_index_forbidden.rb
index 09d03bc88d..b25eea94e7 100644
--- a/spec/support/artifice/compact_index_forbidden.rb
+++ b/spec/support/artifice/compact_index_forbidden.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_host_redirect.rb b/spec/support/artifice/compact_index_host_redirect.rb
index 2e53cc7814..6c1ab2def6 100644
--- a/spec/support/artifice/compact_index_host_redirect.rb
+++ b/spec/support/artifice/compact_index_host_redirect.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_redirects.rb b/spec/support/artifice/compact_index_redirects.rb
index 256e73d7f4..ff1d3e43bc 100644
--- a/spec/support/artifice/compact_index_redirects.rb
+++ b/spec/support/artifice/compact_index_redirects.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/compact_index_strict_basic_authentication.rb b/spec/support/artifice/compact_index_strict_basic_authentication.rb
index bb1e794b4e..49a072d2b9 100644
--- a/spec/support/artifice/compact_index_strict_basic_authentication.rb
+++ b/spec/support/artifice/compact_index_strict_basic_authentication.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../compact_index", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb b/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
index 205b25885a..f1f8dc5700 100644
--- a/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
+++ b/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint_marshal_fail", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint.rb b/spec/support/artifice/endpoint.rb
index 847f1d4b23..b0e9bd0f26 100644
--- a/spec/support/artifice/endpoint.rb
+++ b/spec/support/artifice/endpoint.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../../path.rb", __FILE__)
require File.expand_path("../../../../lib/bundler/deprecate", __FILE__)
include Spec::Path
diff --git a/spec/support/artifice/endpoint_500.rb b/spec/support/artifice/endpoint_500.rb
index 2812a0d208..9bbbd1e2f2 100644
--- a/spec/support/artifice/endpoint_500.rb
+++ b/spec/support/artifice/endpoint_500.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../../path.rb", __FILE__)
include Spec::Path
diff --git a/spec/support/artifice/endpoint_api_forbidden.rb b/spec/support/artifice/endpoint_api_forbidden.rb
index f9d28c0470..21ad9117ed 100644
--- a/spec/support/artifice/endpoint_api_forbidden.rb
+++ b/spec/support/artifice/endpoint_api_forbidden.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_api_missing.rb b/spec/support/artifice/endpoint_api_missing.rb
index ca5916938f..6f5b5f1323 100644
--- a/spec/support/artifice/endpoint_api_missing.rb
+++ b/spec/support/artifice/endpoint_api_missing.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_basic_authentication.rb b/spec/support/artifice/endpoint_basic_authentication.rb
index 0cfba89184..9fafd51a3d 100644
--- a/spec/support/artifice/endpoint_basic_authentication.rb
+++ b/spec/support/artifice/endpoint_basic_authentication.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_creds_diff_host.rb b/spec/support/artifice/endpoint_creds_diff_host.rb
index 97a81d97d8..cd152848fe 100644
--- a/spec/support/artifice/endpoint_creds_diff_host.rb
+++ b/spec/support/artifice/endpoint_creds_diff_host.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_extra.rb b/spec/support/artifice/endpoint_extra.rb
index c50428fe20..ed4e87e65f 100644
--- a/spec/support/artifice/endpoint_extra.rb
+++ b/spec/support/artifice/endpoint_extra.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_extra_api.rb b/spec/support/artifice/endpoint_extra_api.rb
index d6d1c5a1b4..1e9e1dc60d 100644
--- a/spec/support/artifice/endpoint_extra_api.rb
+++ b/spec/support/artifice/endpoint_extra_api.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_extra_missing.rb b/spec/support/artifice/endpoint_extra_missing.rb
index 89c4c0c776..dc79705a26 100644
--- a/spec/support/artifice/endpoint_extra_missing.rb
+++ b/spec/support/artifice/endpoint_extra_missing.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint_extra", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_fallback.rb b/spec/support/artifice/endpoint_fallback.rb
index db02a88758..8a85a41784 100644
--- a/spec/support/artifice/endpoint_fallback.rb
+++ b/spec/support/artifice/endpoint_fallback.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_host_redirect.rb b/spec/support/artifice/endpoint_host_redirect.rb
index 00c496af58..250416d8cc 100644
--- a/spec/support/artifice/endpoint_host_redirect.rb
+++ b/spec/support/artifice/endpoint_host_redirect.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_marshal_fail.rb b/spec/support/artifice/endpoint_marshal_fail.rb
index a0dc182e27..0fb75ebf31 100644
--- a/spec/support/artifice/endpoint_marshal_fail.rb
+++ b/spec/support/artifice/endpoint_marshal_fail.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint_fallback", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_mirror_source.rb b/spec/support/artifice/endpoint_mirror_source.rb
index 39cd3656fa..9fb58ecb29 100644
--- a/spec/support/artifice/endpoint_mirror_source.rb
+++ b/spec/support/artifice/endpoint_mirror_source.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
class EndpointMirrorSource < Endpoint
diff --git a/spec/support/artifice/endpoint_redirect.rb b/spec/support/artifice/endpoint_redirect.rb
index 2b48fa5344..f80d7600c2 100644
--- a/spec/support/artifice/endpoint_redirect.rb
+++ b/spec/support/artifice/endpoint_redirect.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_strict_basic_authentication.rb b/spec/support/artifice/endpoint_strict_basic_authentication.rb
index e7329abdc4..4b32cbbf5b 100644
--- a/spec/support/artifice/endpoint_strict_basic_authentication.rb
+++ b/spec/support/artifice/endpoint_strict_basic_authentication.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint", __FILE__)
Artifice.deactivate
diff --git a/spec/support/artifice/endpoint_timeout.rb b/spec/support/artifice/endpoint_timeout.rb
index da682204c4..b15650f226 100644
--- a/spec/support/artifice/endpoint_timeout.rb
+++ b/spec/support/artifice/endpoint_timeout.rb
@@ -1,3 +1,4 @@
+# frozen_string_literal: true
require File.expand_path("../endpoint_fallback", __FILE__)
Artifice.deactivate