new_artrails_capistrano 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.codeclimate.yml +28 -0
- data/.gitignore +312 -0
- data/.rubocop.yml +37 -0
- data/.rubocop_todo.yml +7 -0
- data/.travis.yml +8 -0
- data/CHANGELOG.md +3 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Guardfile +118 -0
- data/LICENSE.txt +21 -0
- data/Manifest.txt +28 -0
- data/README.md +54 -0
- data/Rakefile +15 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/config.reek +1 -0
- data/lib/.keep +0 -0
- data/lib/capistrano/new_artrails_capistrano.rb +3 -0
- data/lib/capistrano/new_artrails_capistrano/version.rb +7 -0
- data/lib/capistrano/tasks/new_artrails_capistrano.rake +742 -0
- data/lib/new_artrails_capistrano.rb +1 -0
- data/new_artrails_capistrano.gemspec +77 -0
- metadata +452 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7c5bb956afc61ebd6675c6419c7d978428cc19e5
|
4
|
+
data.tar.gz: fc0057e1a2753f5e2db51e13c7ead3eb1b93d87f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 341931b41e89b4e884ad8d30f6d53389d33e1b5e1ba0a609775ee63bc0107fdd0443622fdb7c2b0327e979620ec101d02ac295aa1130e75adb63acaaef90b4a6
|
7
|
+
data.tar.gz: ddc2588682b90c1cfce442ce7a242b62421f02404c989a9dce8bf03dbe90bf845364604fd6cf167444054568eeb667e3a0c922f7e7dbf32fe0342f22b0b17b3f
|
data/.codeclimate.yml
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
---
|
2
|
+
engines:
|
3
|
+
fixme:
|
4
|
+
enabled: true
|
5
|
+
duplication:
|
6
|
+
enabled: true
|
7
|
+
config:
|
8
|
+
languages:
|
9
|
+
- ruby
|
10
|
+
rubocop:
|
11
|
+
enabled: true
|
12
|
+
reek:
|
13
|
+
enabled: true
|
14
|
+
flog:
|
15
|
+
enabled: true
|
16
|
+
config:
|
17
|
+
score_threshold: 20.0
|
18
|
+
# https://github.com/rubysec/bundler-audit/pull/87/commits/59b50f8423cba24dbb6cde3ad7df0358c77bbd29
|
19
|
+
# bundler-audit:
|
20
|
+
# enabled: true
|
21
|
+
ratings:
|
22
|
+
paths:
|
23
|
+
# - Gemfile.lock
|
24
|
+
- "**.rb"
|
25
|
+
exclude_paths:
|
26
|
+
- "test/"
|
27
|
+
- "spec/"
|
28
|
+
- "**/vendor/"
|
data/.gitignore
ADDED
@@ -0,0 +1,312 @@
|
|
1
|
+
|
2
|
+
# Created by https://www.gitignore.io/api/vim,git,ruby,macos,linux,emacs,rubymine,sublimetext,rails,visualstudiocode
|
3
|
+
|
4
|
+
### Emacs ###
|
5
|
+
# -*- mode: gitignore; -*-
|
6
|
+
*~
|
7
|
+
\#*\#
|
8
|
+
/.emacs.desktop
|
9
|
+
/.emacs.desktop.lock
|
10
|
+
*.elc
|
11
|
+
auto-save-list
|
12
|
+
tramp
|
13
|
+
.\#*
|
14
|
+
|
15
|
+
# Org-mode
|
16
|
+
.org-id-locations
|
17
|
+
*_archive
|
18
|
+
|
19
|
+
# flymake-mode
|
20
|
+
*_flymake.*
|
21
|
+
|
22
|
+
# eshell files
|
23
|
+
/eshell/history
|
24
|
+
/eshell/lastdir
|
25
|
+
|
26
|
+
# elpa packages
|
27
|
+
/elpa/
|
28
|
+
|
29
|
+
# reftex files
|
30
|
+
*.rel
|
31
|
+
|
32
|
+
# AUCTeX auto folder
|
33
|
+
/auto/
|
34
|
+
|
35
|
+
# cask packages
|
36
|
+
.cask/
|
37
|
+
dist/
|
38
|
+
|
39
|
+
# Flycheck
|
40
|
+
flycheck_*.el
|
41
|
+
|
42
|
+
# server auth directory
|
43
|
+
/server/
|
44
|
+
|
45
|
+
# projectiles files
|
46
|
+
.projectile
|
47
|
+
|
48
|
+
# directory configuration
|
49
|
+
.dir-locals.el
|
50
|
+
|
51
|
+
### Git ###
|
52
|
+
*.orig
|
53
|
+
|
54
|
+
### Linux ###
|
55
|
+
|
56
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
57
|
+
.fuse_hidden*
|
58
|
+
|
59
|
+
# KDE directory preferences
|
60
|
+
.directory
|
61
|
+
|
62
|
+
# Linux trash folder which might appear on any partition or disk
|
63
|
+
.Trash-*
|
64
|
+
|
65
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
66
|
+
.nfs*
|
67
|
+
|
68
|
+
### macOS ###
|
69
|
+
*.DS_Store
|
70
|
+
.AppleDouble
|
71
|
+
.LSOverride
|
72
|
+
|
73
|
+
# Icon must end with two \r
|
74
|
+
Icon
|
75
|
+
|
76
|
+
# Thumbnails
|
77
|
+
._*
|
78
|
+
|
79
|
+
# Files that might appear in the root of a volume
|
80
|
+
.DocumentRevisions-V100
|
81
|
+
.fseventsd
|
82
|
+
.Spotlight-V100
|
83
|
+
.TemporaryItems
|
84
|
+
.Trashes
|
85
|
+
.VolumeIcon.icns
|
86
|
+
.com.apple.timemachine.donotpresent
|
87
|
+
|
88
|
+
# Directories potentially created on remote AFP share
|
89
|
+
.AppleDB
|
90
|
+
.AppleDesktop
|
91
|
+
Network Trash Folder
|
92
|
+
Temporary Items
|
93
|
+
.apdisk
|
94
|
+
|
95
|
+
### Rails ###
|
96
|
+
*.rbc
|
97
|
+
capybara-*.html
|
98
|
+
.rspec
|
99
|
+
.rspec-local
|
100
|
+
/log
|
101
|
+
/tmp
|
102
|
+
/db/*.sqlite3
|
103
|
+
/db/*.sqlite3-journal
|
104
|
+
/public/system
|
105
|
+
/coverage/
|
106
|
+
/spec/tmp
|
107
|
+
rerun.txt
|
108
|
+
pickle-email-*.html
|
109
|
+
|
110
|
+
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
111
|
+
config/initializers/secret_token.rb
|
112
|
+
|
113
|
+
# Only include if you have production secrets in this file, which is no longer a Rails default
|
114
|
+
# config/secrets.yml
|
115
|
+
|
116
|
+
# dotenv
|
117
|
+
# TODO Comment out this rule if environment variables can be committed
|
118
|
+
.env
|
119
|
+
|
120
|
+
## Environment normalization:
|
121
|
+
/.bundle
|
122
|
+
/vendor/bundle
|
123
|
+
|
124
|
+
# these should all be checked in to normalize the environment:
|
125
|
+
# Gemfile.lock, .ruby-version, .ruby-gemset
|
126
|
+
Gemfile.lock
|
127
|
+
.ruby-version
|
128
|
+
.ruby-gemset
|
129
|
+
|
130
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
131
|
+
.rvmrc
|
132
|
+
|
133
|
+
# if using bower-rails ignore default bower_components path bower.json files
|
134
|
+
/vendor/assets/bower_components
|
135
|
+
*.bowerrc
|
136
|
+
bower.json
|
137
|
+
|
138
|
+
# Ignore pow environment settings
|
139
|
+
.powenv
|
140
|
+
|
141
|
+
# Ignore Byebug command history file.
|
142
|
+
.byebug_history
|
143
|
+
|
144
|
+
### Ruby ###
|
145
|
+
*.gem
|
146
|
+
/.config
|
147
|
+
/InstalledFiles
|
148
|
+
/pkg/
|
149
|
+
/spec/reports/
|
150
|
+
/spec/examples.txt
|
151
|
+
/test/tmp/
|
152
|
+
/test/version_tmp/
|
153
|
+
/tmp/
|
154
|
+
|
155
|
+
# Used by dotenv library to load environment variables.
|
156
|
+
# .env
|
157
|
+
|
158
|
+
## Specific to RubyMotion:
|
159
|
+
.dat*
|
160
|
+
.repl_history
|
161
|
+
build/
|
162
|
+
*.bridgesupport
|
163
|
+
build-iPhoneOS/
|
164
|
+
build-iPhoneSimulator/
|
165
|
+
|
166
|
+
## Specific to RubyMotion (use of CocoaPods):
|
167
|
+
#
|
168
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
169
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
170
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
171
|
+
#
|
172
|
+
# vendor/Pods/
|
173
|
+
|
174
|
+
## Documentation cache and generated files:
|
175
|
+
/.yardoc/
|
176
|
+
/_yardoc/
|
177
|
+
/doc/
|
178
|
+
/rdoc/
|
179
|
+
|
180
|
+
## Environment normalization:
|
181
|
+
/.bundle/
|
182
|
+
/lib/bundler/man/
|
183
|
+
|
184
|
+
# for a library or gem, you might want to ignore these files since the code is
|
185
|
+
# intended to run in multiple environments; otherwise, check them in:
|
186
|
+
# Gemfile.lock
|
187
|
+
# .ruby-version
|
188
|
+
# .ruby-gemset
|
189
|
+
|
190
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
191
|
+
|
192
|
+
### RubyMine ###
|
193
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
194
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
195
|
+
|
196
|
+
# User-specific stuff:
|
197
|
+
.idea/**/workspace.xml
|
198
|
+
.idea/**/tasks.xml
|
199
|
+
.idea/dictionaries
|
200
|
+
|
201
|
+
# Sensitive or high-churn files:
|
202
|
+
.idea/**/dataSources/
|
203
|
+
.idea/**/dataSources.ids
|
204
|
+
.idea/**/dataSources.xml
|
205
|
+
.idea/**/dataSources.local.xml
|
206
|
+
.idea/**/sqlDataSources.xml
|
207
|
+
.idea/**/dynamic.xml
|
208
|
+
.idea/**/uiDesigner.xml
|
209
|
+
|
210
|
+
# Gradle:
|
211
|
+
.idea/**/gradle.xml
|
212
|
+
.idea/**/libraries
|
213
|
+
|
214
|
+
# CMake
|
215
|
+
cmake-build-debug/
|
216
|
+
|
217
|
+
# Mongo Explorer plugin:
|
218
|
+
.idea/**/mongoSettings.xml
|
219
|
+
|
220
|
+
## File-based project format:
|
221
|
+
*.iws
|
222
|
+
|
223
|
+
## Plugin-specific files:
|
224
|
+
|
225
|
+
# IntelliJ
|
226
|
+
/out/
|
227
|
+
|
228
|
+
# mpeltonen/sbt-idea plugin
|
229
|
+
.idea_modules/
|
230
|
+
|
231
|
+
# JIRA plugin
|
232
|
+
atlassian-ide-plugin.xml
|
233
|
+
|
234
|
+
# Cursive Clojure plugin
|
235
|
+
.idea/replstate.xml
|
236
|
+
|
237
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
238
|
+
com_crashlytics_export_strings.xml
|
239
|
+
crashlytics.properties
|
240
|
+
crashlytics-build.properties
|
241
|
+
fabric.properties
|
242
|
+
|
243
|
+
### RubyMine Patch ###
|
244
|
+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
245
|
+
|
246
|
+
# *.iml
|
247
|
+
# modules.xml
|
248
|
+
# .idea/misc.xml
|
249
|
+
# *.ipr
|
250
|
+
|
251
|
+
# Sonarlint plugin
|
252
|
+
.idea/sonarlint
|
253
|
+
|
254
|
+
### SublimeText ###
|
255
|
+
# cache files for sublime text
|
256
|
+
*.tmlanguage.cache
|
257
|
+
*.tmPreferences.cache
|
258
|
+
*.stTheme.cache
|
259
|
+
|
260
|
+
# workspace files are user-specific
|
261
|
+
*.sublime-workspace
|
262
|
+
|
263
|
+
# project files should be checked into the repository, unless a significant
|
264
|
+
# proportion of contributors will probably not be using SublimeText
|
265
|
+
# *.sublime-project
|
266
|
+
|
267
|
+
# sftp configuration file
|
268
|
+
sftp-config.json
|
269
|
+
|
270
|
+
# Package control specific files
|
271
|
+
Package Control.last-run
|
272
|
+
Package Control.ca-list
|
273
|
+
Package Control.ca-bundle
|
274
|
+
Package Control.system-ca-bundle
|
275
|
+
Package Control.cache/
|
276
|
+
Package Control.ca-certs/
|
277
|
+
Package Control.merged-ca-bundle
|
278
|
+
Package Control.user-ca-bundle
|
279
|
+
oscrypto-ca-bundle.crt
|
280
|
+
bh_unicode_properties.cache
|
281
|
+
|
282
|
+
# Sublime-github package stores a github token in this file
|
283
|
+
# https://packagecontrol.io/packages/sublime-github
|
284
|
+
GitHub.sublime-settings
|
285
|
+
|
286
|
+
### Vim ###
|
287
|
+
# swap
|
288
|
+
[._]*.s[a-v][a-z]
|
289
|
+
[._]*.sw[a-p]
|
290
|
+
[._]s[a-v][a-z]
|
291
|
+
[._]sw[a-p]
|
292
|
+
# session
|
293
|
+
Session.vim
|
294
|
+
# temporary
|
295
|
+
.netrwhist
|
296
|
+
# auto-generated tag files
|
297
|
+
tags
|
298
|
+
|
299
|
+
### VisualStudioCode ###
|
300
|
+
.vscode/*
|
301
|
+
!.vscode/settings.json
|
302
|
+
!.vscode/tasks.json
|
303
|
+
!.vscode/launch.json
|
304
|
+
!.vscode/extensions.json
|
305
|
+
|
306
|
+
# End of https://www.gitignore.io/api/vim,git,ruby,macos,linux,emacs,rubymine,sublimetext,rails,visualstudiocode
|
307
|
+
|
308
|
+
# rspec failure tracking
|
309
|
+
.rspec_status
|
310
|
+
|
311
|
+
# Custom output
|
312
|
+
rubocop_output.json
|
data/.rubocop.yml
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
require: rubocop-rspec
|
2
|
+
|
3
|
+
# Use this to ingore current violations (and fix them later) run:
|
4
|
+
# bundle exec rubocop --auto-gen-config
|
5
|
+
inherit_from: .rubocop_todo.yml
|
6
|
+
|
7
|
+
# https://github.com/bbatsov/rubocop/blob/master/config/default.yml
|
8
|
+
|
9
|
+
AllCops:
|
10
|
+
DisplayCopNames: true
|
11
|
+
EnabledByDefault: true
|
12
|
+
TargetRubyVersion: 2.4
|
13
|
+
|
14
|
+
Metrics/LineLength:
|
15
|
+
Max: 120
|
16
|
+
|
17
|
+
Metrics/BlockLength:
|
18
|
+
Exclude:
|
19
|
+
- 'Guardfile'
|
20
|
+
- '**/*_spec.rb'
|
21
|
+
- '*.gemspec'
|
22
|
+
|
23
|
+
# https://github.com/bbatsov/rubocop/blob/master/config/enabled.yml
|
24
|
+
|
25
|
+
Style/Documentation:
|
26
|
+
Enabled: false
|
27
|
+
|
28
|
+
# https://github.com/bbatsov/rubocop/blob/master/config/disabled.yml
|
29
|
+
|
30
|
+
Style/Copyright:
|
31
|
+
Enabled: false
|
32
|
+
|
33
|
+
Style/MethodCallWithArgsParentheses:
|
34
|
+
Enabled: false
|
35
|
+
|
36
|
+
Style/DocumentationMethod:
|
37
|
+
Enabled: false
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2017-07-06 15:06:17 +0200 using RuboCop version 0.48.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at rubyconvict@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|