parklife 0.5.0 → 0.5.1

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: 6faa171e9fe5ae60f6285af884bbd5b19b96942dc5fefb106912c89137a2ff78
4
- data.tar.gz: 8ffe432c9e9e5f374c61d4f3c3a6123532e699c9d4d9cfc5be87524d778e8008
3
+ metadata.gz: 0a0e894c4cba14f5f3d7dc614df86e5430dded896ddf5466048bd2b7eb224791
4
+ data.tar.gz: 684afeeb534d59bb1139e5df34c3a5ff93a4c9e2c491b69b2a2a66feeba54c3c
5
5
  SHA512:
6
- metadata.gz: 48d14b37c34b2ed4c35fd73f7d53628962440ede84b0b64b65b33d1e02d3db787aa321ff45b637d4f9e3d80386c09ebaada5cd27fd78165beeaf09ce4c8a10ef
7
- data.tar.gz: 6b30a2348133bd7ca05c19740f4cd73a8bf3de59b05f8a34d1c04d8008df79df3c2a8a42f5c66bf2376030c96413c5b99075e0ef17489685b229fdff6511436c
6
+ metadata.gz: 8e0edd657e0b2d82e17b2eb143748cd22612b72b99851ef1ad331f9641f310e09859f537dc95798e255a5868cabed63599089fe19003991d8cce86c36dba8978
7
+ data.tar.gz: d82d26729d3206e07ed39b84215d9243c789066f3be32a64a9173356d70a8e588ffc60672832bb77038821249621dd2de7745cf6448f118916fbbffe3d6ee64e
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
+ ## Version 0.5.1 - 2023-03-22
2
+
3
+ - Ensure the generated static-build script is executable. <https://github.com/benpickles/parklife/pull/89>
4
+
1
5
  ## Version 0.5.0 - 2023-03-12
2
6
 
3
7
  - RuboCop. <https://github.com/benpickles/parklife/pull/87>
4
- - Allow passing a --base to all `parklife` commands. <https://github.com/benpickles/parklife/pull/85>
5
- - Configure Rails default_url_options and relative_url_root when setting Parklife base. <https://github.com/benpickles/parklife/pull/85>
8
+ - Allow passing `--base` to all `parklife` commands. <https://github.com/benpickles/parklife/pull/85>
9
+ - Configure Rails `default_url_options` and `relative_url_root` when setting Parklife base. <https://github.com/benpickles/parklife/pull/85>
6
10
  - Add `parklife get PATH` command to fetch and output a path. <https://github.com/benpickles/parklife/pull/83>
7
11
  - Add a `parklife init` command to create a starter Parkfile and friends. <https://github.com/benpickles/parklife/pull/82>
8
12
  - Fix the HOST header for a non-standard port. <https://github.com/benpickles/parklife/pull/81>
data/lib/parklife/cli.rb CHANGED
@@ -26,7 +26,8 @@ module Parklife
26
26
  option :sinatra, desc: 'Include some Sinatra-specific settings', type: :boolean
27
27
  def init
28
28
  template('Parkfile.erb', 'Parkfile')
29
- template('static_build.erb', 'bin/static-build', mode: 0755)
29
+ template('static_build.erb', 'bin/static-build')
30
+ chmod('bin/static-build', 0755)
30
31
  copy_file('github_pages.yml', '.github/workflows/parklife.yml') if options[:github_pages]
31
32
  end
32
33
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Parklife
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: parklife
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Pickles
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-12 00:00:00.000000000 Z
11
+ date: 2023-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri