bootsnap 1.2.0-java → 1.2.1-java

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9822367a5d9d8659f596f6487a6336234dc9fc5a
4
- data.tar.gz: 560396308366677d3b820d4cda4a0d021b857879
3
+ metadata.gz: be40c1a5f15f301e4f098c77ea1054c993c50894
4
+ data.tar.gz: 220e7faba46321071d715b79ff9e069b74257b4d
5
5
  SHA512:
6
- metadata.gz: 496a106c2275744e12e4a26fad4b13186142092412a47c5c437dbeda0549ee8911d872f22ca46e956464267d91569542910918d22031dafe9f3174e0913b401d
7
- data.tar.gz: c9d944391c3609df20c2c4d6492d2b2195ff30389a065ed3e67c31733ae48a5c096b5c6c65e769e3f27866536c6a5e823a57b66c90e75ad0fc580c6cc1479c28
6
+ metadata.gz: ee8e3951733ee8a92aa557fe9fc2b64c3b20a9dc444dc6a11b880ef012b7fdf60849a93b28879384bb1c66a8e348c1490d449e86c420a665dd48d695a6760804
7
+ data.tar.gz: b231ccd8783e0b8c7315ae01e073f714ea54bea98c717b3976bae3761ca65be351743c7cc94ec8395432e536a05dbb9bda668a520a330f309fd3ec3b21d81163
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.2.1
2
+
3
+ * Fix method visibility of `Kernel#require`.
4
+
1
5
  # 1.2.0
2
6
 
3
7
  * Add `LoadedFeaturesIndex` to preserve fix a common bug related to `LOAD_PATH` modifications after
data/Rakefile CHANGED
@@ -1,4 +1,5 @@
1
1
  require 'rake/extensiontask'
2
+ require 'bundler/gem_tasks'
2
3
 
3
4
  gemspec = Gem::Specification.load('bootsnap.gemspec')
4
5
  Rake::ExtensionTask.new do |ext|
@@ -11,6 +11,8 @@ module Bootsnap
11
11
  end
12
12
 
13
13
  module Kernel
14
+ private
15
+
14
16
  alias_method :require_without_bootsnap, :require
15
17
 
16
18
  # Note that require registers to $LOADED_FEATURES while load does not.
@@ -1,3 +1,3 @@
1
1
  module Bootsnap
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
@@ -0,0 +1,4 @@
1
+ dependencies:
2
+ bundler:
3
+ without:
4
+ - development
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootsnap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: java
6
6
  authors:
7
7
  - Burke Libbey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-07 00:00:00.000000000 Z
11
+ date: 2018-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -137,6 +137,7 @@ files:
137
137
  - lib/bootsnap/load_path_cache/store.rb
138
138
  - lib/bootsnap/setup.rb
139
139
  - lib/bootsnap/version.rb
140
+ - shipit.rubygems.yml
140
141
  homepage: https://github.com/Shopify/bootsnap
141
142
  licenses:
142
143
  - MIT