icfs 0.1.0
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 +7 -0
- data/LICENSE.txt +674 -0
- data/bin/icfs_demo_create.rb +89 -0
- data/bin/icfs_demo_fcgi.rb +51 -0
- data/bin/icfs_demo_ssl_gen.rb +84 -0
- data/bin/icfs_demo_web.rb +50 -0
- data/bin/icfs_dev_todo.rb +20 -0
- data/data/demo_config.yml +94 -0
- data/data/icfs.css +475 -0
- data/data/icfs.js +458 -0
- data/lib/icfs.rb +109 -0
- data/lib/icfs/api.rb +1436 -0
- data/lib/icfs/cache.rb +254 -0
- data/lib/icfs/cache_elastic.rb +1154 -0
- data/lib/icfs/demo/auth.rb +74 -0
- data/lib/icfs/demo/static.rb +59 -0
- data/lib/icfs/demo/timezone.rb +38 -0
- data/lib/icfs/elastic.rb +83 -0
- data/lib/icfs/items.rb +653 -0
- data/lib/icfs/store.rb +278 -0
- data/lib/icfs/store_fs.rb +98 -0
- data/lib/icfs/store_s3.rb +97 -0
- data/lib/icfs/users.rb +80 -0
- data/lib/icfs/users_elastic.rb +166 -0
- data/lib/icfs/users_fs.rb +132 -0
- data/lib/icfs/validate.rb +479 -0
- data/lib/icfs/web/auth_ssl.rb +73 -0
- data/lib/icfs/web/client.rb +4498 -0
- metadata +77 -0
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: icfs
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Graham A. Field
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-05-16 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |2-
|
14
|
+
|
15
|
+
ICFS is a case management and filing system, developed for investigative
|
16
|
+
cases, but generally applicable to many types of work. It provides a
|
17
|
+
structured way to store and retrieve information, a case-focused access
|
18
|
+
control scheme which can integrate into existing identity and access
|
19
|
+
management systems, a flexible way to manage and track work assignments,
|
20
|
+
and a way to gather statistics which is flexible and can be audited.
|
21
|
+
email: gfield@retr.org
|
22
|
+
executables: []
|
23
|
+
extensions: []
|
24
|
+
extra_rdoc_files: []
|
25
|
+
files:
|
26
|
+
- LICENSE.txt
|
27
|
+
- bin/icfs_demo_create.rb
|
28
|
+
- bin/icfs_demo_fcgi.rb
|
29
|
+
- bin/icfs_demo_ssl_gen.rb
|
30
|
+
- bin/icfs_demo_web.rb
|
31
|
+
- bin/icfs_dev_todo.rb
|
32
|
+
- data/demo_config.yml
|
33
|
+
- data/icfs.css
|
34
|
+
- data/icfs.js
|
35
|
+
- lib/icfs.rb
|
36
|
+
- lib/icfs/api.rb
|
37
|
+
- lib/icfs/cache.rb
|
38
|
+
- lib/icfs/cache_elastic.rb
|
39
|
+
- lib/icfs/demo/auth.rb
|
40
|
+
- lib/icfs/demo/static.rb
|
41
|
+
- lib/icfs/demo/timezone.rb
|
42
|
+
- lib/icfs/elastic.rb
|
43
|
+
- lib/icfs/items.rb
|
44
|
+
- lib/icfs/store.rb
|
45
|
+
- lib/icfs/store_fs.rb
|
46
|
+
- lib/icfs/store_s3.rb
|
47
|
+
- lib/icfs/users.rb
|
48
|
+
- lib/icfs/users_elastic.rb
|
49
|
+
- lib/icfs/users_fs.rb
|
50
|
+
- lib/icfs/validate.rb
|
51
|
+
- lib/icfs/web/auth_ssl.rb
|
52
|
+
- lib/icfs/web/client.rb
|
53
|
+
homepage: https://github.com/g4field/icfs
|
54
|
+
licenses:
|
55
|
+
- GPL-3.0
|
56
|
+
metadata: {}
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options: []
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: '0'
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
requirements: []
|
72
|
+
rubyforge_project:
|
73
|
+
rubygems_version: 2.7.6.2
|
74
|
+
signing_key:
|
75
|
+
specification_version: 4
|
76
|
+
summary: Investigative Case File System
|
77
|
+
test_files: []
|