flack 0.16.1 → 1.0.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 +5 -5
- data/CHANGELOG.md +5 -0
- data/Makefile +1 -1
- data/flack.gemspec +2 -4
- data/lib/flack.rb +1 -1
- metadata +11 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2db9db527f885215d426f53353b9cc428d35bb54e6b11205a31c04ef234410f6
|
|
4
|
+
data.tar.gz: 5b2242b4137b08e65064682b7aa37f3f92267e58c7acca773580168b290b1cf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11f46755eaa4d5aac73d8478bfa2de24dc3c6c3c7f29673eeec75a2932149452726c6c77c71b6eec5a53bf3401ca61851b9dbd04ddeca26f931128e460d711b8
|
|
7
|
+
data.tar.gz: 3fbb4eb5155ae97de8ab8cee7c4b99e4634c18fad5e5263e288e411f63f08286821021b6b05372bfeafccf845e4cdaee8b04a559b8b737e23728ee96c25641ca
|
data/CHANGELOG.md
CHANGED
data/Makefile
CHANGED
data/flack.gemspec
CHANGED
|
@@ -10,8 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.platform = Gem::Platform::RUBY
|
|
11
11
|
s.authors = [ 'John Mettraux' ]
|
|
12
12
|
s.email = [ 'jmettraux@gmail.com' ]
|
|
13
|
-
s.homepage = '
|
|
14
|
-
#s.rubyforge_project = 'flor'
|
|
13
|
+
s.homepage = 'https://github.com/floraison/flack'
|
|
15
14
|
s.license = 'MIT'
|
|
16
15
|
s.summary = 'a web front-end to the flor workflow engine'
|
|
17
16
|
|
|
@@ -32,8 +31,7 @@ A web front-end to the flor workflow engine
|
|
|
32
31
|
#s.add_runtime_dependency 'flor', "~> #{flor_version}"
|
|
33
32
|
s.add_runtime_dependency 'flor'
|
|
34
33
|
|
|
35
|
-
s.add_runtime_dependency 'rack', '
|
|
36
|
-
s.add_runtime_dependency 'sequel', '~> 5'
|
|
34
|
+
s.add_runtime_dependency 'rack', '>= 1.6', '< 3.0'
|
|
37
35
|
s.add_runtime_dependency 'httpclient', '~> 2.8'
|
|
38
36
|
|
|
39
37
|
s.add_development_dependency 'rspec', '~> 3'
|
data/lib/flack.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Mettraux
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: flor
|
|
@@ -28,30 +28,22 @@ dependencies:
|
|
|
28
28
|
name: rack
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '1.6'
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '3.0'
|
|
34
37
|
type: :runtime
|
|
35
38
|
prerelease: false
|
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
40
|
requirements:
|
|
38
|
-
- - "
|
|
41
|
+
- - ">="
|
|
39
42
|
- !ruby/object:Gem::Version
|
|
40
43
|
version: '1.6'
|
|
41
|
-
-
|
|
42
|
-
name: sequel
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '5'
|
|
48
|
-
type: :runtime
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
44
|
+
- - "<"
|
|
53
45
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
46
|
+
version: '3.0'
|
|
55
47
|
- !ruby/object:Gem::Dependency
|
|
56
48
|
name: httpclient
|
|
57
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -100,7 +92,7 @@ files:
|
|
|
100
92
|
- lib/flack/app/message.rb
|
|
101
93
|
- lib/flack/app/messages.rb
|
|
102
94
|
- lib/flack/app/static.rb
|
|
103
|
-
homepage:
|
|
95
|
+
homepage: https://github.com/floraison/flack
|
|
104
96
|
licenses:
|
|
105
97
|
- MIT
|
|
106
98
|
metadata: {}
|
|
@@ -119,8 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
111
|
- !ruby/object:Gem::Version
|
|
120
112
|
version: '0'
|
|
121
113
|
requirements: []
|
|
122
|
-
|
|
123
|
-
rubygems_version: 2.6.14.1
|
|
114
|
+
rubygems_version: 3.0.3
|
|
124
115
|
signing_key:
|
|
125
116
|
specification_version: 4
|
|
126
117
|
summary: a web front-end to the flor workflow engine
|