decidim 0.8.4 → 0.9.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.

@@ -11,9 +11,9 @@ Decidim uses [Crowdin](https://crowdin.com/) to manage the translations.
11
11
  ## Adding a new language
12
12
 
13
13
  - Setup the new language in [_Crowdin's Decidim project_](https://crowdin.com/project/decidim) (or open an issue on Github asking an admin to do that).
14
+ - Add the locale mapping in the `crowdin.yml` file
14
15
  - Translate at least one key from every engine, so, your _yaml_ files are not empty. The easiest way to do this is to automatically translate and sync all the content. Later you'll be able to fix the content that wasn't properly translated.
15
16
  - Add [Foundation Datepicker](https://github.com/najlepsiwebdesigner/foundation-datepicker/tree/master/js/locales)'s translations ([PR](https://github.com/decidim/decidim/pull/2039)).
16
- - Add Select2 translations ([PR](https://github.com/decidim/decidim/pull/2214)).
17
17
  - Add the new language to `available_locales` ([PR](https://github.com/decidim/decidim/pull/1991)).
18
18
  - Announce the new language in the Readme ([PR](https://github.com/decidim/decidim/pull/2125)).
19
19
 
@@ -0,0 +1,137 @@
1
+ # Migration from 0.7.0 to 0.8.0
2
+
3
+ ## Note about this guide.
4
+
5
+ This is a work-in-progress guide for all those people that needs to adapt his existing source code from Decidim
6
+ 0.7.0 to Decidim 0.8.0. If you find a mistake or missing parts in this document do not hesitate to make a pull request
7
+ and add your discoveries.
8
+
9
+
10
+ ## Upgrading the gem.
11
+
12
+ You need to alter the following files:
13
+
14
+ ### Gemspec file.
15
+
16
+ You must set the decidim version to 0.8.0 or higher in your gemspec.
17
+
18
+ ```ruby
19
+ ...
20
+ s.add-dependency "decidim-core", "~> 0.8.0"
21
+ ...
22
+ ```
23
+
24
+ ### Gemfile
25
+ You must adjust the decidim version in your gem file as well. You also need to add the new engine 'decidim-verifications':
26
+
27
+ ```ruby
28
+ ...
29
+ gem "decidim", "~> 0.8.0"
30
+ gem "decidim-verifications"
31
+ ...
32
+ ```
33
+ ### bundle update
34
+ Finally run *bundle update* to get the required gems updated.
35
+
36
+ ```bash
37
+ $ bundle update --full-index
38
+ ```
39
+
40
+ ## Updating your sources.
41
+
42
+ ### Factories
43
+ Decidim 0.8.0 has migratied from FactoryGirl gem to FactoryBot. Cause this you need to update your factories. Usually the *factories.rb* file looks like this:
44
+
45
+ ```ruby
46
+ # frozen_string_literal: true
47
+
48
+ require 'decidim/faker/localized'
49
+ require 'decidim/dev'
50
+
51
+ FactoryGirl.define do
52
+ ...
53
+ end
54
+
55
+ ```
56
+
57
+ You must replace FactoryGirl by FactoryBot. After the change it should look like this:
58
+
59
+ ```ruby
60
+ # frozen_string_literal: true
61
+
62
+ require 'decidim/faker/localized'
63
+ require 'decidim/dev'
64
+
65
+ FactoryBot.define do
66
+ ...
67
+ end
68
+
69
+ ```
70
+
71
+ ### Spec tests examples.
72
+
73
+ Some examples have changed its name to be more descriptive. In order to have your tests up and running again you must perform the following substitions in the specs folder:
74
+
75
+ * *include_context "feature"* now is *include_context "with a feature"*
76
+
77
+ * *include_context "feature admin"* now is *include_context "when managing a feature as an admin"*
78
+
79
+ ### Capybara
80
+
81
+ After I have upgraded to the last version of decidim I have realized that some test that were valid in the previous version now were failing. The reason was the following exception:
82
+
83
+ ```ruby
84
+ RSpec::Core::MultipleExceptionError: unexpected alert open: {Alert text : Are you sure?}
85
+ ```
86
+
87
+ That was caused by a confirmation dialog. In order to get rid of these issue I had to add the following line in the point
88
+ where the dialog was supposed to be accepted:
89
+
90
+ ```ruby
91
+ accept_confirm { click_button "Submit" }
92
+ ```
93
+
94
+ ## Steps to do after migrating your source code.
95
+
96
+ ### Adapting code for an existing engine:
97
+
98
+ You must remove the external test app and regenerate it:
99
+
100
+ ```bash
101
+ $ rm -Rf spec/decidim_dummy_app
102
+ $ bundle exec rails decidim:generate_external_test_app
103
+ ```
104
+
105
+ After regenerating the test app you should recreate the test database as well:
106
+
107
+ ```bash
108
+ $ cd spec/decidim_dummy_app
109
+ $ bundle exec rails db:drop
110
+ $ bundle exec rails db:create
111
+ $ bundle exec rails db:migrate
112
+ $ bundle exec rails db:migrate RAILS_ENV=test
113
+ $ bundle exec rails db:seed
114
+ ```
115
+ ### Adapting code for an existing Decidim implementation.
116
+
117
+ After updating the decidim gems you should import the new migrations and execute them:
118
+
119
+ ```bash
120
+ $ rails decidim:upgraded
121
+ $ rails db:migrate
122
+ ```
123
+
124
+ Additionally you should change the way uglifier is used in your app:
125
+
126
+ Edit the file *config/environments/production.rb* and make the following changes:
127
+
128
+ ```ruby
129
+ # Original value
130
+ # config.assets.js_compressor = :uglifier
131
+
132
+ # Enable ES6 support
133
+ config.assets.js_compressor = Uglifier.new(harmony: true)
134
+ ```
135
+ # To sum it up.
136
+
137
+ Take a cold beer and enjoy democracy.
data/lib/decidim.rb CHANGED
@@ -9,12 +9,7 @@ require "decidim/version"
9
9
  require "decidim/verifications"
10
10
 
11
11
  require "decidim/participatory_processes"
12
-
13
- begin
14
- require "decidim/assemblies"
15
- rescue LoadError
16
- nil
17
- end
12
+ require "decidim/assemblies"
18
13
 
19
14
  require "decidim/pages"
20
15
  require "decidim/comments"
@@ -23,6 +18,7 @@ require "decidim/proposals"
23
18
  require "decidim/budgets"
24
19
  require "decidim/surveys"
25
20
  require "decidim/accountability"
21
+ require "decidim/debates"
26
22
 
27
23
  # Module declaration.
28
24
  module Decidim
@@ -0,0 +1,98 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ #
5
+ # Handles a decidim components.
6
+ #
7
+ # Allows to perform custom operations on all modules in a given folder, or on
8
+ # specific module folders.
9
+ #
10
+ # Potential operations are:
11
+ #
12
+ # * Running custom commands, via the `run` method, such as releasing it, or
13
+ # installing it locally.
14
+ #
15
+ # * Updating version files from the main `.decidim-version` file in the root
16
+ # of the repository.
17
+ #
18
+ class ComponentManager
19
+ def initialize(dir)
20
+ @dir = File.expand_path(dir)
21
+ end
22
+
23
+ def run(command, out: STDOUT)
24
+ command = command.gsub("%version", version).gsub("%name", name)
25
+ status = system(command, out: out)
26
+ abort unless status || ENV["FAIL_FAST"] == "false"
27
+ end
28
+
29
+ def replace_version
30
+ self.class.replace_file(
31
+ "lib/#{name.tr("-", "/")}/version.rb",
32
+ /def self\.version(\s*)"[^"]*"/,
33
+ "def self.version\\1\"#{version}\""
34
+ )
35
+ end
36
+
37
+ class << self
38
+ def replace_versions
39
+ replace_file(
40
+ "package.json",
41
+ /^ "version": "[^"]*"/,
42
+ " \"version\": \"#{version.gsub(/\.pre/, "-pre")}\""
43
+ )
44
+
45
+ in_all_dirs do |dir|
46
+ new(dir).replace_version
47
+ end
48
+ end
49
+
50
+ def run_all(command, out: STDOUT, include_root: true)
51
+ in_all_dirs(include_root: include_root) do |dir|
52
+ new(dir).run(command, out: out)
53
+ end
54
+ end
55
+
56
+ def version
57
+ File.read(version_file).strip
58
+ end
59
+
60
+ def version_file
61
+ File.expand_path(File.join("..", "..", ".decidim-version"), __dir__)
62
+ end
63
+
64
+ def replace_file(name, regexp, replacement)
65
+ new_content = File.read(name).gsub(regexp, replacement)
66
+
67
+ File.open(name, "w") { |f| f.write(new_content) }
68
+ end
69
+
70
+ private
71
+
72
+ def all_dirs(include_root: true)
73
+ Dir.glob(include_root ? "{decidim-*,.}" : "decidim-*")
74
+ .select { |f| File.directory?(f) }
75
+ end
76
+
77
+ def in_all_dirs(include_root: true)
78
+ all_dirs(include_root: include_root).each do |dir|
79
+ Dir.chdir(dir) { yield(dir) }
80
+ end
81
+ end
82
+ end
83
+
84
+ private
85
+
86
+ def name
87
+ File.basename(@dir)
88
+ end
89
+
90
+ def short_name
91
+ name.gsub(/decidim-/, "")
92
+ end
93
+
94
+ def version
95
+ self.class.version
96
+ end
97
+ end
98
+ end
@@ -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.8.4"
6
+ "0.9.0"
7
7
  end
8
8
  end
@@ -24,28 +24,35 @@ module Decidim
24
24
 
25
25
  source_root File.expand_path("templates", __dir__)
26
26
 
27
- class_option :path, type: :string, default: nil,
27
+ class_option :path, type: :string,
28
+ default: nil,
28
29
  desc: "Path to the gem"
29
30
 
30
- class_option :edge, type: :boolean, default: false,
31
+ class_option :edge, type: :boolean,
32
+ default: false,
31
33
  desc: "Use GitHub's edge version from master branch"
32
34
 
33
- class_option :branch, type: :string, default: nil,
35
+ class_option :branch, type: :string,
36
+ default: nil,
34
37
  desc: "Use a specific branch from GitHub's version"
35
38
 
36
- class_option :database, type: :string, aliases: "-d", default: "postgresql",
39
+ class_option :database, type: :string,
40
+ default: "postgresql",
37
41
  desc: "Configure for selected database (options: #{DATABASES.join("/")})"
38
42
 
39
- class_option :recreate_db, type: :boolean, default: false,
43
+ class_option :recreate_db, type: :boolean,
44
+ default: false,
40
45
  desc: "Recreate test database"
41
46
 
42
- class_option :seed_db, type: :boolean, default: false,
47
+ class_option :seed_db, type: :boolean,
48
+ default: false,
43
49
  desc: "Seed test database"
44
50
 
45
51
  class_option :app_const_base, type: :string,
46
52
  desc: "The application constant name"
47
53
 
48
- class_option :skip_bundle, type: :boolean, aliases: "-B", default: true,
54
+ class_option :skip_bundle, type: :boolean,
55
+ default: true,
49
56
  desc: "Don't run bundle install"
50
57
 
51
58
  class_option :skip_gemfile, type: :boolean,
@@ -97,9 +104,7 @@ module Decidim
97
104
  end
98
105
 
99
106
  def add_ignore_uploads
100
- unless options["skip_git"]
101
- append_file ".gitignore", "\n# Ignore public uploads\npublic/uploads"
102
- end
107
+ append_file ".gitignore", "\n# Ignore public uploads\npublic/uploads" unless options["skip_git"]
103
108
  end
104
109
 
105
110
  def remove_default_error_pages
@@ -110,9 +115,7 @@ module Decidim
110
115
  def authorization_handler
111
116
  template "initializer.rb", "config/initializers/decidim.rb"
112
117
 
113
- if options[:demo]
114
- template "example_authorization_handler.rb", "app/services/example_authorization_handler.rb"
115
- end
118
+ template "example_authorization_handler.rb", "app/services/example_authorization_handler.rb" if options[:demo]
116
119
  end
117
120
 
118
121
  def install
@@ -76,17 +76,6 @@ module Decidim
76
76
  | :enable_starttls_auto => Rails.application.secrets.smtp_starttls_auto,
77
77
  | :openssl_verify_mode => 'none'
78
78
  | }
79
- |
80
- | if Rails.application.secrets.sendgrid
81
- | config.action_mailer.default_options = {
82
- | "X-SMTPAPI" => {
83
- | filters: {
84
- | clicktrack: { settings: { enable: 0 } },
85
- | opentrack: { settings: { enable: 0 } }
86
- | }
87
- | }.to_json
88
- | }
89
- | end
90
79
  RUBY
91
80
  end
92
81
  end
@@ -4,10 +4,6 @@ Citizen Participation and Open Government application.
4
4
 
5
5
  This is the open-source repository for <%= app_name %>, based on [Decidim](https://github.com/decidim/decidim).
6
6
 
7
- ## Deploying the app
8
-
9
- An opinionated guide to deploy this app to Heroku can be found at [https://github.com/codegram/decidim-deploy-heroku](https://github.com/codegram/decidim-deploy-heroku).
10
-
11
7
  ## Setting up the application
12
8
 
13
9
  You will need to do some steps before having the app working properly once you've deployed it:
@@ -73,7 +73,7 @@ test:
73
73
  # for a full rundown on how to provide these environment variables in a
74
74
  # production deployment.
75
75
  #
76
- # On Heroku and other platform providers, you may have a full connection URL
76
+ # On some platform providers, you may have a full connection URL
77
77
  # available as an environment variable. For example:
78
78
  #
79
79
  # DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase"
@@ -52,11 +52,10 @@ test:
52
52
  production:
53
53
  <<: *default
54
54
  secret_key_base: <%%= ENV["SECRET_KEY_BASE"] %>
55
- sendgrid: <%%= !ENV["SENDGRID_USERNAME"].blank? %>
56
- smtp_username: <%%= ENV["SMTP_USERNAME"] || ENV["SENDGRID_USERNAME"] %>
57
- smtp_password: <%%= ENV["SMTP_PASSWORD"] || ENV["SENDGRID_PASSWORD"] %>
58
- smtp_address: <%%= ENV["SMTP_ADDRESS"] || "smtp.sendgrid.net" %>
59
- smtp_domain: <%%= ENV["SMTP_DOMAIN"] || "heroku.com" %>
55
+ smtp_username: <%%= ENV["SMTP_USERNAME"] %>
56
+ smtp_password: <%%= ENV["SMTP_PASSWORD"] %>
57
+ smtp_address: <%%= ENV["SMTP_ADDRESS"] %>
58
+ smtp_domain: <%%= ENV["SMTP_DOMAIN"] %>
60
59
  smtp_port: "587"
61
60
  smtp_starttls_auto: true
62
61
  smtp_authentication: "plain"
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.8.4
4
+ version: 0.9.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: 2018-01-16 00:00:00.000000000 Z
13
+ date: 2018-02-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: decidim-accountability
@@ -18,182 +18,210 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 0.8.4
21
+ version: 0.9.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.8.4
28
+ version: 0.9.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.8.4
35
+ version: 0.9.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.8.4
42
+ version: 0.9.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.8.4
49
+ version: 0.9.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.8.4
56
+ version: 0.9.0
57
+ - !ruby/object:Gem::Dependency
58
+ name: decidim-assemblies
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '='
62
+ - !ruby/object:Gem::Version
63
+ version: 0.9.0
64
+ type: :runtime
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '='
69
+ - !ruby/object:Gem::Version
70
+ version: 0.9.0
57
71
  - !ruby/object:Gem::Dependency
58
72
  name: decidim-budgets
59
73
  requirement: !ruby/object:Gem::Requirement
60
74
  requirements:
61
75
  - - '='
62
76
  - !ruby/object:Gem::Version
63
- version: 0.8.4
77
+ version: 0.9.0
64
78
  type: :runtime
65
79
  prerelease: false
66
80
  version_requirements: !ruby/object:Gem::Requirement
67
81
  requirements:
68
82
  - - '='
69
83
  - !ruby/object:Gem::Version
70
- version: 0.8.4
84
+ version: 0.9.0
71
85
  - !ruby/object:Gem::Dependency
72
86
  name: decidim-comments
73
87
  requirement: !ruby/object:Gem::Requirement
74
88
  requirements:
75
89
  - - '='
76
90
  - !ruby/object:Gem::Version
77
- version: 0.8.4
91
+ version: 0.9.0
78
92
  type: :runtime
79
93
  prerelease: false
80
94
  version_requirements: !ruby/object:Gem::Requirement
81
95
  requirements:
82
96
  - - '='
83
97
  - !ruby/object:Gem::Version
84
- version: 0.8.4
98
+ version: 0.9.0
85
99
  - !ruby/object:Gem::Dependency
86
100
  name: decidim-core
87
101
  requirement: !ruby/object:Gem::Requirement
88
102
  requirements:
89
103
  - - '='
90
104
  - !ruby/object:Gem::Version
91
- version: 0.8.4
105
+ version: 0.9.0
106
+ type: :runtime
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - '='
111
+ - !ruby/object:Gem::Version
112
+ version: 0.9.0
113
+ - !ruby/object:Gem::Dependency
114
+ name: decidim-debates
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - '='
118
+ - !ruby/object:Gem::Version
119
+ version: 0.9.0
92
120
  type: :runtime
93
121
  prerelease: false
94
122
  version_requirements: !ruby/object:Gem::Requirement
95
123
  requirements:
96
124
  - - '='
97
125
  - !ruby/object:Gem::Version
98
- version: 0.8.4
126
+ version: 0.9.0
99
127
  - !ruby/object:Gem::Dependency
100
128
  name: decidim-meetings
101
129
  requirement: !ruby/object:Gem::Requirement
102
130
  requirements:
103
131
  - - '='
104
132
  - !ruby/object:Gem::Version
105
- version: 0.8.4
133
+ version: 0.9.0
106
134
  type: :runtime
107
135
  prerelease: false
108
136
  version_requirements: !ruby/object:Gem::Requirement
109
137
  requirements:
110
138
  - - '='
111
139
  - !ruby/object:Gem::Version
112
- version: 0.8.4
140
+ version: 0.9.0
113
141
  - !ruby/object:Gem::Dependency
114
142
  name: decidim-pages
115
143
  requirement: !ruby/object:Gem::Requirement
116
144
  requirements:
117
145
  - - '='
118
146
  - !ruby/object:Gem::Version
119
- version: 0.8.4
147
+ version: 0.9.0
120
148
  type: :runtime
121
149
  prerelease: false
122
150
  version_requirements: !ruby/object:Gem::Requirement
123
151
  requirements:
124
152
  - - '='
125
153
  - !ruby/object:Gem::Version
126
- version: 0.8.4
154
+ version: 0.9.0
127
155
  - !ruby/object:Gem::Dependency
128
156
  name: decidim-participatory_processes
129
157
  requirement: !ruby/object:Gem::Requirement
130
158
  requirements:
131
159
  - - '='
132
160
  - !ruby/object:Gem::Version
133
- version: 0.8.4
161
+ version: 0.9.0
134
162
  type: :runtime
135
163
  prerelease: false
136
164
  version_requirements: !ruby/object:Gem::Requirement
137
165
  requirements:
138
166
  - - '='
139
167
  - !ruby/object:Gem::Version
140
- version: 0.8.4
168
+ version: 0.9.0
141
169
  - !ruby/object:Gem::Dependency
142
170
  name: decidim-proposals
143
171
  requirement: !ruby/object:Gem::Requirement
144
172
  requirements:
145
173
  - - '='
146
174
  - !ruby/object:Gem::Version
147
- version: 0.8.4
175
+ version: 0.9.0
148
176
  type: :runtime
149
177
  prerelease: false
150
178
  version_requirements: !ruby/object:Gem::Requirement
151
179
  requirements:
152
180
  - - '='
153
181
  - !ruby/object:Gem::Version
154
- version: 0.8.4
182
+ version: 0.9.0
155
183
  - !ruby/object:Gem::Dependency
156
184
  name: decidim-surveys
157
185
  requirement: !ruby/object:Gem::Requirement
158
186
  requirements:
159
187
  - - '='
160
188
  - !ruby/object:Gem::Version
161
- version: 0.8.4
189
+ version: 0.9.0
162
190
  type: :runtime
163
191
  prerelease: false
164
192
  version_requirements: !ruby/object:Gem::Requirement
165
193
  requirements:
166
194
  - - '='
167
195
  - !ruby/object:Gem::Version
168
- version: 0.8.4
196
+ version: 0.9.0
169
197
  - !ruby/object:Gem::Dependency
170
198
  name: decidim-system
171
199
  requirement: !ruby/object:Gem::Requirement
172
200
  requirements:
173
201
  - - '='
174
202
  - !ruby/object:Gem::Version
175
- version: 0.8.4
203
+ version: 0.9.0
176
204
  type: :runtime
177
205
  prerelease: false
178
206
  version_requirements: !ruby/object:Gem::Requirement
179
207
  requirements:
180
208
  - - '='
181
209
  - !ruby/object:Gem::Version
182
- version: 0.8.4
210
+ version: 0.9.0
183
211
  - !ruby/object:Gem::Dependency
184
212
  name: decidim-verifications
185
213
  requirement: !ruby/object:Gem::Requirement
186
214
  requirements:
187
215
  - - '='
188
216
  - !ruby/object:Gem::Version
189
- version: 0.8.4
217
+ version: 0.9.0
190
218
  type: :runtime
191
219
  prerelease: false
192
220
  version_requirements: !ruby/object:Gem::Requirement
193
221
  requirements:
194
222
  - - '='
195
223
  - !ruby/object:Gem::Version
196
- version: 0.8.4
224
+ version: 0.9.0
197
225
  - !ruby/object:Gem::Dependency
198
226
  name: bundler
199
227
  requirement: !ruby/object:Gem::Requirement
@@ -253,20 +281,30 @@ files:
253
281
  - Rakefile
254
282
  - bin/decidim
255
283
  - docs/analytics.md
284
+ - docs/content_processors.md
256
285
  - docs/create_followers_from_comment_authors.md
257
286
  - docs/create_followers_from_resource_authors.md
287
+ - docs/customization/authorizations.md
288
+ - docs/customization/code.md
289
+ - docs/customization/gemfile.md
290
+ - docs/customization/images.md
291
+ - docs/customization/javascript.md
292
+ - docs/customization/styles.md
293
+ - docs/customization/texts.md
294
+ - docs/customization/views.md
258
295
  - docs/features_and_components.md
259
296
  - docs/geocoding.md
260
297
  - docs/getting_started.md
261
- - docs/how_to_create_a_plugin.md
298
+ - docs/how_to_create_a_module.md
262
299
  - docs/managing_translations_i18n.md
300
+ - docs/migrate_to_0.8.0.md
263
301
  - docs/social_providers.md
264
302
  - docs/testing.md
265
303
  - docs/view_hooks.md
266
304
  - lib/decidim.rb
305
+ - lib/decidim/component_manager.rb
267
306
  - lib/decidim/version.rb
268
307
  - lib/generators/decidim/app_generator.rb
269
- - lib/generators/decidim/docker_generator.rb
270
308
  - lib/generators/decidim/install_generator.rb
271
309
  - lib/generators/decidim/templates/Dockerfile.erb
272
310
  - lib/generators/decidim/templates/README.md.erb
@@ -292,7 +330,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
292
330
  requirements:
293
331
  - - ">="
294
332
  - !ruby/object:Gem::Version
295
- version: 2.3.1
333
+ version: '2.3'
296
334
  required_rubygems_version: !ruby/object:Gem::Requirement
297
335
  requirements:
298
336
  - - ">="
@@ -300,7 +338,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
300
338
  version: '0'
301
339
  requirements: []
302
340
  rubyforge_project:
303
- rubygems_version: 2.6.13
341
+ rubygems_version: 2.7.3
304
342
  signing_key:
305
343
  specification_version: 4
306
344
  summary: Citizen participation framework for Ruby on Rails.