mgd 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7e07ee9214190715cf241c46d7d59291351f8ef8
4
+ data.tar.gz: f52fc093d099caf30e469fd4acc83fd3b40bbc08
5
+ SHA512:
6
+ metadata.gz: d9b922d23e945dfb661b70246b065cba2988b1ce5a6be1188050c97d6c523d3f7cfb6e017d4d83dd5ade7daa1a3c8a0c092dc8dc833a9eb2b109d98381f5bb40
7
+ data.tar.gz: 785181298dc6bdb66eab7ab06b8c7e5f3403420b231a6389937c2017726e5740311da0746515eb67de85ee7954e4e560b94477246cef12e878e9f7e6bd46c425
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ Gemfile.lock
2
+ *.gem
3
+ .bundle/
4
+ .DS_Store
data/.rubocop.yml ADDED
@@ -0,0 +1,2 @@
1
+ MethodLength:
2
+ Max: 30
data/.rultor.yml ADDED
@@ -0,0 +1,19 @@
1
+ decrypt:
2
+ rubygems.yml: repo/rubygems.yml.asc
3
+ release:
4
+ script: |-
5
+ git config --global user.email "test@example.com"
6
+ git config --global user.name "Test"
7
+ ./test.sh
8
+ rm -rf *.gem
9
+ sed -i "s/1.0.snapshot/${tag}/g" mgd.gemspec
10
+ gem build mgd.gemspec
11
+ chmod 0600 ../rubygems.yml
12
+ gem push *.gem --config-file ../rubygems.yml
13
+ commanders:
14
+ - hovancik
15
+ architect:
16
+ - hovancik
17
+ merge:
18
+ commanders: []
19
+ deploy: {}
data/.travis.yml ADDED
@@ -0,0 +1,15 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ branches:
5
+ only:
6
+ - master
7
+ install:
8
+ - bundle install
9
+ script:
10
+ - set -e
11
+ - git config --global user.email "test@example.com"
12
+ - git config --global user.name "Test"
13
+ - rake
14
+ - ./test.sh
15
+
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2015 Jan Hovancik
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the 'Software'), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/PUZZLES.md ADDED
@@ -0,0 +1,4 @@
1
+ ## Puzzles
2
+
3
+ There are 0 active puzzles (0 total):
4
+
data/README.md ADDED
@@ -0,0 +1,72 @@
1
+ [![DevOps By Rultor.com](http://www.rultor.com/b/hovancik/middleman-github-deploy)](http://www.rultor.com/p/hovancik/middleman-github-deploy)
2
+
3
+ [![Build Status](https://travis-ci.org/hovancik/middleman-github-deploy.svg)](https://travis-ci.org/hovancik/middleman-github-deploy)
4
+ [![Gem Version](https://badge.fury.io/rb/mgd.svg)](http://badge.fury.io/rb/mgd)
5
+ [![Dependency Status](https://gemnasium.com/hovancik/middleman-github-deploy.svg)](https://gemnasium.com/hovancik/middleman-github-deploy)
6
+ [![Code Climate](http://img.shields.io/codeclimate/github/hovancik/middleman-github-deploy.svg)](https://codeclimate.com/github/hovancik/middleman-github-deploy)
7
+
8
+ # What is mgd ?
9
+
10
+ mgd stands for middleman-github-deploy and is a fork of [jgd](https://github.com/yegor256/jekyll-github-deploy).
11
+
12
+ mgd will automatically build your Middleman blog and push it to your gh-pages
13
+ branch (or branch of your choice).
14
+
15
+ # Installation and Usage
16
+
17
+ It is assumed that your blog is in the home directory of your repo.
18
+
19
+ Install it first:
20
+
21
+ ```bash
22
+ gem install mgd
23
+ ```
24
+
25
+ Run it locally:
26
+
27
+ ```bash
28
+ mgd
29
+ ```
30
+
31
+ Now your site is deployed to `gh-pages` branch of your repo. Done.
32
+
33
+ PS. You can also specify target branch, with is `gh-pages` by default. Use
34
+ `--branch` command line option.
35
+
36
+ # Deploying with Travis
37
+
38
+ This is how you might configure your blog
39
+ to be deployed automatically by [travis-ci](http://www.travis-ci.org):
40
+
41
+ ```yaml
42
+ branches:
43
+ only:
44
+ - master
45
+ env:
46
+ global:
47
+ - secure: ...
48
+ install:
49
+ - bundle
50
+ script: mgd -u http://yourname:$PASSWORD@github.com/yourname/blog.git
51
+ ```
52
+
53
+ The environment variable `$PASSWORD` is set through
54
+ `env/global/secure`, as explained
55
+ [here](http://docs.travis-ci.com/user/encryption-keys/).
56
+
57
+ Don't forget to add `gem require 'mgd'` to your `Gemfile`.
58
+
59
+ You can use SSH key instead. First, you should [encrypt](https://docs.travis-ci.com/user/encrypting-files/) it:
60
+
61
+ ```bash
62
+ $ travis encrypt-file id_rsa --add
63
+ ```
64
+
65
+ Then, use the URI that starts with `git@`:
66
+
67
+ ```yaml
68
+ script:
69
+ - mgd -u git@github.com:yourname/blog.git
70
+ ```
71
+
72
+ Read also [this article](http://www.yegor256.com/2014/06/22/jekyll-github-deploy.html).
data/Rakefile ADDED
@@ -0,0 +1,63 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Copyright (c) 2014 TechnoPark Corp.
4
+ # Copyright (c) 2014 Yegor Bugayenko
5
+ #
6
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ # of this software and associated documentation files (the 'Software'), to deal
8
+ # in the Software without restriction, including without limitation the rights
9
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ # copies of the Software, and to permit persons to whom the Software is
11
+ # furnished to do so, subject to the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be included in all
14
+ # copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ # SOFTWARE.
23
+
24
+ require 'rubygems'
25
+ require 'rake'
26
+ require 'rdoc'
27
+ require 'rake/clean'
28
+
29
+ CLEAN = FileList['coverage', 'rdoc']
30
+
31
+ def name
32
+ @name ||= File.basename(Dir['*.gemspec'].first, '.*')
33
+ end
34
+
35
+ def version
36
+ Gem::Specification.load(Dir['*.gemspec'].first).version
37
+ end
38
+
39
+ task default: [:clean, :test, :rubocop]
40
+
41
+ require 'rake/testtask'
42
+ desc 'Run all unit tests'
43
+ Rake::TestTask.new(:test) do |test|
44
+ test.libs << 'lib' << 'test'
45
+ test.pattern = 'test/**/test_*.rb'
46
+ test.verbose = false
47
+ end
48
+
49
+ require 'rdoc/task'
50
+ desc 'Build RDoc documentation'
51
+ Rake::RDocTask.new do |rdoc|
52
+ rdoc.rdoc_dir = 'rdoc'
53
+ rdoc.title = "#{name} #{version}"
54
+ rdoc.rdoc_files.include('README*')
55
+ rdoc.rdoc_files.include('lib/**/*.rb')
56
+ end
57
+
58
+ require 'rubocop/rake_task'
59
+ desc 'Run RuboCop on all directories'
60
+ RuboCop::RakeTask.new(:rubocop) do |task|
61
+ task.fail_on_error = true
62
+ task.requires << 'rubocop-rspec'
63
+ end
data/TEAM.md ADDED
@@ -0,0 +1,17 @@
1
+ ## Team
2
+
3
+ The following members are in the project team:
4
+
5
+ Role | Members
6
+ ---|---
7
+ PM | hovancik
8
+ CR |
9
+ DEV |
10
+ IMP |
11
+ ARC |
12
+ DES |
13
+ PO | hovancik
14
+ ITR |
15
+ QA |
16
+ SA |
17
+ HLP |
data/bash/deploy.sh ADDED
@@ -0,0 +1,53 @@
1
+ #!/bin/bash
2
+ set -x
3
+ set -e
4
+ set -o pipefail
5
+
6
+ URL=$1
7
+ BRANCH=$2
8
+ SRC=$(pwd)
9
+ TEMP=$(mktemp -d -t mgd-XXX)
10
+ trap 'rm -rf ${TEMP}' EXIT
11
+ CLONE=${TEMP}/clone
12
+ COPY=${TEMP}/copy
13
+
14
+ echo -e "Cloning Github repository:"
15
+ git clone "${URL}" "${CLONE}"
16
+ cp -R "${CLONE}" "${COPY}"
17
+
18
+ cd "${CLONE}"
19
+
20
+ echo -e "\nBuilding Middleman site:"
21
+ rm -rf build
22
+ middleman build
23
+
24
+ if [ ! -e build ]; then
25
+ echo -e "\nMiddleman didn't generate anything in build!"
26
+ exit -1
27
+ fi
28
+
29
+ cp -R build "${TEMP}"
30
+
31
+ cd "${TEMP}"
32
+ rm -rf "${CLONE}"
33
+ mv "${COPY}" "${CLONE}"
34
+ cd "${CLONE}"
35
+
36
+ echo -e "\nPreparing ${BRANCH} branch:"
37
+ if [ -z "$(git branch -a | grep origin/${BRANCH})" ]; then
38
+ git checkout --orphan "${BRANCH}"
39
+ else
40
+ git checkout "${BRANCH}"
41
+ fi
42
+
43
+ echo -e "\nDeploying into ${BRANCH} branch:"
44
+ rm -rf *
45
+ cp -R ${TEMP}/build/* .
46
+ rm -f README.md
47
+ git add .
48
+ git commit -am "new version $(date)" --allow-empty
49
+ git push origin "${BRANCH}" 2>&1 | sed 's|'$URL'|[skipped]|g'
50
+
51
+ echo -e "\nCleaning up:"
52
+ rm -rf "${CLONE}"
53
+ rm -rf "${SITE}"
data/bin/mgd ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env ruby
2
+ STDOUT.sync = true
3
+
4
+ require 'trollop'
5
+ opts = Trollop.options do
6
+ banner <<-EOS
7
+ mgd is an automated deployer of Middleman site to Github Pages
8
+
9
+ Usage: mgd [options]
10
+ EOS
11
+ opt :url, 'Github URL', type: String, default: ''
12
+ opt :branch, 'Destination branch', type: String, default: 'gh-pages'
13
+ end
14
+
15
+ branch = opts[:branch]
16
+
17
+ fail 'branch can\'t be empty' if branch.empty?
18
+ url = opts[:url]
19
+ url = `git config --get remote.origin.url` if url.empty?
20
+ url.delete!("\n")
21
+
22
+ spec = Gem::Specification.find_by_name('mgd')
23
+ root = spec.gem_dir
24
+ script = File.join(root, 'bash/deploy.sh')
25
+
26
+ fail 'deployment failed, see log above' \
27
+ unless system("#{script} #{url} #{branch}")
data/mgd.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ require 'English'
3
+ Gem::Specification.new do |s|
4
+ s.specification_version = 2 if s.respond_to? :specification_version=
5
+ if s.respond_to? :required_rubygems_version=
6
+ s.required_rubygems_version = Gem::Requirement.new('>= 0')
7
+ end
8
+ s.rubygems_version = '2.2.2'
9
+ s.required_ruby_version = '>= 1.9.3'
10
+ s.name = 'mgd'
11
+ s.version = '0.1.0'
12
+ s.license = 'MIT'
13
+ s.summary = 'Middleman Github Deploy'
14
+ s.description = 'Automated deployment of your Middleman blog to Github Pages'
15
+ s.authors = ['Yegor Bugayenko', 'Jan Hovancik']
16
+ s.email = 'conta.srdr@gmail.com'
17
+ s.homepage = 'http://github.com/hovancik/middleman-github-deploy'
18
+ s.files = `git ls-files`.split($RS)
19
+ s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
20
+ s.test_files = s.files.grep(/^(test|spec|features)\//)
21
+ s.rdoc_options = ['--charset=UTF-8']
22
+ s.extra_rdoc_files = ['README.md', 'LICENSE.txt']
23
+ s.add_runtime_dependency('trollop', '2.1.2')
24
+ s.add_runtime_dependency('middleman', '>=3.0.0')
25
+ s.add_development_dependency 'coveralls', '0.7.0'
26
+ s.add_development_dependency 'rdoc', '3.11'
27
+ s.add_development_dependency 'minitest', '5.4.0'
28
+ s.add_development_dependency 'rubocop', '0.24.1'
29
+ s.add_development_dependency 'rubocop-rspec', '1.1.0'
30
+ s.add_development_dependency 'rspec-rails', '2.13'
31
+ end
data/rubygems.yml.asc ADDED
@@ -0,0 +1,17 @@
1
+ -----BEGIN PGP MESSAGE-----
2
+ Comment: GPGTools - https://gpgtools.org
3
+
4
+ hQEMA5qETcGag5w6AQf6A8niyP5j6Q8e/IozykzKjJT/LIrqFB8RqZJbR3W55d+F
5
+ b+bUR4OjCe7wGxJ9Xz78enbBaVGy7YO8wEFnxGCiReSAOi8Ed465BNjLBbDAUqHu
6
+ TxyM+6+rczCExvNoitW0ABESBz2k7r1U8vOkRd3+QVlteoNXSILG9g4Fk5JwLNZT
7
+ H4r2mfvYZZwvYOEyyL8TY7a7qFqUhA8Am/0WSSvBHZ1yNHgnL6S4LnZz0Xq0hTVM
8
+ Ii2ef8lZ3MkhCCgf+dy0W0Di3ASiG11pDAo0gNlz6TJG/mVp2o08C+vdVvL6Khm4
9
+ NLZoaP426Q8FCAn7QxDCwnr/hNYL/9Mu9S3fIbFAPdLAWgG4jpHwScqD419oZI2S
10
+ oRe1btVxKSPvouwqCaE3TZJZ5j4cuF758bbqIcuNogINDp3xoutIugX4eW537IkK
11
+ NF/6oks681H25tQnNBwirzVl92KYHF9E8ikD0sBsfekR8K6qz/cwIVnSvqer0u61
12
+ zir6hI04ajZ5v75zQNvRDKGlkkoacSxccQZZpsCGLt5SF7EWB0sQ+fv1RFO+NyP1
13
+ /p9vCWm1t7MDEz4t4sq5RPZwJTLGYb6OeQvPdQUipdRVNxGxPKAjzfhZ3Erl0Z8f
14
+ FAqUoTQ4i+gmRmKC08JRNOO3gKbbJs5TyVWZDAsXANCHouAXZ7hVyZwPMLgDG9M+
15
+ m9cjHYKXWHdB6GjBWzZIb9VSZYcLl2F8/Sz7ug==
16
+ =8ZkF
17
+ -----END PGP MESSAGE-----
data/test.sh ADDED
@@ -0,0 +1,29 @@
1
+ #!/bin/bash
2
+ set -e
3
+ set -x
4
+
5
+ TMP=$(mktemp -d -t mgd-XXXX)
6
+ yes | middleman new mgd-XXXX
7
+ mv mgd-XXXX/* "${TMP}"
8
+
9
+ CWD=$(pwd)
10
+ git init "${TMP}"
11
+ cd "${TMP}"
12
+ touch "source/test.html"
13
+ echo "hello" > "source/test.html"
14
+ git add .
15
+ git config user.email "test@example.com"
16
+ git config user.name "Test"
17
+ git commit -am 'initial commit'
18
+ cd "${CWD}"
19
+
20
+ ./bash/deploy.sh "${TMP}" gh-pages
21
+
22
+ cd "${TMP}"
23
+ git checkout gh-pages
24
+ ls -al
25
+ cat test.html | grep "hello"
26
+ cd "${CWD}"
27
+ rm -rf "${TMP}"
28
+
29
+ echo "success"
metadata ADDED
@@ -0,0 +1,175 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mgd
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Yegor Bugayenko
8
+ - Jan Hovancik
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2015-12-27 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: trollop
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - '='
19
+ - !ruby/object:Gem::Version
20
+ version: 2.1.2
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - '='
26
+ - !ruby/object:Gem::Version
27
+ version: 2.1.2
28
+ - !ruby/object:Gem::Dependency
29
+ name: middleman
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 3.0.0
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 3.0.0
42
+ - !ruby/object:Gem::Dependency
43
+ name: coveralls
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - '='
47
+ - !ruby/object:Gem::Version
48
+ version: 0.7.0
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '='
54
+ - !ruby/object:Gem::Version
55
+ version: 0.7.0
56
+ - !ruby/object:Gem::Dependency
57
+ name: rdoc
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - '='
61
+ - !ruby/object:Gem::Version
62
+ version: '3.11'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - '='
68
+ - !ruby/object:Gem::Version
69
+ version: '3.11'
70
+ - !ruby/object:Gem::Dependency
71
+ name: minitest
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '='
75
+ - !ruby/object:Gem::Version
76
+ version: 5.4.0
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - '='
82
+ - !ruby/object:Gem::Version
83
+ version: 5.4.0
84
+ - !ruby/object:Gem::Dependency
85
+ name: rubocop
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - '='
89
+ - !ruby/object:Gem::Version
90
+ version: 0.24.1
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - '='
96
+ - !ruby/object:Gem::Version
97
+ version: 0.24.1
98
+ - !ruby/object:Gem::Dependency
99
+ name: rubocop-rspec
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - '='
103
+ - !ruby/object:Gem::Version
104
+ version: 1.1.0
105
+ type: :development
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - '='
110
+ - !ruby/object:Gem::Version
111
+ version: 1.1.0
112
+ - !ruby/object:Gem::Dependency
113
+ name: rspec-rails
114
+ requirement: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - '='
117
+ - !ruby/object:Gem::Version
118
+ version: '2.13'
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - '='
124
+ - !ruby/object:Gem::Version
125
+ version: '2.13'
126
+ description: Automated deployment of your Middleman blog to Github Pages
127
+ email: conta.srdr@gmail.com
128
+ executables:
129
+ - mgd
130
+ extensions: []
131
+ extra_rdoc_files:
132
+ - README.md
133
+ - LICENSE.txt
134
+ files:
135
+ - ".gitignore"
136
+ - ".rubocop.yml"
137
+ - ".rultor.yml"
138
+ - ".travis.yml"
139
+ - Gemfile
140
+ - LICENSE.txt
141
+ - PUZZLES.md
142
+ - README.md
143
+ - Rakefile
144
+ - TEAM.md
145
+ - bash/deploy.sh
146
+ - bin/mgd
147
+ - mgd.gemspec
148
+ - rubygems.yml.asc
149
+ - test.sh
150
+ homepage: http://github.com/hovancik/middleman-github-deploy
151
+ licenses:
152
+ - MIT
153
+ metadata: {}
154
+ post_install_message:
155
+ rdoc_options:
156
+ - "--charset=UTF-8"
157
+ require_paths:
158
+ - lib
159
+ required_ruby_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: 1.9.3
164
+ required_rubygems_version: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
169
+ requirements: []
170
+ rubyforge_project:
171
+ rubygems_version: 2.4.8
172
+ signing_key:
173
+ specification_version: 2
174
+ summary: Middleman Github Deploy
175
+ test_files: []