capistrano-figaro-yml 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: acd8542d1af7042c405f56d0be4131db6d592f4b
4
- data.tar.gz: 31e26c3b4feb60ec37de44795e4ada4750c3a490
3
+ metadata.gz: 4126e47bbb175d43a85357870e707ae72aabe88c
4
+ data.tar.gz: d36052e97c6700bf4823ccc41ed9cc66fe360953
5
5
  SHA512:
6
- metadata.gz: a44198b2827828e484323955e26494ab9273b6695aab66300e905ed3aed119f6c6c50e8522a5f4cd44a734dd72dec3fe6e8688efabbc4e9efb32d27c6300149c
7
- data.tar.gz: f516bec0959ac2d41c8e46cb5c86a3847ab98ceb704f16db4b6c4cddab81eb924f7d0573ad8faee28cce7f8ee4466b8dbdfee29ec0f59d3e748cd3ce590f4a6b
6
+ metadata.gz: 4403dda48b75e7d5c4212b7602b5c71877dd205d885b49a36b37c01bcad98c81374d4ab364235f9091a0a76c84c835077b9b8f9f8a91bfc5904a96e3fac7168b
7
+ data.tar.gz: 28b8f712b016d7b863e37f93b64064f5559e0c1d85671113ab8d65d532680026822c82bca62c451e891cfd291d8018fcc91640de8aecc14dc19f695dce9b7d7e
@@ -1,5 +1,5 @@
1
1
  # Changelog
2
2
 
3
- ### v1.0.0, 2015-01-24
3
+ ### v1.0.1, 2015-01-24
4
4
  - started the project
5
5
  - first working version
data/README.md CHANGED
@@ -7,8 +7,8 @@ Capistrano tasks for handling figaro `application.yml` when deploying Rails 4+ a
7
7
  Add this to `Gemfile`:
8
8
 
9
9
  group :development do
10
- gem 'capistrano', '~> 3.2.1'
11
- gem 'capistrano-figaro-yml', '~> 1.0.0'
10
+ gem 'capistrano', '~> 3.3.0'
11
+ gem 'capistrano-figaro-yml', '~> 1.0.1'
12
12
  end
13
13
 
14
14
  And then:
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module FigaroYml
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -55,6 +55,5 @@ end
55
55
 
56
56
  desc "Server setup tasks"
57
57
  task :setup do
58
- invoke "secrets_yml:setup"
58
+ invoke "figaro_yml:setup"
59
59
  end
60
-
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-figaro-yml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chia-Hui Chou