decidim-bulletin_board 0.16.0 → 0.16.1
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f997130e89622d6512d42eb77f92f16b64d46dd0938c4a1f26aca7d77906cf8
|
4
|
+
data.tar.gz: 926b134d17c6e9e73f3f652965186ed5f817e70f42a0e1e371008a66c15e396a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab96701c7d49f3da9e39fcca9ce502b1f4bbf68ee5f366b953c2ddd8d8c1a6206b237cc6b85d71061e1dc58b7fd09206287b4a48f96949d8a0f1f53f2bb16226
|
7
|
+
data.tar.gz: d0cbbc2d23024cbcf4d584633a3c8ddc3e4f423256e042087adf0a63b23e148b3e035b983ad477ab01064e66e4bb26bc31419ea4867f4f38385a4339b2c0e74f
|
data/Gemfile.lock
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
decidim-bulletin_board (0.16.
|
4
|
+
decidim-bulletin_board (0.16.1)
|
5
5
|
byebug (~> 11.0)
|
6
6
|
graphlient (~> 0.4.0)
|
7
7
|
jwt (~> 2.2.2)
|
8
|
-
mimemagic (~> 0.3.7)
|
9
8
|
rails (>= 5.0.0)
|
10
9
|
wisper (~> 2.0.0)
|
11
10
|
|
@@ -76,7 +75,7 @@ GEM
|
|
76
75
|
ast (2.4.1)
|
77
76
|
builder (3.2.4)
|
78
77
|
byebug (11.1.3)
|
79
|
-
concurrent-ruby (1.1.
|
78
|
+
concurrent-ruby (1.1.8)
|
80
79
|
crack (0.4.5)
|
81
80
|
rexml
|
82
81
|
crass (1.0.6)
|
@@ -97,30 +96,27 @@ GEM
|
|
97
96
|
faraday (>= 1.0)
|
98
97
|
faraday_middleware
|
99
98
|
graphql-client
|
100
|
-
graphql (1.12.
|
99
|
+
graphql (1.12.7)
|
101
100
|
graphql-client (0.16.0)
|
102
101
|
activesupport (>= 3.0)
|
103
102
|
graphql (~> 1.8)
|
104
103
|
hashdiff (1.0.1)
|
105
|
-
i18n (1.8.
|
104
|
+
i18n (1.8.10)
|
106
105
|
concurrent-ruby (~> 1.0)
|
107
106
|
jwt (2.2.2)
|
108
|
-
loofah (2.9.
|
107
|
+
loofah (2.9.1)
|
109
108
|
crass (~> 1.0.2)
|
110
109
|
nokogiri (>= 1.5.9)
|
111
110
|
mail (2.7.1)
|
112
111
|
mini_mime (>= 0.1.1)
|
113
112
|
marcel (1.0.1)
|
114
113
|
method_source (1.0.0)
|
115
|
-
mimemagic (0.3.10)
|
116
|
-
nokogiri (~> 1)
|
117
|
-
rake
|
118
114
|
mini_mime (1.0.3)
|
119
115
|
mini_portile2 (2.5.0)
|
120
116
|
minitest (5.14.4)
|
121
117
|
multipart-post (2.1.1)
|
122
118
|
nio4r (2.5.7)
|
123
|
-
nokogiri (1.11.
|
119
|
+
nokogiri (1.11.3)
|
124
120
|
mini_portile2 (~> 2.5.0)
|
125
121
|
racc (~> 1.4)
|
126
122
|
parallel (1.20.1)
|
@@ -158,7 +154,7 @@ GEM
|
|
158
154
|
rake (>= 0.8.7)
|
159
155
|
thor (~> 1.0)
|
160
156
|
rainbow (3.0.0)
|
161
|
-
rake (13.0.
|
157
|
+
rake (13.0.3)
|
162
158
|
regexp_parser (2.0.0)
|
163
159
|
rexml (3.2.4)
|
164
160
|
rspec (3.9.0)
|
@@ -52,8 +52,8 @@ module Decidim
|
|
52
52
|
trustees: trustees,
|
53
53
|
description: {
|
54
54
|
name: text(election_data[:title]),
|
55
|
-
start_date: election_data[:start_date].
|
56
|
-
end_date: election_data[:end_date].
|
55
|
+
start_date: election_data[:start_date].strftime("%FT%T%:z"),
|
56
|
+
end_date: election_data[:end_date].strftime("%FT%T%:z"),
|
57
57
|
candidates: candidates,
|
58
58
|
contests: contests
|
59
59
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-bulletin_board
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.16.
|
4
|
+
version: 0.16.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Morcillo
|
@@ -11,22 +11,8 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: exe
|
13
13
|
cert_chain: []
|
14
|
-
date: 2021-04-
|
14
|
+
date: 2021-04-12 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
17
|
-
name: mimemagic
|
18
|
-
requirement: !ruby/object:Gem::Requirement
|
19
|
-
requirements:
|
20
|
-
- - "~>"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 0.3.7
|
23
|
-
type: :runtime
|
24
|
-
prerelease: false
|
25
|
-
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
requirements:
|
27
|
-
- - "~>"
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 0.3.7
|
30
16
|
- !ruby/object:Gem::Dependency
|
31
17
|
name: rails
|
32
18
|
requirement: !ruby/object:Gem::Requirement
|