documentator 0.0.2 → 0.0.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 904490606b2d529b0be6d6eae6dab86bc616135b
4
- data.tar.gz: eb839473523c14b243ac521f109dcae44da0a2cf
3
+ metadata.gz: 9b963ef4ea1b4cde6792411d46cba1b3bc967f75
4
+ data.tar.gz: 7df81ea85e431d434ba3eb5c176bd8c6128e9579
5
5
  SHA512:
6
- metadata.gz: f37a2c94807676a41a8bba2af9961803ee116389f35cf522b3e7c8ec5934a43df62d111994160926e7e6938be2f44da0b530e82e42d5f70860703f6389711c91
7
- data.tar.gz: 9a39379069e0ea1dc7de17bb58b8c31021b94ab37bb84c42b281409e0678dbe982821236c6b821bf93271bdce8025d6824ec777be13dc36eb9c3f511a117e05b
6
+ metadata.gz: f00c4c845426e9ac25f8dc694074bcd30e3b06c6fae96a245dd5e9808c9117ad16b1bb33095997657dbc2b61c99559087ff8c9c830ee5aa01a5cee23d232e74f
7
+ data.tar.gz: a0be1033c8d0f97d1aac90cb3c71c011e5f7bb156d16ca000d10792083e0b694706f97c0749a5ceabce7a820c6df127e6a6b7f0e0e4cdda8a6d13b69e3454886
data/README.md CHANGED
@@ -54,7 +54,7 @@ bundle exec documentator list
54
54
  ```
55
55
 
56
56
  ``` bash
57
- bundle exec documentator import nginx
57
+ bundle exec documentator import nginx ruby
58
58
  ```
59
59
 
60
60
  ## Contribution
@@ -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: [desi](https://github.com/AF83/desi), [tire](https://github.com/karmi/tire),
221
- [stretcher](https://github.com/PoseBiz/stretcher)
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
- * Javascript : [elastic.js](https://github.com/fullscale/elastic.js)
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
+ ```
@@ -1,4 +1,4 @@
1
1
  # encoding: utf-8
2
2
  module Documentator
3
- VERSION = "0.0.2"
3
+ VERSION = "0.0.3"
4
4
  end
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.2
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-03-21 00:00:00.000000000 Z
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/nginx.md
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