clevic 0.5.1 → 0.5.2
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.
- data/History.txt +539 -93
- data/Manifest.txt +1 -0
- data/README.txt +6 -2
- data/Rakefile +25 -1
- data/TODO +4 -23
- data/bin/clevic +10 -10
- data/lib/clevic/db_options.rb +5 -3
- data/lib/clevic/model_builder.rb +2 -0
- data/lib/clevic/ui/browser_ui.rb +1 -1
- data/lib/clevic/ui/search_dialog_ui.rb +1 -1
- data/template/jamis.rb +589 -0
- metadata +26 -4
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: clevic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Anderson
|
|
@@ -9,17 +9,38 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-
|
|
12
|
+
date: 2008-07-04 00:00:00 +02:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: qtext
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.2.0
|
|
24
|
+
version:
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: activerecord
|
|
27
|
+
type: :runtime
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 2.0.2
|
|
34
|
+
version:
|
|
15
35
|
- !ruby/object:Gem::Dependency
|
|
16
36
|
name: hoe
|
|
37
|
+
type: :development
|
|
17
38
|
version_requirement:
|
|
18
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
19
40
|
requirements:
|
|
20
41
|
- - ">="
|
|
21
42
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.
|
|
43
|
+
version: 1.7.0
|
|
23
44
|
version:
|
|
24
45
|
description: Database framework and Qt Model/View GUI for data capture and editing of tables in a pre-existing relational DBMS. Thanks to ActiveRecord, Postgresql, Mysql and so on are supported. Has only been tested with Postgres. There is a mild focus on reducing keystrokes for repetitive data capture, so it provides nice keyboard shortcuts for all sorts of things. Model (table) objects are extensible to allow for model (table) specific cleverness, like auto-filling-in of fields.
|
|
25
46
|
email: john at semiosix dot com
|
|
@@ -61,6 +82,7 @@ files:
|
|
|
61
82
|
- lib/clevic/ui/search_dialog_ui.rb
|
|
62
83
|
- sql/accounts.sql
|
|
63
84
|
- sql/times.sql
|
|
85
|
+
- template/jamis.rb
|
|
64
86
|
- times_models.rb
|
|
65
87
|
has_rdoc: true
|
|
66
88
|
homepage: http://www.rubyforge.org/clevic
|
|
@@ -85,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
85
107
|
requirements: []
|
|
86
108
|
|
|
87
109
|
rubyforge_project: clevic
|
|
88
|
-
rubygems_version: 1.
|
|
110
|
+
rubygems_version: 1.2.0
|
|
89
111
|
signing_key:
|
|
90
112
|
specification_version: 2
|
|
91
113
|
summary: Database framework and Qt Model/View GUI for data capture and editing of tables in a pre-existing relational DBMS
|