Install all dependencies in an authenticated way (https)
git:// is unauthenticated!!!
This commit is contained in:
parent
4f30248a49
commit
897d31e340
4 changed files with 9 additions and 9 deletions
4
Gemfile
4
Gemfile
|
@ -27,7 +27,7 @@ gem 'haml-rails'
|
||||||
gem 'kaminari'
|
gem 'kaminari'
|
||||||
gem 'simple_form'
|
gem 'simple_form'
|
||||||
gem 'inherited_resources'
|
gem 'inherited_resources'
|
||||||
gem 'localize_input', git: "git://github.com/bennibu/localize_input.git"
|
gem 'localize_input', git: "https://github.com/bennibu/localize_input.git"
|
||||||
gem 'daemons'
|
gem 'daemons'
|
||||||
gem 'twitter-bootstrap-rails', '~> 2.2.8'
|
gem 'twitter-bootstrap-rails', '~> 2.2.8'
|
||||||
gem 'simple-navigation', '~> 3.14.0' # 3.x for simple_navigation_bootstrap
|
gem 'simple-navigation', '~> 3.14.0' # 3.x for simple_navigation_bootstrap
|
||||||
|
@ -49,7 +49,7 @@ gem 'gaffe'
|
||||||
gem 'ruby-filemagic'
|
gem 'ruby-filemagic'
|
||||||
|
|
||||||
# we use the git version of acts_as_versioned, and need to include it in this Gemfile
|
# we use the git version of acts_as_versioned, and need to include it in this Gemfile
|
||||||
gem 'acts_as_versioned', github: 'technoweenie/acts_as_versioned'
|
gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git'
|
||||||
gem 'foodsoft_wiki', path: 'plugins/wiki'
|
gem 'foodsoft_wiki', path: 'plugins/wiki'
|
||||||
gem 'foodsoft_messages', path: 'plugins/messages'
|
gem 'foodsoft_messages', path: 'plugins/messages'
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
GIT
|
GIT
|
||||||
remote: git://github.com/bennibu/localize_input.git
|
remote: https://github.com/bennibu/localize_input.git
|
||||||
revision: 5eb188d2525a073d09e142cf8b0b04e6ace6e7b0
|
revision: 5eb188d2525a073d09e142cf8b0b04e6ace6e7b0
|
||||||
specs:
|
specs:
|
||||||
localize_input (0.1.0)
|
localize_input (0.1.0)
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: git://github.com/technoweenie/acts_as_versioned.git
|
remote: https://github.com/technoweenie/acts_as_versioned.git
|
||||||
revision: 63b1fc8529d028fae632fe80ec0cb25df56cd76b
|
revision: 63b1fc8529d028fae632fe80ec0cb25df56cd76b
|
||||||
specs:
|
specs:
|
||||||
acts_as_versioned (0.6.0)
|
acts_as_versioned (0.6.0)
|
||||||
|
|
|
@ -12,7 +12,7 @@ set :application, 'foodsoft' # application name (whatever you
|
||||||
set :domain, 'order.foodcoop.test' # host
|
set :domain, 'order.foodcoop.test' # host
|
||||||
set :user, 'deploy' # ssh deploy user
|
set :user, 'deploy' # ssh deploy user
|
||||||
set :keep_releases, 10
|
set :keep_releases, 10
|
||||||
set :repo_url, 'git://github.com/foodcoops/foodsoft.git'
|
set :repo_url, 'https://github.com/foodcoops/foodsoft.git'
|
||||||
set :deploy_to, "/www/apps/#{fetch :application}-#{fetch :stage}"
|
set :deploy_to, "/www/apps/#{fetch :application}-#{fetch :stage}"
|
||||||
|
|
||||||
# more settings which are probably ok
|
# more settings which are probably ok
|
||||||
|
|
|
@ -10,7 +10,7 @@ add the following to foodsoft's Gemfile:
|
||||||
|
|
||||||
```Gemfile
|
```Gemfile
|
||||||
# we use the git version of acts_as_versioned, so this needs to be in foodsoft's Gemfile
|
# we use the git version of acts_as_versioned, so this needs to be in foodsoft's Gemfile
|
||||||
gem 'acts_as_versioned', git: 'git://github.com/technoweenie/acts_as_versioned.git'
|
gem 'acts_as_versioned', git: 'https://github.com/technoweenie/acts_as_versioned.git'
|
||||||
gem 'foodsoft_wiki', path: 'lib/foodsoft_wiki'
|
gem 'foodsoft_wiki', path: 'lib/foodsoft_wiki'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue