jets 2.1.6 → 2.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b18d400a2d0e0f2133d5c6989b979bde0b1ad9e62f3d58256153d0f303b248a8
4
- data.tar.gz: 24bb4977a7a3ae19a0c10db1e47597d8d5718fb613cb9e9b417ddf15a5aeafea
3
+ metadata.gz: a6530b12d6ba264316e90060f23d092ff540d9521d7d107524750f68cb939532
4
+ data.tar.gz: d64885168c3e73f61a6351b50b8b85f1719d84dd3dbcb7d0972844a2f028264d
5
5
  SHA512:
6
- metadata.gz: f6adb65c04917a41ddfbb39d37baac2e5aa49052858a69b45abc6a751d516b7304dd42d5159c7108a0d168fe8776f859182d82070a869ad3100ff9d343fccc96
7
- data.tar.gz: 370233f6def4284f6d0c26f6e4c48bbe217c40316733628ee71fedcf80b3b1e3e8a33291ad993450cf340244a246796d2bd9e7c69e4b79314c54d76f25aa6072
6
+ metadata.gz: 8dedd8a646526a5edc4a678887d069a180eeb7792f414dde66aa5ba02394b27842315a2a43527eebdb7724c2320d39dba63b2ce4a68fbc3f06a64f18ad75ee9a
7
+ data.tar.gz: ea63325a12758b511f7908c9b27f0a69fa25109908b7a09af8ec758d65f1646a5f067199e1890407ca2e58f7745428d9af2e0bb05d8dbb6c6675c65980420646
@@ -1,5 +1,8 @@
1
1
  #!/bin/bash -eux
2
2
 
3
3
  # Generate docs
4
+ gem update --system
5
+ # Unsure why but setting BUNDLE_GEMFILE fixes build in the codebuild docker env
6
+ export BUNDLE_GEMFILE=$(pwd)/Gemfile
4
7
  bundle
5
8
  rake docs
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ ## [2.1.7]
7
+ - #366 fix copy ruby version
8
+ - fix codebuild for docs
9
+
6
10
  ## [2.1.6]
7
11
  - #364 Add stagger deploy option: https://rubyonjets.com/docs/extras/deploy-stagger/
8
12
  - codebuild: add caching to speed up build
@@ -372,9 +372,9 @@ module Jets::Builders
372
372
  end
373
373
 
374
374
  def copy_ruby_version_file
375
- return unless File.exists?(".ruby-version")
376
-
377
- FileUtils.cp_r(Jets.root.join(".ruby-version"), build_area)
375
+ ruby_version_path = Jets.root.join(".ruby-version")
376
+ return unless File.exists?(ruby_version_path)
377
+ FileUtils.cp_r(ruby_version_path, build_area)
378
378
  end
379
379
 
380
380
  def ruby_version_supported?
@@ -1,3 +1,3 @@
1
1
  module Jets
2
- VERSION = "2.1.6"
2
+ VERSION = "2.1.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jets
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.6
4
+ version: 2.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-07 00:00:00.000000000 Z
11
+ date: 2019-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionmailer