decidim 0.15.2 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3e4eca955fb89997478c0b18c5c900dc861fb4d66e9109c33a53d6c71573d8f
4
- data.tar.gz: 872f6237456c57e196e3965c477bf04739e629c6be587e90c37ab217e7806899
3
+ metadata.gz: 1db0b8a1441fe291680f2a8a47eea5eb113586416616b6f91b77a86bfb72e869
4
+ data.tar.gz: 816dbbdf6f2302777aaa7950d73b1898eca3861e63490edc24456ac837135798
5
5
  SHA512:
6
- metadata.gz: 84e0efefa2e11f21ad73dced9a14dba83a18b0938c894a1bb98ae120a38b4c2d4e1c1f78e7c48590d380b58baf73c03801ced4b5884a411554a630e5e28bcf2e
7
- data.tar.gz: e091ace7383287f804c34a0d47162fc7283aeaafa87d5d22a6f48d7f77330e40e6070a3e4d8c6bc5af0d4058bbc9237b8f821b625785fb06af8c5a37403a62d8
6
+ metadata.gz: 5c2420ef26343d400bef86d1909cac60e041c788bb132333fde2e652c1dd058f75ac4fa381c1f5988111769ff5164c3857762558469ac0c89cdef7ec91b46c41
7
+ data.tar.gz: 34831221b3b62c518420683c2f163e04bbfbd316d92017a9314a3a31eec0844cd531175c41579e8196a2467aa644486b8ef29386714465e9ad1555eac6e2790d
data/README.md CHANGED
@@ -111,6 +111,7 @@ As a base you can use these modules, although check first that the version is co
111
111
  | Module | Version | Description |
112
112
  | -----------------------------------------------------------------------------------------------------------------------| -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
113
113
  | [Age Action Authorization](https://github.com/diputacioBCN/decidim-diba/tree/master/decidim-age_action_authorization) | 0.9.3 | A Decidim based action authorization to check user's age inside actions. |
114
+ | [Antivirus](https://github.com/mainio/decidim-module-antivirus) | 0.15.0 | Virus scanning validation for uploaded attachments based on ClamAV. |
114
115
  | [Calendar](https://github.com/castilla-lamancha/participa-castillalamancha/tree/master/decidim-calendar) | 0.14.1 | Adds a calendar view for all the Meetings, without regarding the Participatory Process or Assembly that they belong. |
115
116
  | [Crowdfunding](https://github.com/podemos-infoparticipa2/tree/master/decidim-module-crowdfundings) | 0.14.1 | This rails engine implements a Decidim component that allows to the administrators to configure crowfunding campaigns for a participatory space. |
116
117
  | [DataViz](https://github.com/AjuntamentdeBarcelona/decidim-barcelona/tree/master/decidim-dataviz) | 0.13.1 | The Dataviz module adds the PAM data visualizations to any participatory process but it is intended to be used just for the PAM participatory process. |
@@ -23,17 +23,32 @@ Metrics calculations must be executed everyday. Some `rake task` have been added
23
23
 
24
24
  ## Current available metric names
25
25
 
26
- - *users*, confirmed Users
27
- - *proposals*, available Proposals
28
- - *accepted_proposals*, currently accepted Proposals
29
- - *votes*, votes in Proposals
30
- - *assemblies*, public Assemblies
31
- - *participatory_processes*, public ParticipatoryProcesses
32
- - *results*, Results in Accountabilities
33
- - *comment*, Comments generated by users, related to public elements and not *hidden*
34
- - *meetings*, public Meetings
26
+ - *users*, confirmed `Users`
27
+ - *proposals*, available `Proposals`
28
+ - *accepted_proposals*, currently accepted `Proposals`
29
+ - *supports*, supports in `Proposals`
30
+ - *assemblies*, public `Assemblies`
31
+ - *participatory_processes*, public `ParticipatoryProcesses`
32
+ - *results*, `Results` in `Accountability`
33
+ - *comment*, `Comments` generated by users, related to public elements and not *hidden*
34
+ - *meetings*, public `Meetings`
35
+
36
+ Only available for `ParticipatorySpaces` (restricted to `ParticipatoryProcesses`)
37
+
38
+ - *participants*: unique users who make at least one of the following actions
39
+ - Create a proposal
40
+ - Create a debate
41
+ - Answer a survey
42
+ - Leave a comment
43
+ - Give support to a proposal
44
+ - Endorse
45
+ - Vote a participatory budgeting project
46
+ - *followers*: unique users who follow any participatory element in a `ParticipatorySpace`
47
+ - *endorsements*: number of `Endorsements` in `Proposals`, within a `ParticipatorySpace`
48
+ - *debates*: number of `Debates` within a `ParticipatorySpace`
49
+ - *survey_answers*: number of answered `Surveys` by users within a `ParticipatorySpace`
35
50
 
36
51
  ## To configure it correctly
37
52
 
38
53
  - A **crontab** line must be added to your server to maintain them updated daily. You could use [Whenever](https://github.com/javan/whenever) to manage it directly from the APP
39
- - A **ActiveJob** queue, like [Sidekiq](https://github.com/mperham/sidekiq) or [DelayedJob](https://github.com/collectiveidea/delayed_job/)
54
+ - An **ActiveJob** queue, like [Sidekiq](https://github.com/mperham/sidekiq) or [DelayedJob](https://github.com/collectiveidea/delayed_job/)
@@ -0,0 +1,9 @@
1
+ # Open Data
2
+
3
+ In order for users to be able to download Open Data files they have to be generated previously, since generating them on the fly would take too much time and resources.
4
+
5
+ You should schedule this command to be run everyday, using `cron` or `whenever` or your favorite tool:
6
+
7
+ ```ruby
8
+ bundle exec rake decidim:open_data:export
9
+ ```
@@ -32,6 +32,8 @@ As a technopolitical project, Decidim needs several things to work. This is a no
32
32
 
33
33
  1. Check that you don't have any **default users, emails and passwords**, neither on the admin or on the system panel.
34
34
 
35
+ 1. Configure recurring jobs for [**metrics**](advanced/metrics.md) and [**open data**](advanced/open-data.md)
36
+
35
37
  ## Contents
36
38
 
37
39
  1. Ideally you'll have a **Team** formed with experts on IT, Communication, Participation, Design and Law.
@@ -44,6 +46,6 @@ As a technopolitical project, Decidim needs several things to work. This is a no
44
46
 
45
47
  1. Read the **[Administration manual](https://decidim.org/docs/)**.
46
48
 
47
- 1. Participate on **[MetaDecidim](http://meta.decidim.barcelona)**.
49
+ 1. Participate on **[MetaDecidim](http://meta.decidim.org)**.
48
50
 
49
51
  1. Read the Decidim **[Social Contract](https://decidim.org/contract/)**.
@@ -21,3 +21,30 @@ All the organization data will be used during the authorization process so the u
21
21
  Once you've created your application you'll get the settings to setup your client.
22
22
 
23
23
  Check [omniauth-decidim](https://github.com/decidim/omniauth-decidim) in order to configure your client application.
24
+
25
+ ## Performing more actions on omniauth registration
26
+
27
+ Some times, there is the need to perform more actions than just ceating a user on registration, this is why `CreateOmniauthRegistration` command publishes a `"decidim.events.user.omniauth_registration` event after registration so that developers can subscribe to it and perform other actions like user verification or alike.
28
+
29
+ This event comes with the following payload:
30
+
31
+ * user_id: The id for the registered User.
32
+ * identity_id: The id for the social Identity.
33
+ * provider: The name for the social provider.
34
+ * uid: OAuth's uid
35
+ * email: User's email.
36
+ * name: User's name.
37
+ * nickname: User's nickname after being normalized.
38
+ * avatar_url: Avatar's url, if any.
39
+ * raw_data: The raw hash received directly from the Omniauth gem.
40
+
41
+ To be notified after a registration one should subscribe to the event, in the passed block the after registration code should be implemented:
42
+
43
+ ```ruby
44
+ ActiveSupport::Notifications.subscribe "decidim.events.user.omniauth_registration" do |name, started, finished, unique_id, data|
45
+ puts "the data: #{data.inspect}"
46
+ IdCatMobilVerificationJob.perform_later(data[:raw_data])
47
+ end
48
+ ```
49
+
50
+ It is a good practice to delegate the required implementation to a Job to bring a fastest response to the user, also it will avoid that crashes in this code to propagate to the registration process.
@@ -0,0 +1,17 @@
1
+ # Users registration mode
2
+
3
+ Decidim allows organizations to choose one of the three modes related to the registration and login of users. This can be configured by the system user, in the organization manager zone.
4
+
5
+ ## Allow users to register and login
6
+
7
+ This is the default mode. It enables the registration form and allow anyone to create a new account and log in.
8
+
9
+ ## Don't allow users to register, but allow existing users to login
10
+
11
+ This mode disables the registration form, but allows existing users to log in. This mode could be useful for organizations with a closed census that do not want to offer other people to register.
12
+
13
+ Note: if you have configured [social providers](services/social_providers.md), users will still be able to sign in with external accounts even when this mode is configured.
14
+
15
+ ## Access only can be done with external accounts
16
+
17
+ This mode disables the registration form and the login form. With this mode, users only can access through [social providers](services/social_providers.md), so it is recommended to configure at least one of them. This can be useful when an organization needs to allow participation only to users of another application of the organization itself.
@@ -112,3 +112,23 @@ This project uses [markdownlint](https://github.com/markdownlint/markdownlint) t
112
112
  ## Testing
113
113
 
114
114
  Refer to the [testing](advanced/testing.md) guide.
115
+
116
+ ## Releasing new versions
117
+
118
+ Releasing new versions is quite easy, it's the same process whether it's a new version or a patch:
119
+
120
+ 1. Checkout the branch you want to release: `git checkout VERSION-stable`
121
+ 1. Update `.decidim-version` to the new version number.
122
+ 1. Run `bin/rake update_versions`, this will update all references to the new version.
123
+ 1. Run `bin/rake bundle`, this will update all the `Gemfile.lock` files
124
+ 1. Run `bin/rake webpack`, this will update the JavaScript bundle.
125
+ 1. Update `CHANGELOG.MD` and change the `Unreleased` title to the current version and link to previous versions if needed.
126
+ 1. Commit all the changes: `git add . && git commit -m "Bump version"`
127
+ 1. Run `bin/rake release_all`, this will create all the tags, push the commits and tags and release the gems to RubyGems.
128
+
129
+ In order to release new version you need to be owner of all the gems at RubyGems, ask one of the owners to add you before releasing. (Try `gem owners decidim`)
130
+
131
+ Once all the gems are published you should create a new release at this repository, just go to the [releases page](https://github.com/decidim/decidim/tags) and create a new one.
132
+
133
+ Finally, you should update our [Docker repository](https://github.com/decidim/docker) so new images are build for the new release.
134
+ To do it, just update `DECIDIM_VERSION` at [circle.yml](https://github.com/decidim/docker/blob/master/circle.yml).
@@ -0,0 +1,17 @@
1
+ # Etherpad
2
+
3
+ Decidim can be integrated with Etherpad so meetings can have their own pads.
4
+
5
+ In order to use it you need to have your own Etherpad deployment, you can do it
6
+ with the Docker compose using the provided `docker-compose-etherpad.yml`.
7
+
8
+ You should edit that file to configure the environment variables and then run:
9
+
10
+ ```sh
11
+ docker swarm init # just one time
12
+
13
+ docker stack deploy --compose-file docker-compose-etherpad.yml decidim-etherpad
14
+ ```
15
+
16
+ After deploying it, you should set the Etherpad host and API Key at
17
+ `config/initializers/decidim.rb` and `config/secrets.yml`
@@ -39,3 +39,22 @@ If you want to enable sign up through social providers like Facebook you will ne
39
39
  1. Select `Web applications`. Fill in the `Authorized Javascript origins` with your url. Then fill in the `Authorized redirect URIs` with your url and append the path `/users/auth/google_oauth2/callback`.
40
40
  1. Copy the CLIENT_ID AND CLIENT_SECRET
41
41
  1. Paste credentials in `config/secrets.yml`. Ensure the `enabled` attribute is `true`.
42
+
43
+ ## Custom providers
44
+
45
+ * You can define your own provider, to allow users from other external applications to login into Decidim.
46
+ * The provider should implement an [OmniAuth](https://github.com/omniauth/omniauth) strategy.
47
+ * You can use any of the [existing OnmiAuth strategies](https://github.com/omniauth/omniauth/wiki/List-of-Strategies).
48
+ * Or you can create a new strategy, as the [Decidim OmniAuth Strategy](https://github.com/decidim/omniauth-decidim). This strategy allow users from a Decidim instance to login in other Decidim instance. For example, this strategy is used to allow [decidim.barcelona](https://decidim.barcelona) users to log into [meta.decidim.barcelona](https://meta.decidim.barcelona).
49
+ * Once you have defined your strategy, you can configure it in the `config/secrets.yml`, as it is done for the built-in providers.
50
+ * By default, Decidim will search in its icons library for an icon named as the provider. You can change this adding an `icon` or `icon_path` attribute to the provider configuration. The `icon` attribute sets the icon name to look for in the Decidim's icons library. The `icon_path` attribute sets the route to the image that should be used.
51
+ * Here is an example of the configuration section for the Decidim strategy, using an icon located on the application's `app/assets/images` folder:
52
+
53
+ ```yaml
54
+ decidim:
55
+ enabled: true
56
+ client_id: <%= ENV["DECIDIM_CLIENT_ID"] %>
57
+ client_secret: <%= ENV["DECIDIM_CLIENT_SECRET"] %>
58
+ site_url: <%= ENV["DECIDIM_SITE_URL"] %>
59
+ icon_path: decidim-logo.svg
60
+ ```
@@ -6,6 +6,8 @@ require "decidim/admin"
6
6
  require "decidim/api"
7
7
  require "decidim/version"
8
8
 
9
+ require "decidim/forms"
10
+
9
11
  require "decidim/verifications"
10
12
 
11
13
  require "decidim/participatory_processes"
@@ -3,6 +3,6 @@
3
3
  # This holds the decidim version and the faker version it uses.
4
4
  module Decidim
5
5
  def self.version
6
- "0.15.2"
6
+ "0.16.0"
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.2
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-01-08 00:00:00.000000000 Z
13
+ date: 2019-01-09 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-accountability
@@ -18,252 +18,266 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.15.2
21
+ version: 0.16.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 0.15.2
28
+ version: 0.16.0
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: decidim-admin
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.15.2
35
+ version: 0.16.0
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 0.15.2
42
+ version: 0.16.0
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: decidim-api
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - '='
48
48
  - !ruby/object:Gem::Version
49
- version: 0.15.2
49
+ version: 0.16.0
50
50
  type: :runtime
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
54
  - - '='
55
55
  - !ruby/object:Gem::Version
56
- version: 0.15.2
56
+ version: 0.16.0
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: decidim-assemblies
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - '='
62
62
  - !ruby/object:Gem::Version
63
- version: 0.15.2
63
+ version: 0.16.0
64
64
  type: :runtime
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - '='
69
69
  - !ruby/object:Gem::Version
70
- version: 0.15.2
70
+ version: 0.16.0
71
71
  - !ruby/object:Gem::Dependency
72
72
  name: decidim-blogs
73
73
  requirement: !ruby/object:Gem::Requirement
74
74
  requirements:
75
75
  - - '='
76
76
  - !ruby/object:Gem::Version
77
- version: 0.15.2
77
+ version: 0.16.0
78
78
  type: :runtime
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - '='
83
83
  - !ruby/object:Gem::Version
84
- version: 0.15.2
84
+ version: 0.16.0
85
85
  - !ruby/object:Gem::Dependency
86
86
  name: decidim-budgets
87
87
  requirement: !ruby/object:Gem::Requirement
88
88
  requirements:
89
89
  - - '='
90
90
  - !ruby/object:Gem::Version
91
- version: 0.15.2
91
+ version: 0.16.0
92
92
  type: :runtime
93
93
  prerelease: false
94
94
  version_requirements: !ruby/object:Gem::Requirement
95
95
  requirements:
96
96
  - - '='
97
97
  - !ruby/object:Gem::Version
98
- version: 0.15.2
98
+ version: 0.16.0
99
99
  - !ruby/object:Gem::Dependency
100
100
  name: decidim-comments
101
101
  requirement: !ruby/object:Gem::Requirement
102
102
  requirements:
103
103
  - - '='
104
104
  - !ruby/object:Gem::Version
105
- version: 0.15.2
105
+ version: 0.16.0
106
106
  type: :runtime
107
107
  prerelease: false
108
108
  version_requirements: !ruby/object:Gem::Requirement
109
109
  requirements:
110
110
  - - '='
111
111
  - !ruby/object:Gem::Version
112
- version: 0.15.2
112
+ version: 0.16.0
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: decidim-core
115
115
  requirement: !ruby/object:Gem::Requirement
116
116
  requirements:
117
117
  - - '='
118
118
  - !ruby/object:Gem::Version
119
- version: 0.15.2
119
+ version: 0.16.0
120
120
  type: :runtime
121
121
  prerelease: false
122
122
  version_requirements: !ruby/object:Gem::Requirement
123
123
  requirements:
124
124
  - - '='
125
125
  - !ruby/object:Gem::Version
126
- version: 0.15.2
126
+ version: 0.16.0
127
127
  - !ruby/object:Gem::Dependency
128
128
  name: decidim-debates
129
129
  requirement: !ruby/object:Gem::Requirement
130
130
  requirements:
131
131
  - - '='
132
132
  - !ruby/object:Gem::Version
133
- version: 0.15.2
133
+ version: 0.16.0
134
134
  type: :runtime
135
135
  prerelease: false
136
136
  version_requirements: !ruby/object:Gem::Requirement
137
137
  requirements:
138
138
  - - '='
139
139
  - !ruby/object:Gem::Version
140
- version: 0.15.2
140
+ version: 0.16.0
141
+ - !ruby/object:Gem::Dependency
142
+ name: decidim-forms
143
+ requirement: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - '='
146
+ - !ruby/object:Gem::Version
147
+ version: 0.16.0
148
+ type: :runtime
149
+ prerelease: false
150
+ version_requirements: !ruby/object:Gem::Requirement
151
+ requirements:
152
+ - - '='
153
+ - !ruby/object:Gem::Version
154
+ version: 0.16.0
141
155
  - !ruby/object:Gem::Dependency
142
156
  name: decidim-generators
143
157
  requirement: !ruby/object:Gem::Requirement
144
158
  requirements:
145
159
  - - '='
146
160
  - !ruby/object:Gem::Version
147
- version: 0.15.2
161
+ version: 0.16.0
148
162
  type: :runtime
149
163
  prerelease: false
150
164
  version_requirements: !ruby/object:Gem::Requirement
151
165
  requirements:
152
166
  - - '='
153
167
  - !ruby/object:Gem::Version
154
- version: 0.15.2
168
+ version: 0.16.0
155
169
  - !ruby/object:Gem::Dependency
156
170
  name: decidim-meetings
157
171
  requirement: !ruby/object:Gem::Requirement
158
172
  requirements:
159
173
  - - '='
160
174
  - !ruby/object:Gem::Version
161
- version: 0.15.2
175
+ version: 0.16.0
162
176
  type: :runtime
163
177
  prerelease: false
164
178
  version_requirements: !ruby/object:Gem::Requirement
165
179
  requirements:
166
180
  - - '='
167
181
  - !ruby/object:Gem::Version
168
- version: 0.15.2
182
+ version: 0.16.0
169
183
  - !ruby/object:Gem::Dependency
170
184
  name: decidim-pages
171
185
  requirement: !ruby/object:Gem::Requirement
172
186
  requirements:
173
187
  - - '='
174
188
  - !ruby/object:Gem::Version
175
- version: 0.15.2
189
+ version: 0.16.0
176
190
  type: :runtime
177
191
  prerelease: false
178
192
  version_requirements: !ruby/object:Gem::Requirement
179
193
  requirements:
180
194
  - - '='
181
195
  - !ruby/object:Gem::Version
182
- version: 0.15.2
196
+ version: 0.16.0
183
197
  - !ruby/object:Gem::Dependency
184
198
  name: decidim-participatory_processes
185
199
  requirement: !ruby/object:Gem::Requirement
186
200
  requirements:
187
201
  - - '='
188
202
  - !ruby/object:Gem::Version
189
- version: 0.15.2
203
+ version: 0.16.0
190
204
  type: :runtime
191
205
  prerelease: false
192
206
  version_requirements: !ruby/object:Gem::Requirement
193
207
  requirements:
194
208
  - - '='
195
209
  - !ruby/object:Gem::Version
196
- version: 0.15.2
210
+ version: 0.16.0
197
211
  - !ruby/object:Gem::Dependency
198
212
  name: decidim-proposals
199
213
  requirement: !ruby/object:Gem::Requirement
200
214
  requirements:
201
215
  - - '='
202
216
  - !ruby/object:Gem::Version
203
- version: 0.15.2
217
+ version: 0.16.0
204
218
  type: :runtime
205
219
  prerelease: false
206
220
  version_requirements: !ruby/object:Gem::Requirement
207
221
  requirements:
208
222
  - - '='
209
223
  - !ruby/object:Gem::Version
210
- version: 0.15.2
224
+ version: 0.16.0
211
225
  - !ruby/object:Gem::Dependency
212
226
  name: decidim-sortitions
213
227
  requirement: !ruby/object:Gem::Requirement
214
228
  requirements:
215
229
  - - '='
216
230
  - !ruby/object:Gem::Version
217
- version: 0.15.2
231
+ version: 0.16.0
218
232
  type: :runtime
219
233
  prerelease: false
220
234
  version_requirements: !ruby/object:Gem::Requirement
221
235
  requirements:
222
236
  - - '='
223
237
  - !ruby/object:Gem::Version
224
- version: 0.15.2
238
+ version: 0.16.0
225
239
  - !ruby/object:Gem::Dependency
226
240
  name: decidim-surveys
227
241
  requirement: !ruby/object:Gem::Requirement
228
242
  requirements:
229
243
  - - '='
230
244
  - !ruby/object:Gem::Version
231
- version: 0.15.2
245
+ version: 0.16.0
232
246
  type: :runtime
233
247
  prerelease: false
234
248
  version_requirements: !ruby/object:Gem::Requirement
235
249
  requirements:
236
250
  - - '='
237
251
  - !ruby/object:Gem::Version
238
- version: 0.15.2
252
+ version: 0.16.0
239
253
  - !ruby/object:Gem::Dependency
240
254
  name: decidim-system
241
255
  requirement: !ruby/object:Gem::Requirement
242
256
  requirements:
243
257
  - - '='
244
258
  - !ruby/object:Gem::Version
245
- version: 0.15.2
259
+ version: 0.16.0
246
260
  type: :runtime
247
261
  prerelease: false
248
262
  version_requirements: !ruby/object:Gem::Requirement
249
263
  requirements:
250
264
  - - '='
251
265
  - !ruby/object:Gem::Version
252
- version: 0.15.2
266
+ version: 0.16.0
253
267
  - !ruby/object:Gem::Dependency
254
268
  name: decidim-verifications
255
269
  requirement: !ruby/object:Gem::Requirement
256
270
  requirements:
257
271
  - - '='
258
272
  - !ruby/object:Gem::Version
259
- version: 0.15.2
273
+ version: 0.16.0
260
274
  type: :runtime
261
275
  prerelease: false
262
276
  version_requirements: !ruby/object:Gem::Requirement
263
277
  requirements:
264
278
  - - '='
265
279
  - !ruby/object:Gem::Version
266
- version: 0.15.2
280
+ version: 0.16.0
267
281
  - !ruby/object:Gem::Dependency
268
282
  name: bundler
269
283
  requirement: !ruby/object:Gem::Requirement
@@ -330,6 +344,7 @@ files:
330
344
  - docs/advanced/how_to_create_a_module.md
331
345
  - docs/advanced/managing_translations_i18n.md
332
346
  - docs/advanced/metrics.md
347
+ - docs/advanced/open-data.md
333
348
  - docs/advanced/testing.md
334
349
  - docs/advanced/tradeoffs.md
335
350
  - docs/advanced/view_hooks.md
@@ -343,6 +358,7 @@ files:
343
358
  - docs/customization/oauth.md
344
359
  - docs/customization/styles.md
345
360
  - docs/customization/texts.md
361
+ - docs/customization/users_registration_mode.md
346
362
  - docs/customization/views.md
347
363
  - docs/development_guide.md
348
364
  - docs/getting_started.md
@@ -350,6 +366,7 @@ files:
350
366
  - docs/possible_flows_for_proposal.png
351
367
  - docs/services/activejob.md
352
368
  - docs/services/analytics.md
369
+ - docs/services/etherpad.md
353
370
  - docs/services/geocoding.md
354
371
  - docs/services/social_providers.md
355
372
  - lib/decidim.rb
@@ -375,7 +392,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
375
392
  version: '0'
376
393
  requirements: []
377
394
  rubyforge_project:
378
- rubygems_version: 2.7.7
395
+ rubygems_version: 2.7.6
379
396
  signing_key:
380
397
  specification_version: 4
381
398
  summary: Citizen participation framework for Ruby on Rails.