Skip to content

Commit

Permalink
Middleman deploy plugin was enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
tayfunoziserikan committed Mar 21, 2014
1 parent 8522e09 commit 93bb52e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ gem 'middleman', '~>3.2.2'
# Live-reloading plugin
gem 'middleman-livereload', '~> 3.1.0'

# Deploy plugin
gem 'middleman-deploy', '~> 0.2.3'

# For faster file watcher updates on Windows:
gem 'wdm', '~> 0.1.0', :platforms => [:mswin, :mingw]

Expand Down
9 changes: 9 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ GEM
rack-test (~> 0.6.1)
thor (>= 0.15.2, < 2.0)
tilt (~> 1.4.1)
middleman-deploy (0.2.3)
middleman-core (>= 3.0.0)
net-sftp
ptools
middleman-livereload (3.1.1)
em-websocket (>= 0.2.0)
middleman-core (>= 3.0.2)
Expand All @@ -64,6 +68,10 @@ GEM
sprockets-helpers (~> 1.0.0)
sprockets-sass (~> 1.0.0)
multi_json (1.9.2)
net-sftp (2.1.2)
net-ssh (>= 2.6.5)
net-ssh (2.8.0)
ptools (1.2.4)
rack (1.5.2)
rack-livereload (0.3.15)
rack
Expand Down Expand Up @@ -97,5 +105,6 @@ PLATFORMS
DEPENDENCIES
bootstrap-sass (~> 3.1.1.0)
middleman (~> 3.2.2)
middleman-deploy (~> 0.2.3)
middleman-livereload (~> 3.1.0)
wdm (~> 0.1.0)
8 changes: 8 additions & 0 deletions config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,11 @@
# Or use a different image path
# set :http_prefix, "/Content/images/"
end

# Deployment
activate :deploy do |deploy|
deploy.method = :git
# Optional Settings
# deploy.remote = "custom-remote" # remote name or git url, default: origin
# deploy.branch = "custom-branch" # default: gh-pages
end

0 comments on commit 93bb52e

Please sign in to comment.