capistrano-exfel 0.0.12 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0aeb56d864c2efec5a15953a2e03ab05cf58d5d
4
- data.tar.gz: b1cdba8f0060048df9888c6ce8f0a6a4e14a4db6
3
+ metadata.gz: c382e3e124886cc19f9c480a44afcd1e0275e374
4
+ data.tar.gz: 3cc6c89c62797dc4c990c46183995a5523d6a70a
5
5
  SHA512:
6
- metadata.gz: 97969e02f112478c14c8dcc2c64b7bdae59dc6298bf8e27d51c1ab797f43600966a96a2f48c828c507edbb86fab2d28fcfe3e2c304a3b53fe7da90d610e13944
7
- data.tar.gz: a8a33bc5d7db59f500662c6a30a1951b067af03c7ffaa6a61b151c9dcbbd822a3cc8277ce7d711f5d43f3cd1b480daac64c31ed03f524f68632da5325ced0ed6
6
+ metadata.gz: de51ee4b2892cfed2b6422632b73c2640ec998203374425bb8fb6cdfcf8471dbb9487c119850ee2d026c2434415261e38bc642cc2f729990a5aded6f44c0b926
7
+ data.tar.gz: 57819b8d0bc8f9a566e911e1b9da3f3e13fd34058377d6805498dc32f135158e733441dcef0667ad1e10e44aedd885bdf8ffe7db98771c2604e3d37e1d7481aa
data/README.md CHANGED
@@ -12,7 +12,7 @@ Add these lines to your application's Gemfile:
12
12
  gem 'capistrano', '~> 3.4.0'
13
13
  gem 'capistrano-rails', '~> 1.1.2'
14
14
  gem 'capistrano-rvm', '~> 0.1.2'
15
- gem 'capistrano-exfel', '~> 0.0.12'
15
+ gem 'capistrano-exfel', '~> 0.0.13'
16
16
 
17
17
  And then execute:
18
18
 
@@ -1,6 +1,6 @@
1
1
  module Capistrano
2
2
  # Capistrano::Exfel version information
3
3
  module Exfel
4
- VERSION = '0.0.12'
4
+ VERSION = '0.0.13'
5
5
  end
6
6
  end
@@ -34,7 +34,7 @@ defaults: &defaults
34
34
  # Examples:
35
35
  # * "" - The application URI routing is done via HTTP Server (e.g. Apache or NGINX)
36
36
  # * 'my_app' - The application URI routing must be done via code
37
- routes_base_uri: '<<APP_NAME_URI>>'
37
+ routes_base_uri: ""
38
38
 
39
39
  # Application full url to be used as config.action_mailer.default_url_options (e.g. https://example.com/my_app)
40
40
  app_full_url: '<<APP_FULL_URL>>'
@@ -35,10 +35,10 @@ namespace :secrets do
35
35
  upload! StringIO.new(File.read("#{fetch(:secrets_original_file_path)}")), "#{fetch(:secrets_file_path)}"
36
36
  end
37
37
 
38
- execute "sed -i 's/<<APP_NAME>>/#{fetch(:app_name)}/g' #{fetch(:secrets_file_path)}"
39
- execute "sed -i 's/<<APP_DOMAIN>>/#{fetch(:app_domain)}/g' #{fetch(:secrets_file_path)}"
40
- execute "sed -i 's/<<APP_NAME_URI>>/#{fetch(:app_name_uri)}/g' #{fetch(:secrets_file_path)}"
41
- execute "sed -i 's/<<APP_FULL_URL>>/#{fetch(:app_full_url)}/g' #{fetch(:secrets_file_path)}"
38
+ execute "sed -i 's|<<APP_NAME>>|#{fetch(:app_name)}|g' #{fetch(:secrets_file_path)}"
39
+ execute "sed -i 's|<<APP_DOMAIN>>|#{fetch(:app_domain)}|g' #{fetch(:secrets_file_path)}"
40
+ execute "sed -i 's|<<APP_NAME_URI>>|#{fetch(:app_name_uri)}|g' #{fetch(:secrets_file_path)}"
41
+ execute "sed -i 's|<<APP_FULL_URL>>|#{fetch(:app_full_url)}|g' #{fetch(:secrets_file_path)}"
42
42
 
43
43
  debug '#' * 50
44
44
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-exfel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.0.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis Maia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-02 00:00:00.000000000 Z
11
+ date: 2015-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler