1
0
mirror of https://github.com/danbee/cv synced 2025-03-04 08:59:12 +00:00

Deployment.

This commit is contained in:
Dan Barber 2015-02-14 16:43:55 +00:00
parent b4b5edfb17
commit bdebecd0d6
3 changed files with 15 additions and 0 deletions

View File

@ -3,6 +3,7 @@
source 'https://rubygems.org'
gem "middleman", "~>3.3.7"
gem "middleman-deploy"
# Live-reloading plugin
gem "middleman-livereload", "~> 3.1.0"

View File

@ -70,6 +70,10 @@ GEM
rack-test (~> 0.6.2)
thor (>= 0.15.2, < 2.0)
tilt (~> 1.4.1, < 2.0)
middleman-deploy (1.0.0)
middleman-core (>= 3.2)
net-sftp
ptools
middleman-livereload (3.1.1)
em-websocket (>= 0.2.0)
middleman-core (>= 3.0.2)
@ -82,12 +86,16 @@ GEM
sprockets-sass (~> 1.3.0)
minitest (5.5.1)
multi_json (1.10.1)
net-sftp (2.1.2)
net-ssh (>= 2.6.5)
net-ssh (2.9.2)
padrino-helpers (0.12.4)
i18n (~> 0.6, >= 0.6.7)
padrino-support (= 0.12.4)
tilt (~> 1.4.1)
padrino-support (0.12.4)
activesupport (>= 3.1)
ptools (1.3.2)
rack (1.6.0)
rack-livereload (0.3.15)
rack
@ -124,6 +132,7 @@ PLATFORMS
DEPENDENCIES
middleman (~> 3.3.7)
middleman-deploy
middleman-livereload (~> 3.1.0)
tzinfo-data
wdm (~> 0.1.0)

View File

@ -72,3 +72,8 @@ configure :build do
# Or use a different image path
# set :http_prefix, "/Content/images/"
end
activate :deploy do |deploy|
deploy.method = :git
deploy.branch = 'gh-pages'
end