middleman-hashicorp 0.3.43 → 0.3.47

Sign up to get free protection for your applications and to get access to all the features.
data/docker/Dockerfile CHANGED
@@ -1,22 +1,21 @@
1
- FROM ruby:2.3-alpine
2
- MAINTAINER Seth Vargo <seth@hashicorp.com>
1
+ FROM docker.mirror.hashicorp.services/ruby:2.7.4-alpine
3
2
 
4
3
  ARG GEM_VERSION
5
4
 
6
5
  # Install packages
7
- RUN apk add --no-cache bash build-base curl jq nodejs python py-setuptools wget git openssh-client
6
+ RUN apk add --no-cache bash build-base ca-certificates curl jq nodejs python3 py3-setuptools wget git openssh-client
8
7
 
9
8
  # Install s3cmd
10
9
  RUN cd /tmp && \
11
- wget https://github.com/s3tools/s3cmd/releases/download/v1.6.1/s3cmd-1.6.1.tar.gz && \
12
- tar -xzvf s3cmd-1.6.1.tar.gz && \
13
- cd s3cmd-1.6.1 && \
14
- python setup.py install && \
10
+ curl -L -O https://github.com/s3tools/s3cmd/releases/download/v2.2.0/s3cmd-2.2.0.tar.gz && \
11
+ tar -xzvf s3cmd-2.2.0.tar.gz && \
12
+ cd s3cmd-2.2.0 && \
13
+ python3 setup.py install && \
15
14
  cd .. && \
16
- rm -rf s3cmd-1.6.1*
15
+ rm -rf s3cmd-2.2.0*
17
16
 
18
17
  # Upgrade bundler
19
- RUN gem install bundler -v '~> 1.13' --no-document && \
18
+ RUN gem install bundler -v '~> 1.17' --no-document && \
20
19
  gem cleanup
21
20
 
22
21
  # Install the bundle
@@ -1,5 +1,5 @@
1
1
  module Middleman
2
2
  module HashiCorp
3
- VERSION = "0.3.43"
3
+ VERSION = "0.3.47"
4
4
  end
5
5
  end
@@ -6,8 +6,7 @@ require 'middleman-hashicorp/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'middleman-hashicorp'
8
8
  spec.version = Middleman::HashiCorp::VERSION
9
- spec.authors = ['Seth Vargo']
10
- spec.email = ['sethvargo@gmail.com']
9
+ spec.authors = ['HashiCorp, Inc.']
11
10
  spec.summary = 'A series of helpers for consistency among HashiCorp\'s middleman sites'
12
11
  spec.description = spec.summary
13
12
  spec.homepage = 'https://github.com/hashicorp/middleman-hashicorp'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: middleman-hashicorp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.43
4
+ version: 0.3.47
5
5
  platform: ruby
6
6
  authors:
7
- - Seth Vargo
7
+ - HashiCorp, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-03 00:00:00.000000000 Z
11
+ date: 2021-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: middleman
@@ -151,15 +151,15 @@ dependencies:
151
151
  - !ruby/object:Gem::Version
152
152
  version: '11.3'
153
153
  description: A series of helpers for consistency among HashiCorp's middleman sites
154
- email:
155
- - sethvargo@gmail.com
154
+ email:
156
155
  executables: []
157
156
  extensions: []
158
157
  extra_rdoc_files: []
159
158
  files:
159
+ - ".circleci/config.yml"
160
+ - ".circleci/setup-rubygems.sh"
160
161
  - ".dockerignore"
161
162
  - ".gitignore"
162
- - ".travis.yml"
163
163
  - Gemfile
164
164
  - Gemfile.lock
165
165
  - LICENSE
@@ -239,7 +239,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
239
239
  - !ruby/object:Gem::Version
240
240
  version: '0'
241
241
  requirements: []
242
- rubygems_version: 3.0.3
242
+ rubygems_version: 3.1.2
243
243
  signing_key:
244
244
  specification_version: 4
245
245
  summary: A series of helpers for consistency among HashiCorp's middleman sites
data/.travis.yml DELETED
@@ -1,17 +0,0 @@
1
- dist: trusty
2
- sudo: false
3
-
4
- language: ruby
5
- cache: bundler
6
-
7
- rvm:
8
- - 2.3.4
9
-
10
- branches:
11
- only:
12
- - master
13
-
14
- before_install:
15
- - "gem install bundler -v '~> 1.13'"
16
-
17
- bundler_args: --jobs 7