traquitana 0.1.3 → 0.1.7

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
  SHA256:
3
- metadata.gz: 7a09adad4f736aa9f57f8c93aed0b5358ab64b07c5360307022409a9a8a26abf
4
- data.tar.gz: 8c085c94a9a4bd2bfcdb4871f46ccdc64d4d1e08fddd903904c3ac5b111b71be
3
+ metadata.gz: c63d7ffa54f490f69e986477bc7d13bcb571d521a29f6b3b5c1f4910f1fc884c
4
+ data.tar.gz: cd05def258dfb681b4bc12eb4def2d2dc7b463ec6f5323cfa7db3e700b561d65
5
5
  SHA512:
6
- metadata.gz: 4d78781ee2800bb9f4a0bbc3b71e3d95acec09d3684bddfb0c7f9f89086b66413d1b535a3166bed619beefc4e2110dac8ff7b20b31260e2fe8b5f3434f4eb7f3
7
- data.tar.gz: 80fcf9ca6561c01b878aebef8abb754d4ca81ea8af9465017f97ef6e301df948dff7f32de477f30dc062555ee7cfb5cf5419926cf59739a9758a5a08084115d7
6
+ metadata.gz: d1535324e5ed6f45719297e323340d8dcc7160b4ecf7a89f1da93e127ea74ef44f90b656d64c38dee620aa9bb71ddb60b312a62b7972684f44936b2a7abafe9f
7
+ data.tar.gz: a1407470849c1cb989f2c39d0063d89b45e502a1845f8e928ca2cb673aa63728a21b43ee5f16f11ad177f24cdba4e3e59e4de1d5c724890bc4cd622cbf99116c
checksums.yaml.gz.sig CHANGED
Binary file
data.tar.gz.sig CHANGED
Binary file
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- traquitana (0.1.3)
4
+ traquitana (0.1.7)
5
5
  highline
6
6
  net-scp
7
7
  net-ssh
@@ -11,10 +11,10 @@ GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
13
  highline (2.0.3)
14
- net-scp (2.0.0)
15
- net-ssh (>= 2.6.5, < 6.0.0)
16
- net-ssh (5.2.0)
17
- rubyzip (2.0.0)
14
+ net-scp (3.0.0)
15
+ net-ssh (>= 2.6.5, < 7.0.0)
16
+ net-ssh (6.1.0)
17
+ rubyzip (2.3.2)
18
18
 
19
19
  PLATFORMS
20
20
  ruby
@@ -23,4 +23,4 @@ DEPENDENCIES
23
23
  traquitana!
24
24
 
25
25
  BUNDLED WITH
26
- 1.17.2
26
+ 2.1.4
data/README.md CHANGED
@@ -1,16 +1,13 @@
1
- - [![Downloads](https://img.shields.io/gem/dt/traquitana.svg)](https://rubygems.org/gems/traquitana)
2
- - [![Version](https://img.shields.io/gem/v/traquitana.svg)](https://rubygems.org/gems/traquitana)
3
- - [![License](https://img.shields.io/badge/license-GPLV2-brightgreen.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
1
+ [![Downloads](https://img.shields.io/gem/dt/traquitana.svg)](https://rubygems.org/gems/traquitana)
2
+ [![Version](https://img.shields.io/gem/v/traquitana.svg)](https://rubygems.org/gems/traquitana)
3
+ [![License](https://img.shields.io/badge/license-GPLV2-brightgreen.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
4
4
 
5
5
  # Traquitana
6
6
 
7
7
  This project is a collection of scripts I used before met Capistrano and the
8
- other tools to do that.
9
- It send some files from your local Rails app directory to a production remote
10
- server, using some
11
- default libs on Ruby like net/ssh and net/scp, and rubyzip to zip all the files
12
- and try to make
13
- things faster.
8
+ other tools to do that. It send some files from your local Rails app directory
9
+ to a production remote server, using some default libs on Ruby like net/ssh and
10
+ net/scp, and rubyzip to zip all the files and try to make things faster.
14
11
 
15
12
  It was made to run on GNU/Linux, but should work on similar systems.
16
13
 
@@ -18,15 +15,21 @@ It was made to run on GNU/Linux, but should work on similar systems.
18
15
 
19
16
  Add this line to your application's Gemfile:
20
17
 
21
- gem 'traquitana'
18
+ ```
19
+ gem 'traquitana'
20
+ ```
22
21
 
23
22
  And then execute:
24
23
 
25
- $ bundle
24
+ ```
25
+ $ bundle
26
+ ```
26
27
 
27
28
  Or install it yourself as:
28
29
 
29
- $ gem install traquitana
30
+ ```
31
+ $ gem install traquitana
32
+ ```
30
33
 
31
34
  ## Usage
32
35
 
@@ -44,8 +47,10 @@ Or install it yourself as:
44
47
 
45
48
  On the list can have two elements by row, like:
46
49
 
47
- - - public/images/**/*
48
- - public/images/uploads/**/*
50
+ ```
51
+ - - public/images/**/*
52
+ - public/images/uploads/**/*
53
+ ```
49
54
 
50
55
  On this example, all below public/images will be send BUT ignoring what is on
51
56
  public/images/uploads. This is a way to make sure you'll not overwrite some
@@ -60,7 +65,7 @@ Or install it yourself as:
60
65
  specify any tags. Take a look on the custom.yml file provided and use
61
66
  -t or --target <target>.
62
67
 
63
- - Run traq (just type traq).
68
+ - Run traq (just type `traq`).
64
69
  - It will search for changed files
65
70
  - Will create a list with the file names found
66
71
  - Will zíp the files.
@@ -85,17 +90,27 @@ break something.
85
90
 
86
91
  There are some command line options:
87
92
 
88
- * -f or --file <file> - specify the config file path
89
- * -v or --version - show current version
90
- * -c or --cleanup - clean old versions backups stored on the remote host
91
- * -v or --verbose - be verbose while running
92
- * -t or --target <target> - specify which target will be loaded on the config file
93
+ * `-f` or `--file <file>` - specify the config file path
94
+ * `-v` or `--version` - show current version
95
+ * `-c` or `--cleanup` - clean old versions backups stored on the remote host
96
+ * `-v` or `--verbose` - be verbose while running
97
+ * `-t` or `--target <target>` - specify which target will be loaded on the config file
98
+
99
+ ## Drawbacks
100
+
101
+ As we're sending the local files to the server, if you deleted some file from
102
+ your local repository, **it will not be deleted from your server**, so, you'll
103
+ need to take care of this by yourself. I was inclined to check for the deleted
104
+ files on the file list sent to the server, comparing with the local files there,
105
+ and then delete the files, but I think file deletion could be a little more
106
+ invasive than I'd would like about how this gem works. Maybe on future I can
107
+ change my mind.
93
108
 
94
109
  ## Contributing
95
110
 
96
111
  1. Fork it
97
112
  2. Create your feature branch (`git checkout -b my-new-feature`)
98
- 3. Test it! Run `$ rake test`. You need `minitest` and `minitest-focus`.
113
+ 3. Test it! Run `$ rake test`. You'll need `minitest` and `minitest-focus`.
99
114
  4. Commit your changes (`git commit -am 'Added some feature'`)
100
115
  5. Push to the branch (`git push origin my-new-feature`)
101
116
  6. Create new Pull Request
data/config/custom.yml CHANGED
@@ -1,5 +1,5 @@
1
- # Default configuration
2
- default:
1
+ # This is the default configuration, created by the traq setup command
2
+ default: &default
3
3
  directory: /tmp/traq_test
4
4
  user: taq
5
5
  list:
@@ -25,28 +25,13 @@ default:
25
25
  host: localhost
26
26
  server: passenger
27
27
  shell: bash -l -c
28
+
29
+ # This is a custom configuration to be used wit -t or --target option.
30
+ # It inherits all the default configs, just changing the directory.
31
+ # It can be used like:
32
+ # $ traq -t custom
33
+ # or
34
+ # $ traq --target custom
28
35
  custom:
36
+ <<: *default
29
37
  directory: /tmp/traq_test_custom
30
- user: taq
31
- list:
32
- - Rakefile
33
- - config.ru
34
- - Gemfile
35
- - - config/application.rb
36
- - - config/environment.rb
37
- - - config/initializers/**/*
38
- - - config/environments/production.rb
39
- - - config/locales/**/*
40
- - - config/routes.rb
41
- - - config/storage.yml
42
- - - app/**/*
43
- - - db/migrate/**/*
44
- - - public/javascripts/**/*
45
- - - public/stylesheets/**/*
46
- - - lib/**/*
47
- - - bin/**/*
48
- - - public/images/**/*
49
- - public/images/uploads/**/*
50
- password: fill your password here
51
- host: localhost
52
- shell: bash -l -c
data/config/default.yml CHANGED
@@ -1,35 +1,38 @@
1
1
  # Default configuration---
2
- directory: /tmp/traq_test
3
- user: taq
4
- list:
2
+ :version: 0.1.7
3
+ :directory: /tmp/traq_test
4
+ :ignore: 24
5
+ :user: taq
6
+ :list:
5
7
  - Rakefile
6
8
  - config.ru
7
9
  - Gemfile
10
+ - package.json
11
+ - babel.config.js
12
+ - postcss.config.js
8
13
  - - config/application.rb
9
14
  - - config/environment.rb
10
15
  - - config/initializers/**/*
11
16
  - - config/environments/production.rb
12
17
  - - config/locales/**/*
13
18
  - - config/routes.rb
14
- - - config/boot.rb
15
- - - config/database.yml
16
- - - config/secrets.yml
17
19
  - - config/storage.yml
20
+ - - config/webpacker.yml
21
+ - - config/webpack/environment.js
22
+ - - config/webpack/production.js
18
23
  - - app/**/*
19
24
  - - db/migrate/**/*
20
- - - db/seeds.rb
25
+ - - public/javascripts/**/*
26
+ - - public/stylesheets/**/*
21
27
  - - public/404.html
22
28
  - - public/422.html
23
29
  - - public/500.html
24
30
  - - public/favicon.ico
25
31
  - - public/robots.txt
26
- - - public/javascripts/**/*
27
- - - public/stylesheets/**/*
28
32
  - - lib/**/*
29
- - - bin/**/*
30
33
  - - public/images/**/*
31
34
  - public/images/uploads/**/*
32
- password: fill your password here
33
- host: localhost
34
- server: passenger
35
- shell: bash -l -c
35
+ :password: fill your password here
36
+ :host: localhost
37
+ :server: passenger
38
+ :shell: bash -l -c
data/config/proc.sh CHANGED
@@ -202,6 +202,47 @@ function sanity_check() {
202
202
  fi
203
203
  }
204
204
 
205
+ function activate_gems() {
206
+ msg "Activating gems on $(pwd) ..."
207
+
208
+ local GEMFILE_VERSION=""
209
+
210
+ if [ -z "$GEMFILE_VERSION" ] && [ -f Gemfile ]; then
211
+ msg "Trying find Ruby version on Gemfile ..."
212
+ GEMFILE_VERSION=$(grep -e "^ruby" Gemfile | cut -f2 -d' ' | tr -d "'")
213
+ fi
214
+
215
+ if [ -z "$GEMFILE_VERSION" ] && [ -f .ruby-version ]; then
216
+ msg "Trying find Ruby version on .ruby-version file ..."
217
+ GEMFILE_VERSION=$(cat .ruby-version)
218
+ fi
219
+
220
+ if [ -z "$GEMFILE_VERSION" ]; then
221
+ msg "\e[31mCould not determine Ruby version.\e[0m"
222
+ return
223
+ fi
224
+
225
+ local PROVIDER=$(gem_provider)
226
+ local RVM_LOCAL=$HOME/.rvm/scripts/rvm
227
+ local RVM_SYSTEM=/usr/local/rvm/scripts/rvm
228
+ local RVM_SOURCE=""
229
+
230
+ if [ "$PROVIDER" == "rvm" ]; then
231
+ msg "Activating $GEMFILE_VERSION on RVM ..."
232
+
233
+ if [ -f "$RVM_LOCAL" ]; then
234
+ msg "Activating local RVM ..."
235
+ RVM_SOURCE="$RVM_LOCAL"
236
+ else
237
+ msg "Activating system RVM ..."
238
+ RVM_SOURCE="$RVM_SYSTEM"
239
+ fi
240
+
241
+ source "$RVM_SOURCE"
242
+ rvm $GEMFILE_VERSION
243
+ fi
244
+ }
245
+
205
246
  # force the production enviroment
206
247
  export RAILS_ENV=production
207
248
 
@@ -258,6 +299,7 @@ safe_copy "${config_id}"
258
299
 
259
300
  # here is where things happens on the server
260
301
  install_new_files "${config_id}"
302
+ activate_gems
261
303
  fix_gems
262
304
  createdb
263
305
  channels
data/gem-public_cert.pem CHANGED
@@ -1,26 +1,26 @@
1
1
  -----BEGIN CERTIFICATE-----
2
2
  MIIEVjCCAr6gAwIBAgIBATANBgkqhkiG9w0BAQsFADAqMSgwJgYDVQQDDB9ldXN0
3
- YXF1aW9yYW5nZWwvREM9Z21haWwvREM9Y29tMB4XDTE5MTEyNzEzMDUyNVoXDTIw
4
- MTEyNjEzMDUyNVowKjEoMCYGA1UEAwwfZXVzdGFxdWlvcmFuZ2VsL0RDPWdtYWls
5
- L0RDPWNvbTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBAL0m1eB2AEOm
6
- l/LHYuLDv05uoaiJaoHRdDcxnATueUGVbGn97fiv1+d2xoXF66a3gww3Apn6vpTY
7
- x4aTH11NVNdu9m5MGgHPiIqp8rNtyDt538OncgaTGKLOjUZW8jHGxk1/9y22gBYn
8
- XCbLfIciPVOZV39hL5JHdy8obezijs+4TsUE8S5uFyiYGIL1eARyxPWWUENW9x2x
9
- scEAW89hJ4tV+49I1UIqfIMKJb7dStiQM+HlBzNf7GkTwzaETHZEyCa7LdfiPI/s
10
- iwW/mSoJx5997j6twsIKBVifYk/MEQjQkaLymgYu3CJ7qMaBGYAAJDZGATYt3SvC
11
- HMTYhvG7qvbHtBWMeRwvSqNfsj39o59HL53H2G+jfNKpjb/TfRsBBzdGXobFLcH0
12
- w91+QoFCquN0aNL6IRSY6hIwinIGGuggWEwp5jmPcYjav0I3tszV5iSxXreURX8S
13
- KP+FR/LVd9lgeiNEcmpdkbNoQ1dd7RrRfFVOEcrqaiScRsCCZnMoHQIDAQABo4GG
14
- MIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRjzyGZfZ3j8BiB
15
- +cEsJb0Lg6tz3jAkBgNVHREEHTAbgRlldXN0YXF1aW9yYW5nZWxAZ21haWwuY29t
3
+ YXF1aW9yYW5nZWwvREM9Z21haWwvREM9Y29tMB4XDTIxMDEwNTE1MTMzNFoXDTIy
4
+ MDEwNTE1MTMzNFowKjEoMCYGA1UEAwwfZXVzdGFxdWlvcmFuZ2VsL0RDPWdtYWls
5
+ L0RDPWNvbTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBAKBL7R3l8n3I
6
+ RXuw3CvEa/fDbd1//jFhfXwow41Mo4fQMuccm9fYs/kTZ4+06zv0ALlQtu5tsD6A
7
+ An9uR3d91VKN+M5mSK3lQF4FgsWqyU3kJ7qqWhWjylTyYBqku5RJINdFU6lkk/9Y
8
+ jxaCkOETfmzKUbfLV0+qrOvDsOzyoOv7HGJORjIy4NWfxu8mwDbhogyq4h81MCLC
9
+ EIvp5LdfpbgahPsPdqvQO868oUmxN+U+ZTXfRwrcyrC8bjaURS0jPW8PWQCjsfO9
10
+ L/viUwHlHUDVY/iT2kvSuZrCdhRVPt9QikdLGbze+YkdNkOXfR6EQjxRmg4OQjs9
11
+ DvMbS6D2Zd6VK6PXFLqDA6BrLFqK6Zvr87xVmxDIZ/WN63PjgNCMEFb5ZKzy2hix
12
+ N5f2pQDcdoR1m5psHoKe4nCPc/vFnYsTbfcbcF5+vV7+EgmTmSWyhei09eytrz/5
13
+ FLn0Pizaffk1DFHg68fl/b6QrsfmRRJCr4hrwGlUl+6eDUdxUktW2wIDAQABo4GG
14
+ MIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQeQRJ+Zb0whKTS
15
+ 5l+2kfAZROALwzAkBgNVHREEHTAbgRlldXN0YXF1aW9yYW5nZWxAZ21haWwuY29t
16
16
  MCQGA1UdEgQdMBuBGWV1c3RhcXVpb3JhbmdlbEBnbWFpbC5jb20wDQYJKoZIhvcN
17
- AQELBQADggGBAHuTzyu0cDGVRsONr7PgY9eahH0ZGy/bdrk0FO0RpAOXayjsmmL2
18
- Ouoi8VbWRzVtDvbQdU4bcsUnWkOMLImhlLs1VKAhOVxnV0ZGdyNQfLV1SXMAJkgc
19
- AI7ClhA1YVBO70NaOyJPjaXs+lc4PltdEF59+YDCIVjAAoQd31F7x+eO2pjr+Mu1
20
- yH5aCyn1BwklE7TF8076SZK4MNLeD/KD3whOjL0k1xeQqAqaImf+oxDbhU3tJCEd
21
- dfcBNOr98LHzsGEYQRB24Ksnw7dcEqWs/trbJrgA7lX2/8TAch5fSLgVDQwSLPk7
22
- E34l4xf0bry+lF2zuD15Mps1ZDxJhKcgDWNg82huuVh1zqzNYqgWB1hYPBehhXGo
23
- NdMU5fm01/k08H5psRBGWS/EcpX063ll3qcOGVqbPPH2U3LCYzWww+2PdslwJo/c
24
- uek3m7n2XoRODoAGEm3apnmP8WWMEmI0tXdsvDBwoNVXEMkFnxD+RIMQPW22r3ZL
25
- waOiThAR0oxaTQ==
17
+ AQELBQADggGBAF60gRzDOWc7B6g4jQzR2Bi90pVSfUXRCkODqCaosSET18pXu63G
18
+ mXh4ACRSKMM3X6Cj2uDQEhrvWnxt0R5P1TD6G3uOXGzMAmihPVyCJyUCFwuxAt9V
19
+ GLCyn2Ti9MIT0FyujhEXSQdJjAyuDGtEkO2LIKBJ+CIbG68FBqc1k+UwPQiNJCgE
20
+ s3Fsha0Wv75uupzqu57FHXHSjdnBNeQHfdC+Ma8VIlWdKxfcxZKOEL589tnJTJHF
21
+ IRNTTxZFwTTvZy2aSvBb73m+clb36mlGO3emb/S3WMu2oOlmorHD4CAbyZjPTwIs
22
+ zYVH+Nlf2O8Li2j3QNGL0r2MNCJWeuhB23IOoL60AaxvpyHAbWnfOpqidQU1Zwpg
23
+ cXxQcroczXGs/RH1diJes5AihU97po1EVyVpxjkyiVZxd0fl+r3OR7iYSSNMrdpH
24
+ Ey5t62RSM7fM69lDtUa1Jmv/CCRAeeY4TQUFwDrnNYhxQshCWcrFWQMb4ExJtwbC
25
+ iQ4FrdvzJJS+rA==
26
26
  -----END CERTIFICATE-----
@@ -1,3 +1,3 @@
1
1
  module Traquitana
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.7"
3
3
  end
data/spec/config/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
+ ruby '2.7.2'
4
+
3
5
  gem 'memoize'
4
6
  gem 'rake'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: traquitana
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eustaquio Rangel
@@ -11,31 +11,31 @@ cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
13
  MIIEVjCCAr6gAwIBAgIBATANBgkqhkiG9w0BAQsFADAqMSgwJgYDVQQDDB9ldXN0
14
- YXF1aW9yYW5nZWwvREM9Z21haWwvREM9Y29tMB4XDTE5MTEyNzEzMDUyNVoXDTIw
15
- MTEyNjEzMDUyNVowKjEoMCYGA1UEAwwfZXVzdGFxdWlvcmFuZ2VsL0RDPWdtYWls
16
- L0RDPWNvbTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBAL0m1eB2AEOm
17
- l/LHYuLDv05uoaiJaoHRdDcxnATueUGVbGn97fiv1+d2xoXF66a3gww3Apn6vpTY
18
- x4aTH11NVNdu9m5MGgHPiIqp8rNtyDt538OncgaTGKLOjUZW8jHGxk1/9y22gBYn
19
- XCbLfIciPVOZV39hL5JHdy8obezijs+4TsUE8S5uFyiYGIL1eARyxPWWUENW9x2x
20
- scEAW89hJ4tV+49I1UIqfIMKJb7dStiQM+HlBzNf7GkTwzaETHZEyCa7LdfiPI/s
21
- iwW/mSoJx5997j6twsIKBVifYk/MEQjQkaLymgYu3CJ7qMaBGYAAJDZGATYt3SvC
22
- HMTYhvG7qvbHtBWMeRwvSqNfsj39o59HL53H2G+jfNKpjb/TfRsBBzdGXobFLcH0
23
- w91+QoFCquN0aNL6IRSY6hIwinIGGuggWEwp5jmPcYjav0I3tszV5iSxXreURX8S
24
- KP+FR/LVd9lgeiNEcmpdkbNoQ1dd7RrRfFVOEcrqaiScRsCCZnMoHQIDAQABo4GG
25
- MIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRjzyGZfZ3j8BiB
26
- +cEsJb0Lg6tz3jAkBgNVHREEHTAbgRlldXN0YXF1aW9yYW5nZWxAZ21haWwuY29t
14
+ YXF1aW9yYW5nZWwvREM9Z21haWwvREM9Y29tMB4XDTIxMDEwNTE1MTMzNFoXDTIy
15
+ MDEwNTE1MTMzNFowKjEoMCYGA1UEAwwfZXVzdGFxdWlvcmFuZ2VsL0RDPWdtYWls
16
+ L0RDPWNvbTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoCggGBAKBL7R3l8n3I
17
+ RXuw3CvEa/fDbd1//jFhfXwow41Mo4fQMuccm9fYs/kTZ4+06zv0ALlQtu5tsD6A
18
+ An9uR3d91VKN+M5mSK3lQF4FgsWqyU3kJ7qqWhWjylTyYBqku5RJINdFU6lkk/9Y
19
+ jxaCkOETfmzKUbfLV0+qrOvDsOzyoOv7HGJORjIy4NWfxu8mwDbhogyq4h81MCLC
20
+ EIvp5LdfpbgahPsPdqvQO868oUmxN+U+ZTXfRwrcyrC8bjaURS0jPW8PWQCjsfO9
21
+ L/viUwHlHUDVY/iT2kvSuZrCdhRVPt9QikdLGbze+YkdNkOXfR6EQjxRmg4OQjs9
22
+ DvMbS6D2Zd6VK6PXFLqDA6BrLFqK6Zvr87xVmxDIZ/WN63PjgNCMEFb5ZKzy2hix
23
+ N5f2pQDcdoR1m5psHoKe4nCPc/vFnYsTbfcbcF5+vV7+EgmTmSWyhei09eytrz/5
24
+ FLn0Pizaffk1DFHg68fl/b6QrsfmRRJCr4hrwGlUl+6eDUdxUktW2wIDAQABo4GG
25
+ MIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQeQRJ+Zb0whKTS
26
+ 5l+2kfAZROALwzAkBgNVHREEHTAbgRlldXN0YXF1aW9yYW5nZWxAZ21haWwuY29t
27
27
  MCQGA1UdEgQdMBuBGWV1c3RhcXVpb3JhbmdlbEBnbWFpbC5jb20wDQYJKoZIhvcN
28
- AQELBQADggGBAHuTzyu0cDGVRsONr7PgY9eahH0ZGy/bdrk0FO0RpAOXayjsmmL2
29
- Ouoi8VbWRzVtDvbQdU4bcsUnWkOMLImhlLs1VKAhOVxnV0ZGdyNQfLV1SXMAJkgc
30
- AI7ClhA1YVBO70NaOyJPjaXs+lc4PltdEF59+YDCIVjAAoQd31F7x+eO2pjr+Mu1
31
- yH5aCyn1BwklE7TF8076SZK4MNLeD/KD3whOjL0k1xeQqAqaImf+oxDbhU3tJCEd
32
- dfcBNOr98LHzsGEYQRB24Ksnw7dcEqWs/trbJrgA7lX2/8TAch5fSLgVDQwSLPk7
33
- E34l4xf0bry+lF2zuD15Mps1ZDxJhKcgDWNg82huuVh1zqzNYqgWB1hYPBehhXGo
34
- NdMU5fm01/k08H5psRBGWS/EcpX063ll3qcOGVqbPPH2U3LCYzWww+2PdslwJo/c
35
- uek3m7n2XoRODoAGEm3apnmP8WWMEmI0tXdsvDBwoNVXEMkFnxD+RIMQPW22r3ZL
36
- waOiThAR0oxaTQ==
28
+ AQELBQADggGBAF60gRzDOWc7B6g4jQzR2Bi90pVSfUXRCkODqCaosSET18pXu63G
29
+ mXh4ACRSKMM3X6Cj2uDQEhrvWnxt0R5P1TD6G3uOXGzMAmihPVyCJyUCFwuxAt9V
30
+ GLCyn2Ti9MIT0FyujhEXSQdJjAyuDGtEkO2LIKBJ+CIbG68FBqc1k+UwPQiNJCgE
31
+ s3Fsha0Wv75uupzqu57FHXHSjdnBNeQHfdC+Ma8VIlWdKxfcxZKOEL589tnJTJHF
32
+ IRNTTxZFwTTvZy2aSvBb73m+clb36mlGO3emb/S3WMu2oOlmorHD4CAbyZjPTwIs
33
+ zYVH+Nlf2O8Li2j3QNGL0r2MNCJWeuhB23IOoL60AaxvpyHAbWnfOpqidQU1Zwpg
34
+ cXxQcroczXGs/RH1diJes5AihU97po1EVyVpxjkyiVZxd0fl+r3OR7iYSSNMrdpH
35
+ Ey5t62RSM7fM69lDtUa1Jmv/CCRAeeY4TQUFwDrnNYhxQshCWcrFWQMb4ExJtwbC
36
+ iQ4FrdvzJJS+rA==
37
37
  -----END CERTIFICATE-----
38
- date: 2019-11-27 00:00:00.000000000 Z
38
+ date: 2021-07-21 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: highline
@@ -170,7 +170,6 @@ files:
170
170
  - spec/network_spec.rb
171
171
  - spec/packager_spec.rb
172
172
  - spec/selector_spec.rb
173
- - traq/config.yml
174
173
  - traquitana.gemspec
175
174
  homepage: http://github.com/taq/traquitana
176
175
  licenses:
@@ -191,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
191
190
  - !ruby/object:Gem::Version
192
191
  version: '0'
193
192
  requirements: []
194
- rubygems_version: 3.0.3
193
+ rubygems_version: 3.1.4
195
194
  signing_key:
196
195
  specification_version: 4
197
196
  summary: Just a simple tool to deploy Rails apps with SSH and some shell scripts
metadata.gz.sig CHANGED
Binary file
data/traq/config.yml DELETED
@@ -1,31 +0,0 @@
1
- # Default configuration---
2
- :directory: /tmp/traq_test
3
- :ignore: 24
4
- :user: taq
5
- :list:
6
- - Rakefile
7
- - config.ru
8
- - Gemfile
9
- - - config/application.rb
10
- - - config/environment.rb
11
- - - config/initializers/**/*
12
- - - config/environments/production.rb
13
- - - config/locales/**/*
14
- - - config/routes.rb
15
- - - config/storage.yml
16
- - - app/**/*
17
- - - db/migrate/**/*
18
- - - public/javascripts/**/*
19
- - - public/stylesheets/**/*
20
- - - public/404.html
21
- - - public/422.html
22
- - - public/500.html
23
- - - public/favicon.ico
24
- - - public/robots.txt
25
- - - lib/**/*
26
- - - public/images/**/*
27
- - public/images/uploads/**/*
28
- :password: fill your password here
29
- :host: localhost
30
- :server: passenger
31
- :shell: bash -l -c