prebundler 0.12.0 → 0.15.0

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
  SHA256:
3
- metadata.gz: b42e430112189e660d94c9d8c1b95217b88b96da88a546c4786061b446c892d8
4
- data.tar.gz: e06e950923a142dd513d8331d732a65b7f09a004381289895a5541ea6315faeb
3
+ metadata.gz: 75422e084b72865d0f97cb99580c87cdf50ce263556add99479b77d8e095b477
4
+ data.tar.gz: 91188f02b6a86aa26060ca26344123b048284de767517ed946649dd2c3e1c92a
5
5
  SHA512:
6
- metadata.gz: 3dae5bd84ab46ddbe6263997c1c453ff9c0534141c5e250d5d2af89e3213584e875821d0430c35886e407af45f727c0a105110a790e78fac165a0a12a1fcb90a
7
- data.tar.gz: db940690b64c743540cb952651f9c8f729965392a9d93dc1b4607a39dc7b765f1600d1d51bbd2ea62ed52e4f40c45448b62c3670c7e503eb0c9f8320e577d7f5
6
+ metadata.gz: 80a342250f5250cd36e1c12d55e2e1d3c4e4f4505b2c474e91d9003d091703c4c0bb182f5a2dcb3ce2a00c1ba296017e029d2b8905cbb86bd07857c559cf1250
7
+ data.tar.gz: ac8d04188d17021d38e6b1c9dc0a217b43c8902e7c6d568efe1a4d9ed0adbcc6e964d1c383b21b6825fac3c4623670353b72e12a6ad5c2a1c3676ef2159b3f3b
data/CHANGELOG.md CHANGED
@@ -1,113 +1,106 @@
1
- 0.12.0
2
- ===
3
- - Switch out ohai for ohey.
4
-
5
- 0.11.8
6
- ===
7
- - Don't store gems in the backend if they failed to install.
8
- - Use an absolute bundle path.
9
- - Only consider a gem from the lockfile if it matches the current platform.
10
- - Fix `#install` methods so they all return true/false.
11
-
12
- 0.11.7
13
- ===
14
- - Fix bug causing platform-specific gems to be installed from source even if they were already present in the backend.
15
-
16
- 0.11.6
17
- ===
18
- - Fix bug causing native extension compile errors.
19
- - Fix bug causing executables to not be included in tarballs.
20
- - Fix bug (maybe introduced by bundler 2?) causing incorrect directory to be tarred. Directory can now include platform apparently.
21
-
22
- 0.11.5
23
- ===
24
- - Add `--retry` flag to CLI (currently does nothing).
25
-
26
- 0.11.4
27
- ===
28
- - Ensure .bundle/config directory exists before writing to it.
29
-
30
- 0.11.3
31
- ===
32
- - Support (well, add stubs for) `ruby` and `git_source` methods in Gemfiles.
33
- - Don't attempt to install gems we can't get a spec for.
34
-
35
- 0.11.2
36
- ===
37
- - Always run `bundle install` just in case.
38
- - Make sure `bundle check` is the _last_ thing that runs.
39
-
40
- 0.11.1
41
- ===
42
- - Exit with nonzero status code if fallback `bundle install` fails.
43
-
44
- 0.11.0
45
- ===
46
- - Allow the caller to pass in a s3 client for non-standard setups
47
-
48
- 0.10.0
49
- ===
50
- - Update aws-sdk client creation to be able to support non-aws s3 api endpoints (e.g. minio)
51
-
52
- 0.9.1
53
- ===
54
- - Woops, also use platform version when determining the gems that have already been built.
55
- - Fix the subsetter so it outputs gems inside correct source blocks.
56
-
57
- 0.9.0
58
- ===
59
- - Include platform version when uploading gem tarballs to the storage backend (this will cause bundles installed by previous versions of prebundler to be rebuilt).
60
-
61
- 0.8.1
62
- ===
63
- - Fix bug causing config to not be loaded.
64
-
65
- 0.8.0
66
- ===
67
- - Add the subset command for generating subsets of gemfiles.
68
-
69
- 0.7.2
70
- ===
71
- - Fix use of continuation token when listing remote files in S3 backend.
72
-
73
- 0.7.1
74
- ===
75
- - Support git-based gems with non-standard repo names.
76
- - Fix `bundle install` fallback (group args were wrong).
77
-
78
- 0.7.0
79
- ===
80
- - Add prefix option to install command.
81
-
82
- 0.6.2
83
- ===
84
- - Provide CLI option to generate binstubs.
85
-
86
- 0.5.2
87
- ===
88
- - Set `BUNDLE_GEMFILE` during prepare step so bundler doesn't complain when we try to call `Bundler.app_config_path`.
89
-
90
- 0.5.1
91
- ===
92
- - Remove pry-byebug require.
93
-
94
- 0.5.0
95
- ===
96
- - Works for a repository with a significant number of dependencies (~ 400).
97
- - Testing on staging server indicates bundle is installed correctly.
98
-
99
- 0.0.4
100
- ===
101
- - Pass bundle path to `gem install`.
102
-
103
- 0.0.3
104
- ===
105
- - Add --with and --without flags to install command.
106
-
107
- 0.0.2
108
- ===
109
- - Better CLI interface.
110
-
111
- 0.0.1
112
- ===
113
- - Birthday!
1
+ ## 0.15.0
2
+ * Add the `prebundle lock` command, which simply invokes `bundle lock`.
3
+
4
+ ## 0.14.1
5
+ * Set file permissions when extracting tarballs.
6
+
7
+ ## 0.14.0
8
+ * Add `prebundle binstubs` command, which simply invokes `bundle binstubs`.
9
+
10
+ ## 0.13.0
11
+ * Support the `eval_gemfile` function in gemfiles.
12
+ * Avoid shelling out to the `tar` command.
13
+ - The GNU and BSD versions annoyingly don't accept the same flags, meaning Prebundler can succeed or fail depending on the system it's run on.
14
+ - All tar files are now read and written using pure Ruby.
15
+ * Upgrade S3 client to non-EOL version.
16
+ * Stop ignoring gems that don't match the current platform.
17
+ - Prebundler shells out to `gem install` when installing individual gems. Older versions of rubygems would fetch gems for the "ruby" platform when the `--ignore-dependencies` option was given, ignoring any platform-specific gems. This resulted in either a) unnecessarily building a bunch of native extensions, or b) installing a gem for the wrong platform (i.e. when no gem existed for the "ruby" platform, eg. helm-rb). I addressed the problem by instructing Prebundler to ignore gems with native extensions, relying on `bundle install` to fix them up. However, the bug has been fixed in modern versions of rubygems, so we can stop ignoring gems.
18
+ * Run `bundle lock` before storing or installing gems to make sure the lockfile matches the Gemfile.
19
+
20
+ ## 0.12.0
21
+ * Switch out ohai for ohey, which has many fewer dependencies.
22
+
23
+ ## 0.11.8
24
+ * Don't store gems in the backend if they failed to install.
25
+ * Use an absolute bundle path.
26
+ * Only consider a gem from the lockfile if it matches the current platform.
27
+ * Fix `#install` methods so they all return true/false.
28
+
29
+ ## 0.11.7
30
+ * Fix bug causing platform-specific gems to be installed from source even if they were already present in the backend.
31
+
32
+ ## 0.11.6
33
+ * Fix bug causing native extension compile errors.
34
+ * Fix bug causing executables to not be included in tarballs.
35
+ * Fix bug (maybe introduced by bundler 2?) causing incorrect directory to be tarred. Directory can now include platform apparently.
36
+
37
+ ## 0.11.5
38
+ * Add `--retry` flag to CLI (currently does nothing).
39
+
40
+ ## 0.11.4
41
+ * Ensure .bundle/config directory exists before writing to it.
42
+
43
+ ## 0.11.3
44
+ * Support (well, add stubs for) `ruby` and `git_source` methods in Gemfiles.
45
+ * Don't attempt to install gems we can't get a spec for.
46
+
47
+ ## 0.11.2
48
+ * Always run `bundle install` just in case.
49
+ * Make sure `bundle check` is the _last_ thing that runs.
50
+
51
+ ## 0.11.1
52
+ * Exit with nonzero status code if fallback `bundle install` fails.
53
+
54
+ ## 0.11.0
55
+ * Allow the caller to pass in a s3 client for non-standard setups
56
+
57
+ ## 0.10.0
58
+ * Update aws-sdk client creation to be able to support non-aws s3 api endpoints (e.g. minio)
59
+
60
+ ## 0.9.1
61
+ * Woops, also use platform version when determining the gems that have already been built.
62
+ * Fix the subsetter so it outputs gems inside correct source blocks.
63
+
64
+ ## 0.9.0
65
+ * Include platform version when uploading gem tarballs to the storage backend (this will cause bundles installed by previous versions of prebundler to be rebuilt).
66
+
67
+ ## 0.8.1
68
+ * Fix bug causing config to not be loaded.
69
+
70
+ ## 0.8.0
71
+ * Add the subset command for generating subsets of gemfiles.
72
+
73
+ ## 0.7.2
74
+ * Fix use of continuation token when listing remote files in S3 backend.
75
+
76
+ ## 0.7.1
77
+ * Support git-based gems with non-standard repo names.
78
+ * Fix `bundle install` fallback (group args were wrong).
79
+
80
+ ## 0.7.0
81
+ * Add prefix option to install command.
82
+
83
+ ## 0.6.2
84
+ * Provide CLI option to generate binstubs.
85
+
86
+ ## 0.5.2
87
+ * Set `BUNDLE_GEMFILE` during prepare step so bundler doesn't complain when we try to call `Bundler.app_config_path`.
88
+
89
+ ## 0.5.1
90
+ * Remove pry-byebug require.
91
+
92
+ ## 0.5.0
93
+ * Works for a repository with a significant number of dependencies (~ 400).
94
+ * Testing on staging server indicates bundle is installed correctly.
95
+
96
+ ## 0.0.4
97
+ * Pass bundle path to `gem install`.
98
+
99
+ ## 0.0.3
100
+ * Add --with and --without flags to install command.
101
+
102
+ ## 0.0.2
103
+ * Better CLI interface.
104
+
105
+ ## 0.0.1
106
+ * Birthday!
data/bin/prebundle CHANGED
@@ -1,130 +1,6 @@
1
1
  #! /usr/bin/env ruby
2
2
 
3
- require 'gli'
4
- require 'etc'
5
- require 'bundler'
6
- require 'prebundler'
7
- require 'prebundler/version'
8
-
9
- $out = Prebundler::WritePipe.new
10
-
11
- include GLI::App
12
-
13
- program_desc 'Gem dependency prebuilder'
14
-
15
- version Prebundler::VERSION
16
-
17
- subcommand_option_handling :normal
18
- arguments :strict
19
-
20
- desc "Don't log to stdout"
21
- switch [:s, :silent]
22
-
23
- desc 'Path to config file.'
24
- default_value './.prebundle_config'
25
- flag [:c, :config]
26
-
27
- desc 'Install gems from the Gemfile.lock.'
28
- command :install do |c|
29
- c.desc 'Maximum number of parallel gem installs.'
30
- c.default_value Etc.nprocessors
31
- c.flag [:j, :jobs], type: Integer
32
-
33
- c.desc 'Path to the gemfile to install gems from.'
34
- c.default_value ENV.fetch('BUNDLE_GEMFILE', './Gemfile')
35
- c.flag [:g, :gemfile]
36
-
37
- c.desc 'Path to the bundle installation directory.'
38
- c.default_value ENV.fetch('BUNDLE_PATH', Bundler.bundle_path.to_s)
39
- c.flag [:b, :'bundle-path']
40
-
41
- c.desc 'Backend prefix (i.e. path) at which to store gems.'
42
- c.flag [:prefix]
43
-
44
- c.desc 'A comma-separated list of groups referencing gems to install.'
45
- c.flag :with
46
-
47
- c.desc 'A comma-separated list of groups referencing gems to skip during installation.'
48
- c.flag :without
49
-
50
- c.desc 'Generate binstubs for installed gems.'
51
- c.default_value true
52
- c.switch :binstubs
53
-
54
- c.desc 'Retry failed network requests n times (currently not implemented).'
55
- c.default_value 1
56
- c.flag [:retry], type: Integer
3
+ $stdout.sync = true
57
4
 
58
- c.action do |global_options, options, args|
59
- raise 'Must specify a non-zero number of jobs' if options[:jobs] < 1
60
- Prebundler::Cli::Install.run($out, global_options, options, args)
61
- end
62
- end
63
-
64
- desc 'List each gem and associated source.'
65
- command :list do |c|
66
- c.desc 'Path to the gemfile.'
67
- c.default_value ENV.fetch('BUNDLE_GEMFILE', './Gemfile')
68
- c.flag [:g, :gemfile]
69
-
70
- c.desc 'Filter by source. Will perform partial matching.'
71
- c.flag [:s, :source], multiple: true
72
-
73
- c.action do |global_options, options, args|
74
- Prebundler::Cli::List.run($out, global_options, options, args)
75
- end
76
- end
77
-
78
- desc 'Generate a subset of a Gemfile.'
79
- command :subset do |c|
80
- c.desc 'Path to the gemfile.'
81
- c.default_value ENV.fetch('BUNDLE_GEMFILE', './Gemfile')
82
- c.flag [:g, :gemfile]
83
-
84
- c.desc 'Path to the bundle installation directory.'
85
- c.default_value ENV.fetch('BUNDLE_PATH', Bundler.bundle_path.to_s)
86
- c.flag [:b, :'bundle-path']
87
-
88
- c.desc 'Gem (and dependencies) to include in the subset.'
89
- c.flag [:i, :include], multiple: true
90
-
91
- c.desc "Add an additional gem to the subset. The gem doesn't have to be part of the original Gemfile."
92
- c.flag [:a, :add], multiple: true
93
-
94
- c.desc 'Include development dependencies of subsetted gems.'
95
- c.default_value false
96
- c.switch [:d, :development]
97
-
98
- c.desc 'File path to output the resulting Gemfile into. Use - for standard output.'
99
- c.default_value '-'
100
- c.flag [:o, :output]
101
-
102
- c.action do |global_options, options, args|
103
- Prebundler::Cli::Subset.run($out, global_options, options, args)
104
- end
105
- end
106
-
107
- pre do |global, command, options, args|
108
- # Pre logic here
109
- # Return true to proceed; false to abort and not call the
110
- # chosen command
111
- # Use skips_pre before a command to skip this block
112
- # on that command only
113
- $out.silence! if global[:silent]
114
- load global[:config] if global[:config]
115
- true
116
- end
117
-
118
- post do |global, command, options, args|
119
- # Post logic here
120
- # Use skips_post before a command to skip this
121
- # block on that command only
122
- end
123
-
124
- on_error do |exception|
125
- # Error logic here
126
- # return false to skip default error handling
127
- true
128
- end
129
-
130
- exit run(ARGV)
5
+ require 'prebundler'
6
+ exit Prebundler::Commands.run(ARGV)
@@ -17,6 +17,7 @@ module Prebundler
17
17
 
18
18
  class Install < Base
19
19
  def run
20
+ lock
20
21
  prepare
21
22
  install
22
23
  update_bundle_config
@@ -30,6 +31,10 @@ module Prebundler
30
31
 
31
32
  private
32
33
 
34
+ def lock
35
+ system "bundle lock --gemfile #{gemfile_path}"
36
+ end
37
+
33
38
  def prepare
34
39
  FileUtils.mkdir_p(bundle_path)
35
40
  ENV['BUNDLE_GEMFILE'] = gemfile_path
@@ -0,0 +1,153 @@
1
+ require 'gli'
2
+ require 'etc'
3
+ require 'bundler'
4
+ require 'prebundler'
5
+ require 'prebundler/version'
6
+
7
+ module Prebundler
8
+ class Commands
9
+ extend GLI::App
10
+
11
+ program_desc 'Gem dependency prebuilder'
12
+
13
+ version Prebundler::VERSION
14
+
15
+ subcommand_option_handling :normal
16
+ arguments :strict
17
+
18
+ def self.out
19
+ @out ||= Prebundler::WritePipe.new
20
+ end
21
+
22
+ desc "Don't log to stdout"
23
+ switch [:s, :silent]
24
+
25
+ desc 'Path to config file.'
26
+ default_value './.prebundle_config'
27
+ flag [:c, :config]
28
+
29
+ desc 'Install gems from the Gemfile.lock.'
30
+ command :install do |c|
31
+ c.desc 'Maximum number of parallel gem installs.'
32
+ c.default_value Etc.nprocessors
33
+ c.flag [:j, :jobs], type: Integer
34
+
35
+ c.desc 'Path to the gemfile to install gems from.'
36
+ c.default_value ENV.fetch('BUNDLE_GEMFILE', './Gemfile')
37
+ c.flag [:g, :gemfile]
38
+
39
+ c.desc 'Path to the bundle installation directory.'
40
+ c.default_value ENV.fetch('BUNDLE_PATH', Bundler.bundle_path.to_s)
41
+ c.flag [:b, :'bundle-path']
42
+
43
+ c.desc 'Backend prefix (i.e. path) at which to store gems.'
44
+ c.flag [:prefix]
45
+
46
+ c.desc 'A comma-separated list of groups referencing gems to install.'
47
+ c.flag :with
48
+
49
+ c.desc 'A comma-separated list of groups referencing gems to skip during installation.'
50
+ c.flag :without
51
+
52
+ c.desc 'Generate binstubs for installed gems.'
53
+ c.default_value true
54
+ c.switch :binstubs
55
+
56
+ c.desc 'Retry failed network requests n times (currently not implemented).'
57
+ c.default_value 1
58
+ c.flag [:retry], type: Integer
59
+
60
+ c.action do |global_options, options, args|
61
+ raise 'Must specify a non-zero number of jobs' if options[:jobs] < 1
62
+ Prebundler::Cli::Install.run(out, global_options, options, args)
63
+ end
64
+ end
65
+
66
+ desc 'List each gem and associated source.'
67
+ command :list do |c|
68
+ c.desc 'Path to the gemfile.'
69
+ c.default_value ENV.fetch('BUNDLE_GEMFILE', './Gemfile')
70
+ c.flag [:g, :gemfile]
71
+
72
+ c.desc 'Filter by source. Will perform partial matching.'
73
+ c.flag [:s, :source], multiple: true
74
+
75
+ c.action do |global_options, options, args|
76
+ Prebundler::Cli::List.run(out, global_options, options, args)
77
+ end
78
+ end
79
+
80
+ desc 'Generate a subset of a Gemfile.'
81
+ command :subset do |c|
82
+ c.desc 'Path to the gemfile.'
83
+ c.default_value ENV.fetch('BUNDLE_GEMFILE', './Gemfile')
84
+ c.flag [:g, :gemfile]
85
+
86
+ c.desc 'Path to the bundle installation directory.'
87
+ c.default_value ENV.fetch('BUNDLE_PATH', Bundler.bundle_path.to_s)
88
+ c.flag [:b, :'bundle-path']
89
+
90
+ c.desc 'Gem (and dependencies) to include in the subset.'
91
+ c.flag [:i, :include], multiple: true
92
+
93
+ c.desc "Add an additional gem to the subset. The gem doesn't have to be part of the original Gemfile."
94
+ c.flag [:a, :add], multiple: true
95
+
96
+ c.desc 'Include development dependencies of subsetted gems.'
97
+ c.default_value false
98
+ c.switch [:d, :development]
99
+
100
+ c.desc 'File path to output the resulting Gemfile into. Use - for standard output.'
101
+ c.default_value '-'
102
+ c.flag [:o, :output]
103
+
104
+ c.action do |global_options, options, args|
105
+ Prebundler::Cli::Subset.run(out, global_options, options, args)
106
+ end
107
+ end
108
+
109
+ desc 'Generate binstubs. Accepts the same arguments as `bundle binstubs`.'
110
+ command :binstubs do
111
+ end
112
+
113
+ desc 'Generate binstubs. Accepts the same arguments as `bundle lock`.'
114
+ command :lock do
115
+ end
116
+
117
+ singleton_class.send(:prepend, Module.new do
118
+ def run(args)
119
+ case args[0]
120
+ when 'binstubs'
121
+ exec "bundle binstubs #{args[1..-1].join(' ')}"
122
+ when 'lock'
123
+ exec "bundle lock #{args[1..-1].join(' ')}"
124
+ else
125
+ super
126
+ end
127
+ end
128
+ end)
129
+
130
+ pre do |global, command, options, args|
131
+ # Pre logic here
132
+ # Return true to proceed; false to abort and not call the
133
+ # chosen command
134
+ # Use skips_pre before a command to skip this block
135
+ # on that command only
136
+ out.silence! if global[:silent]
137
+ load global[:config] if global[:config]
138
+ true
139
+ end
140
+
141
+ post do |global, command, options, args|
142
+ # Post logic here
143
+ # Use skips_post before a command to skip this
144
+ # block on that command only
145
+ end
146
+
147
+ on_error do |exception|
148
+ # Error logic here
149
+ # return false to skip default error handling
150
+ true
151
+ end
152
+ end
153
+ end
@@ -1,3 +1,4 @@
1
+ require 'rubygems/package'
1
2
  require 'fileutils'
2
3
  require 'set'
3
4
 
@@ -48,8 +49,9 @@ module Prebundler
48
49
  end
49
50
 
50
51
  def install
51
- # NOTE: the --platform argument doesn't work when --ignore-dependencies
52
- # is specified, no idea why
52
+ # NOTE: the --platform argument used to not work when --ignore-dependencies
53
+ # was specified, but has been fixed in modern versions of rubygems. See:
54
+ # https://github.com/rubygems/rubygems/pull/2446 for a very long rabbit hole.
53
55
  Bundler.with_unbundled_env do
54
56
  system(
55
57
  { "GEM_HOME" => bundle_path },
@@ -64,26 +66,45 @@ module Prebundler
64
66
  end
65
67
 
66
68
  def install_from_tar(tar_file)
67
- system "tar -C #{bundle_path} -xf #{tar_file}"
68
- $?.exitstatus == 0
69
- end
70
-
71
- def add_to_tar(tar_file)
72
- tar_flags = File.exist?(tar_file) ? '-rf' : '-cf'
73
-
74
- system "tar -C #{bundle_path} #{tar_flags} #{tar_file} #{relative_gem_dir}"
75
-
76
- relative_gemspec_files.each do |relative_gemspec_file|
77
- system "tar -C #{bundle_path} -rf #{tar_file} #{relative_gemspec_file}"
69
+ File.open(tar_file) do |f|
70
+ Gem::Package::TarReader.new(f) do |tar|
71
+ tar.each do |entry|
72
+ path = File.join(bundle_path, entry.full_name)
73
+
74
+ if entry.directory?
75
+ FileUtils.mkdir_p(path)
76
+ else
77
+ FileUtils.mkdir_p(File.dirname(path))
78
+ File.open(path, 'wb') do |new_file|
79
+ new_file.write(entry.read)
80
+ end
81
+ File.chmod(entry.header.mode, path)
82
+ end
83
+ end
84
+ end
78
85
  end
79
86
 
80
- if File.directory?(extension_dir)
81
- system "tar -C #{bundle_path} -rf #{tar_file} #{relative_extension_dir}"
82
- end
87
+ true
88
+ rescue => e
89
+ return false
90
+ end
83
91
 
84
- gemspecs.each do |gemspec|
85
- gemspec.executables.each do |executable|
86
- system "tar -C #{bundle_path} -rf #{tar_file} #{File.join(relative_gem_dir, gemspec.bindir, executable)}"
92
+ def add_to_tar(tar_file)
93
+ File.open(tar_file, 'wb') do |f|
94
+ Gem::Package::TarWriter.new(f) do |tar_io|
95
+ Dir.chdir(bundle_path) do
96
+ add_files_to_tar(
97
+ tar_io, Dir.glob(File.join(relative_gem_dir, '**', '*'))
98
+ )
99
+
100
+ add_files_to_tar(tar_io, relative_gemspec_files)
101
+
102
+ if File.directory?(extension_dir)
103
+ add_files_to_tar(
104
+ tar_io, Dir.glob(File.join(relative_extension_dir, '**', '*'))
105
+ )
106
+ end
107
+ end
87
108
  end
88
109
  end
89
110
  end
@@ -155,6 +176,17 @@ module Prebundler
155
176
 
156
177
  private
157
178
 
179
+ def add_files_to_tar(tar_io, files)
180
+ files.each do |file|
181
+ next if File.directory?(file)
182
+
183
+ mode = File.stat(file).mode
184
+ tar_io.add_file(file, mode) do |new_file|
185
+ new_file.write(File.binread(file))
186
+ end
187
+ end
188
+ end
189
+
158
190
  def find_platform_dir(base)
159
191
  platform = Bundler.local_platform.to_a
160
192
 
@@ -17,11 +17,8 @@ module Prebundler
17
17
  instance_eval(File.read(gemfile_path))
18
18
 
19
19
  lockfile = Bundler::LockfileParser.new(File.read("#{gemfile_path}.lock"))
20
- local_platform = Bundler.local_platform.to_s
21
20
 
22
21
  lockfile.specs.each do |spec|
23
- next if spec.platform != 'ruby' && spec.platform.to_s != local_platform
24
-
25
22
  gems[spec.name] ||= GemRef.create(spec.name, bundle_path, options)
26
23
  gems[spec.name].spec = spec
27
24
  gems[spec.name].dependencies = spec.dependencies.map(&:name)
@@ -76,5 +73,9 @@ module Prebundler
76
73
  def gemspec
77
74
  # do nothing
78
75
  end
76
+
77
+ def eval_gemfile(path)
78
+ instance_eval(File.read(path))
79
+ end
79
80
  end
80
81
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'aws-sdk'
3
+ require 'aws-sdk-s3'
4
4
 
5
5
  module Prebundler
6
6
  class S3Backend
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Prebundler
4
- VERSION = '0.12.0'
4
+ VERSION = '0.15.0'
5
5
  end
data/lib/prebundler.rb CHANGED
@@ -2,6 +2,7 @@ require 'ohey'
2
2
 
3
3
  module Prebundler
4
4
  autoload :Cli, 'prebundler/cli'
5
+ autoload :Commands, 'prebundler/commands'
5
6
  autoload :Configurator, 'prebundler/configurator'
6
7
  autoload :FileBackend, 'prebundler/file_backend'
7
8
  autoload :PathGemRef, 'prebundler/path_gem_ref'
data/prebundler.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
17
17
  s.add_dependency 'ohey', '~> 1.0'
18
18
 
19
19
  # @TODO: move s3 support into separate gem
20
- s.add_dependency 'aws-sdk', '~> 2.0'
20
+ s.add_dependency 'aws-sdk-s3', '~> 1.0'
21
21
 
22
22
  s.executables << 'prebundle'
23
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prebundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Dutro
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-09 00:00:00.000000000 Z
11
+ date: 2022-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -67,19 +67,19 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '1.0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: aws-sdk
70
+ name: aws-sdk-s3
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '2.0'
75
+ version: '1.0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '2.0'
82
+ version: '1.0'
83
83
  description: Gem dependency prebuilder
84
84
  email:
85
85
  - camertron@gmail.com
@@ -99,6 +99,7 @@ files:
99
99
  - lib/prebundler/cli/install.rb
100
100
  - lib/prebundler/cli/list.rb
101
101
  - lib/prebundler/cli/subset.rb
102
+ - lib/prebundler/commands.rb
102
103
  - lib/prebundler/configurator.rb
103
104
  - lib/prebundler/file_backend.rb
104
105
  - lib/prebundler/gem_ref.rb
@@ -129,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
129
130
  - !ruby/object:Gem::Version
130
131
  version: '0'
131
132
  requirements: []
132
- rubygems_version: 3.1.4
133
+ rubygems_version: 3.3.3
133
134
  signing_key:
134
135
  specification_version: 4
135
136
  summary: Gem dependency prebuilder