llt-db_handler 0.0.3 → 0.0.4

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: b5cc1546f7dba0545e52909af27e845fa7703916
4
- data.tar.gz: 7c3af4569878fa9a49186e03c1a15d6594ec463c
3
+ metadata.gz: aa007dd6e48c47bac100eaa76ac6484c55dc5a4b
4
+ data.tar.gz: 83dab819a52dc1c89568178bbebb5679771a4bfe
5
5
  SHA512:
6
- metadata.gz: 88a3bb3d9d9769df8b53558b75855b0e6ba79f1f40b9a0cd86a4bd09b65be519554d32e428fa39e675ceb49b90334a695ec10a19b604d14b90ad1a7794ea2f2c
7
- data.tar.gz: 369f6d9f20ce45da5261fa12b11811d59f2fa186e2dfca3fe0b02527aad68f292b6a29c31be540b2dd1801469233dbfc1ba83a3f4cef4830e78aca793ccc69a7
6
+ metadata.gz: 891f06577b73c2cbe770f375f2d6cfba28fc4acfe5c26e3a6b7def3e34e2c4d838a962845e423ac18f38e973f3c051a7a45a8a036d79e889dcfa1ae2ffa3a0db
7
+ data.tar.gz: c88fbd64c91305eb40536d5e0f13f0e7e1c7e59aaa16aed5816a888ff820b6b5687252707268dbebe621e62c99fc320bea1f7a55273d3601980ac5e8d5d4b8d2
data/README.md CHANGED
@@ -38,7 +38,7 @@ you have postgresql installed and a user called prometheus ready:
38
38
  ```
39
39
  psql
40
40
  create user prometheus with password 'admin'
41
- alter user prometheus with create_db
41
+ alter user prometheus with createdb
42
42
  ```
43
43
  Create the database and seed data:
44
44
 
@@ -28,17 +28,20 @@ class LLT::DbHandler::Stub::StubEntries
28
28
  wsr(type: :noun, nom: "nox", stem: "noct", itype: 3, sexus: :f)
29
29
  wsr(type: :noun, nom: "filius", stem: "fili", itype: 2, sexus: :m)
30
30
  wsr(type: :noun, nom: "servus", stem: "serv", itype: 2, sexus: :m)
31
+ wsr(type: :noun, nom: "dominus", stem: "domin", itype: 2, sexus: :m)
31
32
 
32
33
  wsr(type: :noun, nom: "flumen", stem: "flumin", itype: 3, sexus: :n)
33
34
  wsr(type: :noun, nom: "arma", stem: "arm", itype: 2, sexus: :n) # this might actually be wrong?
34
35
 
35
36
  wsr(type: :persona, nom: "Plato", stem: "Platon", itype: 3)
36
37
  wsr(type: :persona, nom: "Solon", stem: "Solon", itype: 3)
38
+ wsr(type: :persona, nom: "Paulinus", stem: "Paulin", itype: 2)
37
39
 
38
40
  wsr(type: :adjective, nom: "communis", stem: "commun", itype: 3, number_of_endings: 1)
39
41
  wsr(type: :adjective, nom: "diligens", stem: "diligent", itype: 3, number_of_endings: 1)
40
42
  wsr(type: :adjective, nom: "laetus", stem: "laet", itype: 1, number_of_endings: 3)
41
43
  wsr(type: :adjective, nom: "ferus", stem: "fer", itype: 1, number_of_endings: 3)
44
+ wsr(type: :adjective, nom: "bonus", stem: "bon", itype: 1, number_of_endings: 3)
42
45
 
43
46
  wsr(type: :adjective, nom: "aestivus", stem: "aestiv", itype: 1, number_of_endings: 3)
44
47
  wsr(type: :adjective, nom: "suavis", stem: "suav", itype: 3, number_of_endings: 2)
@@ -1,5 +1,5 @@
1
1
  module LLT
2
2
  module DbHandler
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llt-db_handler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - LFDM
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-09 00:00:00.000000000 Z
11
+ date: 2014-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -216,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  version: '0'
217
217
  requirements: []
218
218
  rubyforge_project:
219
- rubygems_version: 2.1.5
219
+ rubygems_version: 2.2.0
220
220
  signing_key:
221
221
  specification_version: 4
222
222
  summary: LLT DB Handler