ghedsh 1.1.17 → 1.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +34 -0
- data/lib/actions/system.rb +1 -1
- data/lib/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: 91a1e576e6021caa23fa8bef97618f99a7017439
|
4
|
+
data.tar.gz: 6f8a0652306828dffcc67b3989e2bba7fb3a2b57
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aecbf58f1241fc1b164c9852f46f38020ffa103a4ce565421d306f756c3a7c91da02d870ed3ce979c058844bae4baa34141020014fd0234ea6413e43ee28228a
|
7
|
+
data.tar.gz: 10e5efc84821088d236fd0c4e7055d6f76c08394d57a455e1bab8f4f3ee30382ff04a6295fe2acaec40eb38b7ed5426f83dc6fd8446c11794fcd5a5c825fa754
|
data/README.md
CHANGED
@@ -101,6 +101,11 @@ new_team <nombre> <miembro1> <miembro2> ...
|
|
101
101
|
```
|
102
102
|
Crea un equipo a al que le sera asignado uno o varios miembros de la organizacion.
|
103
103
|
|
104
|
+
```sh
|
105
|
+
rm_team <nombre> <miembro1> <miembro2> ...
|
106
|
+
```
|
107
|
+
Borra un equipo de una organizacion.
|
108
|
+
|
104
109
|
```sh
|
105
110
|
add_to_team <miembro1> <miembro2> ...
|
106
111
|
```
|
@@ -112,11 +117,26 @@ new_group <nombre> <equipo1> <equipo2> ...
|
|
112
117
|
```
|
113
118
|
Dentro de una organizacion, crea grupos donde asignar equipos de trabajo.
|
114
119
|
|
120
|
+
```sh
|
121
|
+
rm_group <nombre> <equipo1> <equipo2> ...
|
122
|
+
```
|
123
|
+
Dentro de una organizacion, borra un grupo de trabajo.
|
124
|
+
|
115
125
|
```sh
|
116
126
|
groups
|
117
127
|
```
|
118
128
|
Muestra los grupos de equipos de una organizacion.
|
119
129
|
|
130
|
+
```sh
|
131
|
+
assignments
|
132
|
+
```
|
133
|
+
Muestra las tareas o asignaciones hechas para una organizacion.
|
134
|
+
|
135
|
+
```sh
|
136
|
+
new_assignment <nombre>
|
137
|
+
```
|
138
|
+
Crea una assignacion para una organizacion. Espera por parametro el nombre. Tras ejecutar el comando pedira un repositorio ya existente, la creacion de uno nuevo o la no insercion de un repositorio. Ademas esperara una lista de grupos para asignar a la tarea.
|
139
|
+
|
120
140
|
```sh
|
121
141
|
clone <nombre>
|
122
142
|
```
|
@@ -147,6 +167,20 @@ issues
|
|
147
167
|
```
|
148
168
|
Muestra los issues del repositorio en el que se encuentre el usuario.
|
149
169
|
|
170
|
+
```sh
|
171
|
+
new_issue <nombre>
|
172
|
+
```
|
173
|
+
Crea un nuevo issue estando situado en un repositorio especifico. El titulo sera dado por parametro, y la descripcion sera introducida tras ejecutar el comando.
|
174
|
+
|
175
|
+
```sh
|
176
|
+
close_issue <id>
|
177
|
+
```
|
178
|
+
Cierra un issue especifico dentro de un repositorio. Se debe especificar el issue mediante la id del mismo.
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
|
150
184
|
|
151
185
|
##Aditional information
|
152
186
|
[GHEDSH extended info](https://alu0100505023.gitbooks.io/ghedsh/content/en/)
|
data/lib/actions/system.rb
CHANGED
@@ -10,7 +10,7 @@ class Sys
|
|
10
10
|
attr_reader :client
|
11
11
|
attr_reader :memory
|
12
12
|
LIST = ['repos', 'exit', 'orgs','help', 'people','teams', 'cd ', 'cd repo ','commits','forks', 'add_team_member ','new_team ','rm_team ','new_repository ','new_assignment ','clone ', 'issues',
|
13
|
-
'version', 'cat ', 'groups', 'files', 'assignments', 'new_group ', 'do '].sort
|
13
|
+
'version', 'cat ', 'groups', 'files', 'assignments','new_issue ', 'open_issue', 'new_','open_', 'new_group ', 'rm_group', 'rm_', 'do '].sort
|
14
14
|
|
15
15
|
def initialize()
|
16
16
|
@memory=[]
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ghedsh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Javier Clemente
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-06-
|
12
|
+
date: 2016-06-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: octokit
|