bootboot 0.1.2 → 0.2.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.
@@ -1,7 +0,0 @@
1
- inherit_from:
2
- - https://shopify.github.io/ruby-style-guide/rubocop.yml
3
-
4
- AllCops:
5
- TargetRubyVersion: 2.3
6
- Exclude:
7
- - 'vendor/**/*'
@@ -1,8 +0,0 @@
1
- sudo: false
2
- cache: bundler
3
- language: ruby
4
- script:
5
- - bundle exec rubocop --config .rubocop.yml
6
- - bundle exec rake test
7
- notifications:
8
- email: false
@@ -1,9 +0,0 @@
1
- # Change log
2
-
3
- ## master (unreleased)
4
-
5
- ## 0.1.2 (2019-01-09)
6
-
7
- ### New features
8
-
9
- * [#15](https://github.com/Shopify/bootboot/pull/15): Add a way to configure the DEPENDENCIES_NEXT environment variable. (@Edouard-chin)
data/Gemfile DELETED
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source "https://rubygems.org"
4
-
5
- git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
-
7
- gemspec
8
-
9
- group :deployment do
10
- gem 'package_cloud'
11
- gem 'rake'
12
- end
13
-
14
- group :test do
15
- gem 'rubocop'
16
- end
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- bootboot (0.1.2)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- ast (2.4.0)
10
- domain_name (0.5.20180417)
11
- unf (>= 0.0.5, < 1.0.0)
12
- highline (1.6.20)
13
- http-cookie (1.0.3)
14
- domain_name (~> 0.5)
15
- jaro_winkler (1.5.1)
16
- json_pure (1.8.1)
17
- mime-types (3.2.2)
18
- mime-types-data (~> 3.2015)
19
- mime-types-data (3.2018.0812)
20
- minitest (5.11.3)
21
- netrc (0.11.0)
22
- package_cloud (0.3.05)
23
- highline (= 1.6.20)
24
- json_pure (= 1.8.1)
25
- rainbow (= 2.2.2)
26
- rest-client (~> 2.0)
27
- thor (~> 0.18)
28
- parallel (1.12.1)
29
- parser (2.5.3.0)
30
- ast (~> 2.4.0)
31
- powerpack (0.1.2)
32
- rainbow (2.2.2)
33
- rake
34
- rake (10.5.0)
35
- rest-client (2.0.2)
36
- http-cookie (>= 1.0.2, < 2.0)
37
- mime-types (>= 1.16, < 4.0)
38
- netrc (~> 0.8)
39
- rubocop (0.60.0)
40
- jaro_winkler (~> 1.5.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.5, != 2.5.1.1)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.4.0)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.3)
49
- unf (0.1.4)
50
- unf_ext
51
- unf_ext (0.0.7.5)
52
- unicode-display_width (1.4.0)
53
-
54
- PLATFORMS
55
- ruby
56
-
57
- DEPENDENCIES
58
- bootboot!
59
- bundler (~> 1.17)
60
- minitest (~> 5.0)
61
- package_cloud
62
- rake
63
- rubocop
64
-
65
- BUNDLED WITH
66
- 1.17.1
data/Rakefile DELETED
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rake/testtask"
5
-
6
- Rake::TestTask.new(:test) do |t|
7
- t.libs << "test"
8
- t.libs << "lib"
9
- t.test_files = FileList["test/**/*_test.rb"]
10
- end
11
-
12
- task default: :test
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- lib = File.expand_path("../lib", __FILE__)
4
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
- require "bootboot/version"
6
-
7
- Gem::Specification.new do |spec|
8
- spec.name = "bootboot"
9
- spec.version = Bootboot::VERSION
10
- spec.authors = %w(Shopify)
11
- spec.email = %w(rails@shopify.com)
12
-
13
- spec.summary = "Dualbooting your ruby app made easy."
14
- spec.description = <<-EOM.gsub(/\W+/, ' ')
15
- This gems removes you the overhead of monkeypatching your Gemfile in order to
16
- dualboot your app using the Gemfile_next.lock strategy.
17
- It also ensure that dependencies in the Gemfile.lock and Gemfile_next.lock are
18
- in sync whenever someone updates a gem.
19
- EOM
20
- spec.homepage = "https://github.com/shopify/bootboot"
21
- spec.license = "MIT"
22
-
23
- spec.metadata["homepage_uri"] = spec.homepage
24
- spec.metadata["source_code_uri"] = "https://github.com/shopify/bootboot"
25
- spec.metadata["changelog_uri"] = "https://github.com/Shopify/bootboot/blob/master/CHANGELOG.md"
26
-
27
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
28
- %x(git ls-files -z).split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
29
- end
30
- spec.require_paths = %w(lib)
31
-
32
- spec.add_development_dependency "bundler", "~> 1.17"
33
- spec.add_development_dependency "rake", "~> 10.0"
34
- spec.add_development_dependency "minitest", "~> 5.0"
35
- end
@@ -1 +0,0 @@
1
- # Default config