documentator 0.0.2 → 0.0.3
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b963ef4ea1b4cde6792411d46cba1b3bc967f75
|
4
|
+
data.tar.gz: 7df81ea85e431d434ba3eb5c176bd8c6128e9579
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f00c4c845426e9ac25f8dc694074bcd30e3b06c6fae96a245dd5e9808c9117ad16b1bb33095997657dbc2b61c99559087ff8c9c830ee5aa01a5cee23d232e74f
|
7
|
+
data.tar.gz: a0be1033c8d0f97d1aac90cb3c71c011e5f7bb156d16ca000d10792083e0b694706f97c0749a5ceabce7a820c6df127e6a6b7f0e0e4cdda8a6d13b69e3454886
|
data/README.md
CHANGED
@@ -208,6 +208,10 @@ Ses principales limitations :
|
|
208
208
|
La gem [stretcher](https://github.com/PoseBiz/stretcher) est née récemment en
|
209
209
|
réaction à nombre de ces points. C'est une alternative récente à étudier.
|
210
210
|
|
211
|
+
Autres alternatives :
|
212
|
+
* [rubberband](https://github.com/grantr/rubberband)
|
213
|
+
* [elastictastic](https://github.com/brewster/elastictastic)
|
214
|
+
|
211
215
|
Sinon, il peut être tout aussi intéressant de se faire soi-même un client
|
212
216
|
Elasticsearch. (Pour de meilleurs performances, ne pas oublier d'utiliser une
|
213
217
|
connexion HTTP persistante.)
|
@@ -217,10 +221,17 @@ connexion HTTP persistante.)
|
|
217
221
|
|
218
222
|
### Librairies
|
219
223
|
|
220
|
-
* Ruby
|
221
|
-
|
224
|
+
* Ruby
|
225
|
+
|
226
|
+
* [desi](https://github.com/AF83/desi)
|
227
|
+
* [tire](https://github.com/karmi/tire)
|
228
|
+
* [stretcher](https://github.com/PoseBiz/stretcher)
|
229
|
+
* [rubberband](https://github.com/grantr/rubberband)
|
230
|
+
* [elastictastic](https://github.com/brewster/elastictastic)
|
231
|
+
|
232
|
+
* Javascript
|
222
233
|
|
223
|
-
*
|
234
|
+
* [elastic.js](https://github.com/fullscale/elastic.js)
|
224
235
|
|
225
236
|
|
226
237
|
### Outils en ligne de commande
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# Postgresql
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
### Debian
|
6
|
+
|
7
|
+
En tant que root:
|
8
|
+
|
9
|
+
``` bash
|
10
|
+
aptitude install postgresql postgresql-server-dev-9.1 postgresql-client
|
11
|
+
libpq-dev
|
12
|
+
```
|
13
|
+
|
14
|
+
Une fois postgresql installé, il faut créer un nouvel utilisateur:
|
15
|
+
|
16
|
+
``` bash
|
17
|
+
su postgres
|
18
|
+
createuser username
|
19
|
+
exit
|
20
|
+
```
|
21
|
+
|
22
|
+
Puis éditer le fichier `/etc/postgresql/9.1/main/pg_hba.conf` pour autoriser les
|
23
|
+
utilisateurs non-unix à s'authentifier.
|
24
|
+
|
25
|
+
Pour cela, il faut changer `peer` en `trust`:
|
26
|
+
|
27
|
+
```
|
28
|
+
# TYPE DATABASE USER ADDRESS METHOD
|
29
|
+
|
30
|
+
# "local" is for Unix domain socket connections only
|
31
|
+
local all all trust
|
32
|
+
```
|
33
|
+
|
34
|
+
Finalement, redémarrer postgresql:
|
35
|
+
|
36
|
+
``` bash
|
37
|
+
/etc/init.d/postgresql restart
|
38
|
+
```
|
data/lib/documentator/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: documentator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- chatgris
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: boson
|
@@ -50,7 +50,7 @@ files:
|
|
50
50
|
- lib/documentator/templates/grunt.md
|
51
51
|
- lib/documentator/templates/mongodb.md
|
52
52
|
- lib/documentator/templates/neo4j.md
|
53
|
-
- lib/documentator/templates/
|
53
|
+
- lib/documentator/templates/postgresql.md
|
54
54
|
- lib/documentator/templates/ruby.md
|
55
55
|
- lib/documentator/version.rb
|
56
56
|
homepage: https://github.com/AF83/documentator
|
File without changes
|