contur 0.0.3 → 0.0.4.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
  SHA1:
3
- metadata.gz: bad06811aed7b745ee20052f281999fbcd20a167
4
- data.tar.gz: 29a68d32449352c9b61d7074663ec1da2e37ae5c
3
+ metadata.gz: ca922c396713143372e4984cc01ac7a9f03b70da
4
+ data.tar.gz: c9de805c950ead438e00d31bfba0791636c34102
5
5
  SHA512:
6
- metadata.gz: e9fb48b4fdb9ff38f75c5de61f903cdafd7e3765628b20b3c4eabe01774b9a4b863736244c1c9c87269b446a3fffa8f2c78079c783b32a403f9417b547cd836f
7
- data.tar.gz: ece91a164002d96803dd0f456debd60f3199ca64e0aad0d476314d98278b1d1fb840e95111c698b613f6f4a40c6525c5a85f3fe586c06e75a2312e84b1dae916
6
+ metadata.gz: c87607e30bbc82f4ef3d5aa2f7f62135dd244f25d2467880dcae52629bb72565470e90e54a1136cac419ec0a0fedacfc24c29f96461bdddf4de48a5b55849d19
7
+ data.tar.gz: 64bfa87966a5e7baf2c89cff3512ca67ec9b4ef1cb6cc832fb59983a86d3b70b1d13250e55dcdb214bd806460b9e4806fe238ff8ffcdf4a49fb9cb9ec1c4bcc5
@@ -2,6 +2,14 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This CHANGELOG follows [Keep a CHANGELOG](http://keepachangelog.com/).
4
4
 
5
+ ## [0.0.4.1] - 2016-11-09
6
+ ### Fixed
7
+ - Release notes fixed for 0.0.4
8
+
9
+ ## [0.0.4] - 2016-11-08
10
+ ### Fixed
11
+ - Composer install bug
12
+
5
13
  ## [0.0.3] - 2016-10-24
6
14
  ### Added
7
15
  - Travis support
data/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  # Contur
4
4
  Contur is an open-source command line application simplifying your local web development environment. It hosts your site using Docker containers so you don't have to install Apache, MySQL, PHP and PHP extensions on your own machine. Contur is written in Ruby and uses the Docker HTTP API.
5
5
 
6
+ [![Gem Version](https://badge.fury.io/rb/contur.svg)](https://badge.fury.io/rb/contur)
6
7
  [![Build Status](https://travis-ci.org/Cheppers/contur.svg?branch=master)](https://travis-ci.org/Cheppers/contur)
7
8
 
8
9
  ## Requirements
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Contur
3
- VERSION = '0.0.3'
3
+ VERSION = '0.0.4.1'
4
4
  end
@@ -83,7 +83,8 @@ RUN sed -i "s|;*daemonize\s*=\s*yes|daemonize = no|g" /etc/php/php-fpm.conf && \
83
83
 
84
84
  # Install Composer
85
85
  RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \
86
- php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" && \
86
+ php -r "copy('https://composer.github.io/installer.sig', 'composer-setup.sig');" && \
87
+ php -r "if (hash_file('SHA384', 'composer-setup.php') === trim(file_get_contents('composer-setup.sig'))) { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" && \
87
88
  php composer-setup.php --install-dir /usr/bin --filename=composer composer && \
88
89
  php -r "unlink('composer-setup.php');" && \
89
90
  chmod +x /usr/bin/composer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contur
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cheppers Ltd.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-24 00:00:00.000000000 Z
11
+ date: 2016-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
209
209
  version: '0'
210
210
  requirements: []
211
211
  rubyforge_project:
212
- rubygems_version: 2.5.1
212
+ rubygems_version: 2.6.8
213
213
  signing_key:
214
214
  specification_version: 4
215
215
  summary: Contur - Local Web Development Tool