capistrano-rails 1.3.0 → 1.3.1

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
- SHA1:
3
- metadata.gz: dcd91a978e99c58547d28d3049fec73695c4f518
4
- data.tar.gz: f6e20bd2b13cdc0f55e39b1bcf2fdad3d16cc4b5
2
+ SHA256:
3
+ metadata.gz: 2cbe787802845ff7d0f213ba9bfd25bbf7d57ee156e1888a0e37bbd53c2ae342
4
+ data.tar.gz: d3a582cb7487654ce28e6f78da8e757dba479d41ad8da54be1f2f92033a49994
5
5
  SHA512:
6
- metadata.gz: 8be01bc08a5084597616374ce6497038c69ebba06a42832b2b64edb56130720e1c2f7ed3106274befa02706f67630b94a9c2efb6ff082523fc1d87a2cc7bfe3a
7
- data.tar.gz: 53d8decbff18ca1d824a8032b9118ff687c2403a1733b02b7d138fc17eaa0aabe5933c6096c67a66f05ad9a464d3b9beb0b34965039f757465bc3465a6313f75
6
+ metadata.gz: fed86022a816d9458cc13831ad40d097bd8ae3c43d71c4f206335adbf88b9b5df3caa345046c523a958aeac3878ec521ba8c8ebe79d2b28742cc568c4a02cf2f
7
+ data.tar.gz: e8f1faa9c998babc2b516d25270440e5fd028aaa9ba650c35fd97fe6206bc5977486648d6dadc51e0867ea02d33db62326c487b72b6bf4eb5d25ffc798729e5d
@@ -0,0 +1,19 @@
1
+ **Important:** GitHub issues are for feature requests or bug reports. The Capistrano team recommends you use [Stack Overflow](http://stackoverflow.com/questions/tagged/capistrano) for general questions. For more details, please see our [contribution policy](https://github.com/capistrano/capistrano/blob/master/CONTRIBUTING.md).
2
+
3
+ ---
4
+
5
+ ### Steps to reproduce
6
+ If reasonable, you can help by creating a Capistrano skeleton example project which reproduces the issue you are seeing. You can then upload the individual files to a GitHub Gist or a GitHub project. Others can simply modify the configuration to point at a test server/repository of their own. Often times, an issue is resolved simply by making this test case.
7
+
8
+ An example test case is here: https://gist.github.com/will-in-wi/527327e31af30b3eae2068e2965be05b
9
+
10
+ ### Expected behavior
11
+ Tell us what should happen
12
+
13
+ ### Actual behavior
14
+ Tell us what happens instead
15
+
16
+ ### System configuration
17
+ Please link to the output of `cap <stage> doctor` in a GitHub Gist.
18
+
19
+ Thanks for helping improve Capistrano!
@@ -0,0 +1,23 @@
1
+ ### Summary
2
+
3
+ (Guidelines for creating a bug report are available
4
+ here: https://github.com/capistrano/capistrano/blob/master/DEVELOPMENT.md)
5
+
6
+ Provide a general description of the code changes in your pull
7
+ request... were there any bugs you had fixed? If so, mention them. If
8
+ these bugs have open GitHub issues, be sure to tag them here as well,
9
+ to keep the conversation linked together.
10
+
11
+ ### Short checklist
12
+
13
+ - [ ] If you are fixing a bug or introducing a new feature, did you add a CHANGELOG entry?
14
+
15
+ ### Other Information
16
+
17
+ If there's anything else that's important and relevant to your pull
18
+ request, mention that information here.
19
+
20
+ If you are updating any of the CHANGELOG files or are asked to update the
21
+ CHANGELOG files by reviewers, please add the CHANGELOG entry at the top of the file where indicated.
22
+
23
+ Thanks for helping improve Capistrano!
@@ -2,6 +2,10 @@
2
2
 
3
3
  * Your contribution here!
4
4
 
5
+ # [1.3.1][] (Nov 21 2017)
6
+
7
+ This release simply adds the MIT license to the capistrano-rails gemspec. There are no code changes. See [#205](https://github.com/capistrano/rails/issues/205).
8
+
5
9
  # [1.3.0][] (Jun 9 2017)
6
10
 
7
11
  * rails_assets_groups config option to set RAILS_GROUPS (https://github.com/capistrano/rails/pull/135)
@@ -77,8 +81,9 @@
77
81
 
78
82
  Initial release
79
83
 
80
- [master]: https://github.com/capistrano/rails/compare/v1.3.0...HEAD
81
- [1.3.0]: https://github.com/capistrano/rails/compare/v1.2.2...v1.3.0
84
+ [master]: https://github.com/capistrano/rails/compare/v1.3.1...HEAD
85
+ [1.3.1]: https://github.com/capistrano/rails/compare/v1.3.0...v1.3.1
86
+ [1.3.0]: https://github.com/capistrano/rails/compare/v1.2.3...v1.3.0
82
87
  [1.2.3]: https://github.com/capistrano/rails/compare/v1.2.2...v1.2.3
83
88
  [1.2.2]: https://github.com/capistrano/rails/compare/v1.2.1...v1.2.2
84
89
  [1.2.1]: https://github.com/capistrano/rails/compare/v1.2.0...v1.2.1
data/README.md CHANGED
@@ -90,10 +90,12 @@ Make sure you enable it by setting `linked_dirs` and `linked_files` options:
90
90
 
91
91
  ```ruby
92
92
  # deploy.rb
93
- set :linked_dirs, fetch(:linked_dirs, []).push('log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system', 'public/uploads')
94
- set :linked_files, fetch(:linked_files, []).push('config/database.yml', 'config/secrets.yml')
93
+ append :linked_dirs, 'log', 'tmp/pids', 'tmp/cache', 'tmp/sockets', 'vendor/bundle', 'public/system', 'public/uploads'
94
+ append :linked_files, 'config/database.yml', 'config/secrets.yml'
95
95
  ```
96
96
 
97
+ In capistrano < 3.5, before `append` was introduced, you can use `fetch` and `push` to get the same result.
98
+
97
99
  ### Recommendations
98
100
 
99
101
  While migrations looks like a concern of the database layer, Rails migrations
@@ -4,13 +4,15 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "capistrano-rails"
7
- gem.version = '1.3.0'
7
+ gem.version = '1.3.1'
8
8
  gem.authors = ["Tom Clements", "Lee Hambley", "Kir Shatrov"]
9
9
  gem.email = ["seenmyfate@gmail.com", "lee.hambley@gmail.com", "shatrov@me.com"]
10
10
  gem.description = %q{Rails specific Capistrano tasks}
11
11
  gem.summary = %q{Rails specific Capistrano tasks}
12
12
  gem.homepage = "https://github.com/capistrano/rails"
13
13
 
14
+ gem.licenses = ["MIT"]
15
+
14
16
  gem.files = `git ls-files`.split($/)
15
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
18
  gem.require_paths = ["lib"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Clements
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-06-09 00:00:00.000000000 Z
13
+ date: 2017-11-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: capistrano
@@ -63,6 +63,8 @@ executables: []
63
63
  extensions: []
64
64
  extra_rdoc_files: []
65
65
  files:
66
+ - ".github/issue_template.md"
67
+ - ".github/pull_request_template.md"
66
68
  - ".gitignore"
67
69
  - ".travis.yml"
68
70
  - CHANGELOG.md
@@ -80,7 +82,8 @@ files:
80
82
  - lib/capistrano/tasks/migrations.rake
81
83
  - lib/capistrano/tasks/set_rails_env.rake
82
84
  homepage: https://github.com/capistrano/rails
83
- licenses: []
85
+ licenses:
86
+ - MIT
84
87
  metadata: {}
85
88
  post_install_message:
86
89
  rdoc_options: []
@@ -98,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
98
101
  version: '0'
99
102
  requirements: []
100
103
  rubyforge_project:
101
- rubygems_version: 2.6.12
104
+ rubygems_version: 2.7.2
102
105
  signing_key:
103
106
  specification_version: 4
104
107
  summary: Rails specific Capistrano tasks