contur 0.0.3 → 0.0.4.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -0
- data/lib/contur/version.rb +1 -1
- data/templates/base-docker-container.erb +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ca922c396713143372e4984cc01ac7a9f03b70da
|
|
4
|
+
data.tar.gz: c9de805c950ead438e00d31bfba0791636c34102
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c87607e30bbc82f4ef3d5aa2f7f62135dd244f25d2467880dcae52629bb72565470e90e54a1136cac419ec0a0fedacfc24c29f96461bdddf4de48a5b55849d19
|
|
7
|
+
data.tar.gz: 64bfa87966a5e7baf2c89cff3512ca67ec9b4ef1cb6cc832fb59983a86d3b70b1d13250e55dcdb214bd806460b9e4806fe238ff8ffcdf4a49fb9cb9ec1c4bcc5
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
+
[](https://badge.fury.io/rb/contur)
|
|
6
7
|
[](https://travis-ci.org/Cheppers/contur)
|
|
7
8
|
|
|
8
9
|
## Requirements
|
data/lib/contur/version.rb
CHANGED
|
@@ -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 "
|
|
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.
|
|
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-
|
|
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.
|
|
212
|
+
rubygems_version: 2.6.8
|
|
213
213
|
signing_key:
|
|
214
214
|
specification_version: 4
|
|
215
215
|
summary: Contur - Local Web Development Tool
|