renuo-cli 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -1
- data/Gemfile.lock +1 -1
- data/lib/renuo/cli/app/migrate_to_github.rb +13 -0
- data/lib/renuo/cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29c40692f4c2040eb3de9f1b9c11853b866b4c6d
|
4
|
+
data.tar.gz: 0ac2f2d4c94e10222f9e40c6649b9093d033bfa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10ed2206b5c7321deebbbbe301dd5af5eaf895c8c497e629ce2fec8484d20e5eb3fb3ef3c18f4cf7c1395bff7ba4c4b5c33d7072bd4fe834cb4b336bd0ff2869
|
7
|
+
data.tar.gz: 9a223df2f0ff99509840e9095df7a331d4cc5ac5aebc9ccd48d69dc9ad2e77919dda02ac8203253c8ded83becd3cc1f23902ee7ed38ad7a0ebaef7f635d05ef8
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -13,6 +13,7 @@ class MigrateToGithub
|
|
13
13
|
repo_settings
|
14
14
|
check_deploy
|
15
15
|
rename_repo
|
16
|
+
replace_other_old_links
|
16
17
|
setup_ci
|
17
18
|
congrats
|
18
19
|
end
|
@@ -116,6 +117,18 @@ class MigrateToGithub
|
|
116
117
|
`open https://git.renuo.ch/renuo/#{@project_name}/edit`
|
117
118
|
end
|
118
119
|
|
120
|
+
def replace_other_old_links
|
121
|
+
say('Now let\'s replace other old links in the repo!')
|
122
|
+
agree('Ready?')
|
123
|
+
`open https://github.com/renuo/#{@project_name}/search?utf8=%E2%9C%93&q=git.renuo.ch`
|
124
|
+
say('Replace all those links!')
|
125
|
+
agree('Ready?')
|
126
|
+
say('Now let\'s replace other old links in the wiki!')
|
127
|
+
`open https://redmine.renuo.ch/search?q=git.renuo.ch/renuo/#{@project_name}&wiki_pages=1&attachments=0&options=0`
|
128
|
+
say('Replace all those links!')
|
129
|
+
agree('Ready?')
|
130
|
+
end
|
131
|
+
|
119
132
|
def setup_ci
|
120
133
|
say('One last thing: CI')
|
121
134
|
say('Find your CI script on the old CI:')
|
data/lib/renuo/cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: renuo-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lukas Elmer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|