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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Gemfile.lock +6 -6
- data/README.md +36 -21
- data/config/custom.yml +10 -25
- data/config/default.yml +17 -14
- data/config/proc.sh +42 -0
- data/gem-public_cert.pem +22 -22
- data/lib/traquitana/version.rb +1 -1
- data/spec/config/Gemfile +2 -0
- metadata +25 -26
- metadata.gz.sig +0 -0
- data/traq/config.yml +0 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c63d7ffa54f490f69e986477bc7d13bcb571d521a29f6b3b5c1f4910f1fc884c
|
4
|
+
data.tar.gz: cd05def258dfb681b4bc12eb4def2d2dc7b463ec6f5323cfa7db3e700b561d65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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 (
|
15
|
-
net-ssh (>= 2.6.5, <
|
16
|
-
net-ssh (
|
17
|
-
rubyzip (2.
|
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.
|
26
|
+
2.1.4
|
data/README.md
CHANGED
@@ -1,16 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
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
|
-
|
10
|
-
|
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
|
-
|
18
|
+
```
|
19
|
+
gem 'traquitana'
|
20
|
+
```
|
22
21
|
|
23
22
|
And then execute:
|
24
23
|
|
25
|
-
|
24
|
+
```
|
25
|
+
$ bundle
|
26
|
+
```
|
26
27
|
|
27
28
|
Or install it yourself as:
|
28
29
|
|
29
|
-
|
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
|
-
|
48
|
-
|
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
|
-
*
|
89
|
-
*
|
90
|
-
*
|
91
|
-
*
|
92
|
-
*
|
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
|
-
#
|
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
|
-
|
3
|
-
|
4
|
-
|
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
|
-
- -
|
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
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
+
|
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
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
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-----
|
data/lib/traquitana/version.rb
CHANGED
data/spec/config/Gemfile
CHANGED
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.
|
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
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
+
|
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
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
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:
|
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.
|
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
|