decidim 0.0.1.alpha7 → 0.0.1.alpha8

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.

Files changed (143) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +2 -1
  3. data/.eslintignore +1 -0
  4. data/.eslintrc.json +12 -0
  5. data/.github/ISSUE_TEMPLATE.md +12 -0
  6. data/.github/PULL_REQUEST_TEMPLATE.md +8 -11
  7. data/.gitignore +1 -0
  8. data/.hound.yml +4 -0
  9. data/.rubocop.yml +14 -1
  10. data/.travis.yml +20 -4
  11. data/CODE_OF_CONDUCT.md +1 -1
  12. data/Dockerfile +1 -0
  13. data/Gemfile +3 -2
  14. data/Gemfile.common +1 -1
  15. data/Gemfile.lock +68 -39
  16. data/LICENSE.txt +619 -21
  17. data/README.md +17 -13
  18. data/Rakefile +1 -1
  19. data/codecov.yml +6 -1
  20. data/crowdin.yaml +4 -0
  21. data/decidim-admin/LICENSE.txt +619 -0
  22. data/decidim-admin/README.md +1 -1
  23. data/decidim-admin/app/assets/javascripts/decidim/admin/application.js.es6 +12 -0
  24. data/decidim-admin/app/assets/javascripts/decidim/admin/sort_steps.js.es6 +21 -0
  25. data/decidim-admin/app/assets/stylesheets/decidim/admin/_tables.scss +9 -0
  26. data/decidim-admin/app/commands/decidim/admin/activate_participatory_process_step.rb +43 -0
  27. data/decidim-admin/app/commands/decidim/admin/create_participatory_process.rb +1 -0
  28. data/decidim-admin/app/commands/decidim/admin/create_participatory_process_step.rb +46 -0
  29. data/decidim-admin/app/commands/decidim/admin/deactivate_participatory_process_step.rb +35 -0
  30. data/decidim-admin/app/commands/decidim/admin/publish_participatory_process.rb +35 -0
  31. data/decidim-admin/app/commands/decidim/admin/reorder_participatory_process_steps.rb +47 -0
  32. data/decidim-admin/app/commands/decidim/admin/unpublish_participatory_process.rb +35 -0
  33. data/decidim-admin/app/commands/decidim/admin/update_participatory_process.rb +1 -0
  34. data/decidim-admin/app/commands/decidim/admin/update_participatory_process_step.rb +49 -0
  35. data/decidim-admin/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
  36. data/decidim-admin/app/controllers/decidim/admin/application_controller.rb +4 -0
  37. data/decidim-admin/app/controllers/decidim/admin/dashboard_controller.rb +1 -9
  38. data/decidim-admin/app/controllers/decidim/admin/participatory_process_publications_controller.rb +49 -0
  39. data/decidim-admin/app/controllers/decidim/admin/participatory_process_step_activations_controller.rb +56 -0
  40. data/decidim-admin/app/controllers/decidim/admin/participatory_process_step_ordering_controller.rb +30 -0
  41. data/decidim-admin/app/controllers/decidim/admin/participatory_process_steps_controller.rb +81 -0
  42. data/decidim-admin/app/controllers/decidim/admin/participatory_processes_controller.rb +7 -12
  43. data/decidim-admin/app/forms/decidim/admin/participatory_process_form.rb +1 -0
  44. data/decidim-admin/app/forms/decidim/admin/participatory_process_step_form.rb +25 -0
  45. data/decidim-admin/app/helpers/decidim/admin/application_helper.rb +1 -0
  46. data/decidim-admin/app/mailers/decidim/admin/application_mailer.rb +1 -1
  47. data/decidim-admin/app/models/decidim/admin/abilities/admin.rb +21 -0
  48. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/_form.html.erb +19 -0
  49. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/_table.html.erb +53 -0
  50. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/edit.html.erb +11 -0
  51. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/new.html.erb +11 -0
  52. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/show.html.erb +22 -0
  53. data/decidim-admin/app/views/decidim/admin/participatory_processes/_form.html.erb +4 -0
  54. data/decidim-admin/app/views/decidim/admin/participatory_processes/index.html.erb +22 -2
  55. data/decidim-admin/app/views/decidim/admin/participatory_processes/show.html.erb +21 -2
  56. data/decidim-admin/config/i18n-tasks.yml +2 -2
  57. data/decidim-admin/config/locales/ca.yml +55 -2
  58. data/decidim-admin/config/locales/en.yml +55 -2
  59. data/decidim-admin/config/locales/es.yml +56 -3
  60. data/decidim-admin/config/routes.rb +10 -1
  61. data/decidim-admin/decidim-admin.gemspec +6 -7
  62. data/decidim-admin/lib/decidim/admin/engine.rb +6 -1
  63. data/decidim-admin/spec/commands/activate_participatory_process_step_spec.rb +44 -0
  64. data/decidim-admin/spec/commands/deactivate_participatory_process_step_spec.rb +35 -0
  65. data/decidim-admin/spec/commands/publish_participatory_process_spec.rb +35 -0
  66. data/decidim-admin/spec/commands/reorder_participatory_process_steps_spec.rb +53 -0
  67. data/decidim-admin/spec/commands/unpublish_participatory_process_spec.rb +35 -0
  68. data/decidim-admin/spec/controllers/participatory_processes_controller_spec.rb +32 -0
  69. data/decidim-admin/spec/features/manage_participatory_process_steps_spec.rb +151 -0
  70. data/decidim-admin/spec/features/manage_participatory_processes_spec.rb +87 -39
  71. data/decidim-admin/spec/forms/participatory_process_form_spec.rb +122 -0
  72. data/decidim-admin/spec/forms/participatory_process_step_form_spec.rb +113 -0
  73. data/decidim-admin/spec/models/abilities/admin_spec.rb +25 -0
  74. data/decidim-admin/spec/spec_helper.rb +0 -1
  75. data/decidim-admin/vendor/assets/javascripts/html.sortable.min.js +2 -0
  76. data/decidim-api/.gitignore +7 -0
  77. data/decidim-api/LICENSE.txt +619 -0
  78. data/decidim-api/README.md +28 -0
  79. data/decidim-api/Rakefile +27 -0
  80. data/decidim-api/app/controllers/decidim/api/application_controller.rb +9 -0
  81. data/decidim-api/app/controllers/decidim/api/queries_controller.rb +33 -0
  82. data/decidim-api/app/schemas/decidim/api/schema.rb +9 -0
  83. data/decidim-api/app/types/decidim/api/localized_string_type.rb +13 -0
  84. data/decidim-api/app/types/decidim/api/process_step_type.rb +26 -0
  85. data/decidim-api/app/types/decidim/api/process_type.rb +18 -0
  86. data/decidim-api/app/types/decidim/api/query_type.rb +19 -0
  87. data/decidim-api/app/types/decidim/api/translated_field_type.rb +44 -0
  88. data/decidim-api/bin/rails +14 -0
  89. data/decidim-api/config/routes.rb +6 -0
  90. data/decidim-api/decidim-api.gemspec +27 -0
  91. data/decidim-api/lib/decidim/api.rb +9 -0
  92. data/decidim-api/lib/decidim/api/engine.rb +22 -0
  93. data/decidim-api/lib/tasks/decidim/api_tasks.rake +5 -0
  94. data/decidim-api/spec/controllers/queries_controller_spec.rb +22 -0
  95. data/decidim-api/spec/factories.rb +1 -0
  96. data/decidim-api/spec/schemas/schema_spec.rb +38 -0
  97. data/decidim-api/spec/spec_helper.rb +2 -0
  98. data/decidim-api/spec/support/type_helpers.rb +46 -0
  99. data/decidim-api/spec/types/localized_string_type_spec.rb +30 -0
  100. data/decidim-api/spec/types/process_step_type_spec.rb +50 -0
  101. data/decidim-api/spec/types/process_type_spec.rb +39 -0
  102. data/decidim-api/spec/types/query_type_spec.rb +24 -0
  103. data/decidim-api/spec/types/translated_field_type_spec.rb +68 -0
  104. data/decidim-dev/README.md +1 -1
  105. data/decidim-dev/decidim-dev.gemspec +5 -3
  106. data/decidim-dev/lib/decidim/dummy_authorization_handler.rb +18 -0
  107. data/decidim-dev/lib/decidim/test/authorization_shared_examples.rb +31 -0
  108. data/decidim-dev/lib/decidim/test/base_spec_helper.rb +6 -1
  109. data/decidim-dev/lib/decidim/test/rspec_support/authenticated_controller_context.rb +9 -0
  110. data/decidim-dev/lib/decidim/test/rspec_support/authorization_handlers.rb +7 -0
  111. data/decidim-dev/lib/decidim/test/rspec_support/bullet.rb +15 -0
  112. data/decidim-dev/lib/decidim/test/rspec_support/engine_routes.rb +30 -0
  113. data/decidim-dev/lib/decidim/test/rspec_support/translation_helpers.rb +12 -0
  114. data/decidim-dev/lib/generators/decidim/dummy_generator.rb +10 -0
  115. data/decidim-dev/lib/generators/decidim/templates/bullet.rb +6 -0
  116. data/decidim-system/LICENSE.txt +619 -0
  117. data/decidim-system/README.md +1 -1
  118. data/decidim-system/app/assets/javascripts/decidim/system/application.js.es6 +10 -0
  119. data/decidim-system/app/mailers/decidim/system/application_mailer.rb +1 -1
  120. data/decidim-system/decidim-system.gemspec +4 -4
  121. data/decidim.gemspec +3 -2
  122. data/lib/decidim.rb +1 -6
  123. data/lib/generators/decidim/app_generator.rb +13 -1
  124. data/lib/generators/decidim/install_generator.rb +11 -2
  125. data/lib/generators/decidim/templates/Gemfile.erb +5 -2
  126. data/lib/generators/decidim/templates/authorization_handler.rb +50 -0
  127. data/lib/generators/decidim/templates/carrierwave.rb +27 -0
  128. data/lib/generators/decidim/templates/decidim.scss.erb +3 -0
  129. data/lib/generators/decidim/templates/initializer.rb +3 -1
  130. data/package.json +21 -0
  131. data/yarn.lock +890 -0
  132. metadata +102 -21
  133. data/.eslintrc +0 -213
  134. data/decidim-admin/app/assets/javascripts/decidim/admin/application.js +0 -22
  135. data/decidim-admin/app/controllers/concerns/decidim/needs_authorization.rb +0 -50
  136. data/decidim-admin/app/policies/decidim/admin/application_policy.rb +0 -20
  137. data/decidim-admin/app/policies/decidim/admin/dashboard_policy.rb +0 -15
  138. data/decidim-admin/app/policies/decidim/admin/organization_policy.rb +0 -15
  139. data/decidim-admin/app/policies/decidim/admin/participatory_process_policy.rb +0 -57
  140. data/decidim-admin/spec/policies/dashboard_policy_spec.rb +0 -23
  141. data/decidim-admin/spec/policies/organization_policy_spec.rb +0 -41
  142. data/decidim-admin/spec/policies/participatory_process_policy_spec.rb +0 -153
  143. data/decidim-system/app/assets/javascripts/decidim/system/application.js +0 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f14fd87a5f38c11d95b27cdeba9a3f4c09e9c6f8
4
- data.tar.gz: da02fc79523116fa641cda69a1ad121994d1f54a
3
+ metadata.gz: 87fbe28a0d0554da137f46c61a09e7d45e96d51d
4
+ data.tar.gz: 2042c7167655b23dd15f4d96631adc59ea7aaf98
5
5
  SHA512:
6
- metadata.gz: 82d97822e84abe49e0cf3569ef8dbc30ddd50bfc9fc9b8fef8e3b104c7a588a7fc3068050d60151375f6e74a06a7dd5d3ba5306f04d02f808523e4d0b734fec6
7
- data.tar.gz: a529809e9672ef250bf1bdfdfac31265fcfb2c67da1b58050ccb6320b985ec5f97f3bbfe53b4d01b63372e5762e5156337502d3283f2737cf38307c672f15392
6
+ metadata.gz: ee10372507c4494ac0ecc1f3fc5843343980e3e1b870173b2a264c52191f9d256604091fbec83b5736bdf51b7297df19ebe90243858cebf0f618f4c49942a46d
7
+ data.tar.gz: e926ec6cc001fed3e5f3abe5eebfc1db499c1f0bb6edc9a3a5f2bf90a8100aa50db1360996350eb03edff7268fa82188b4df33a5c09464fdcb36b72481570d08
data/.codeclimate.yml CHANGED
@@ -16,7 +16,7 @@ engines:
16
16
  - b0c92f6cd3876fc88891cbd4ff26faea
17
17
  - 2804eaecd03c1e9786c9a6f7007dd61e
18
18
  eslint:
19
- enabled: true
19
+ enabled: false
20
20
  fixme:
21
21
  enabled: true
22
22
  rubocop:
@@ -36,6 +36,7 @@ exclude_paths:
36
36
  - "**/spec/**/*"
37
37
  - "**/*/Rakefile"
38
38
  - "**/vendor/**/*"
39
+ - "**/db/**/*"
39
40
  - "decidim-core/app/assets/stylesheets/decidim/email.css"
40
41
  - .rubocop.yml
41
42
  - lib/generators/decidim/templates/app.json.erb
data/.eslintignore CHANGED
@@ -1 +1,2 @@
1
1
  **/*{.,-}min.js
2
+ decidim-*/vendor/**/*.js
data/.eslintrc.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "env": {
3
+ "browser": true,
4
+ "es6": false
5
+ },
6
+ "extends": "airbnb",
7
+ "globals": {
8
+ "$": true,
9
+ "jQuery": true
10
+ },
11
+ "rules": {}
12
+ }
@@ -0,0 +1,12 @@
1
+ #### :tophat: User Story
2
+
3
+
4
+ #### :clipboard: Related documentation
5
+
6
+
7
+ #### :dart: Acceptance criteria
8
+
9
+
10
+ #### :pushpin: Related issues
11
+
12
+
@@ -1,19 +1,16 @@
1
1
  #### :tophat: What? Why?
2
2
 
3
3
 
4
- #### :dart: Acceptance criteria?
5
-
6
-
7
- #### :pushpin: Related tasks?
8
-
9
-
10
- #### :family: Dependencies?
11
-
4
+ #### :pushpin: Related Issues
5
+ - Related to #?
6
+ - Fixes #?
12
7
 
13
8
  #### :clipboard: Subtasks
14
- - [x]
15
- - [ ]
9
+ - [x] Subtask 1
10
+ - [ ] Subtask 2
16
11
 
12
+ ### :camera: Screenshots (optional)
13
+ ![Description](URL)
17
14
 
18
15
  #### :ghost: GIF
19
- ![]()
16
+ ![]()
data/.gitignore CHANGED
@@ -4,3 +4,4 @@ pkg/
4
4
  vendor/bundle
5
5
  */Gemfile.lock
6
6
  .DS_Store
7
+ node_modules/
data/.hound.yml CHANGED
@@ -4,5 +4,9 @@ scss:
4
4
  enabled: false
5
5
  jshint:
6
6
  enabled: false
7
+ eslint:
8
+ enabled: true
9
+ config_file: .eslintrc.json
10
+ ignore_file: .eslintignore
7
11
 
8
12
  fail_on_violations: true
data/.rubocop.yml CHANGED
@@ -21,6 +21,7 @@ AllCops:
21
21
  - '**/*Fastfile'
22
22
  Exclude:
23
23
  - '**/Gemfile'
24
+ - '**/*.gemspec'
24
25
  - 'vendor/**/*'
25
26
  - 'spec/*'
26
27
  - 'decidim-*/spec/**/*'
@@ -75,7 +76,7 @@ AllCops:
75
76
  # If a value is specified for TargetRubyVersion then it is used.
76
77
  # Else if .ruby-version exists and it contains an MRI version it is used.
77
78
  # Otherwise we fallback to the oldest officially supported Ruby version (2.0).
78
- TargetRubyVersion: ~
79
+ TargetRubyVersion: 2.3
79
80
 
80
81
  # Indent private/protected/public as deep as method definitions
81
82
  Style/AccessModifierIndentation:
@@ -625,6 +626,9 @@ Style/Lambda:
625
626
  - line_count_dependent
626
627
  - lambda
627
628
  - literal
629
+ Exclude:
630
+ - 'decidim-api/app/schemas/**/*'
631
+ - 'decidim-api/app/types/**/*'
628
632
 
629
633
  Style/LambdaCall:
630
634
  EnforcedStyle: call
@@ -1291,3 +1295,12 @@ Rails/UniqBeforePluck:
1291
1295
  Rails/Validation:
1292
1296
  Include:
1293
1297
  - app/models/**/*.rb
1298
+
1299
+ Metrics/BlockLength:
1300
+ Exclude:
1301
+ - 'decidim-api/app/schemas/**/*'
1302
+ - 'decidim-api/app/types/**/*'
1303
+
1304
+ Lint/HandleExceptions:
1305
+ Exclude:
1306
+ - "**/*/Rakefile"
data/.travis.yml CHANGED
@@ -3,23 +3,36 @@ dist: trusty
3
3
 
4
4
  services:
5
5
  - docker
6
+ - postgres
6
7
 
7
8
  language: ruby
8
9
 
9
- cache:
10
- bundler: true
11
-
12
10
  env:
13
11
  - GEM=. DB=postgres
14
12
  - GEM=decidim-admin DB=postgres
15
13
  - GEM=decidim-core DB=postgres
16
14
  - GEM=decidim-system DB=postgres
15
+ - GEM=decidim-api DB=postgres
17
16
 
18
17
  before_install:
18
+ # Repo for newer Node.js versions
19
+ - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
20
+ # Repo for Yarn
21
+ - sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3
22
+ - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
23
+ - sudo apt-get update -qq
24
+ - sudo apt-get install -y -qq yarn
25
+ - yarn
19
26
  - export BUNDLE_GEMFILE="$TRAVIS_BUILD_DIR/Gemfile"
20
- - cd $GEM;
27
+
28
+ cache:
29
+ bundler: true
30
+ directories:
31
+ - $HOME/.yarn-cache
21
32
 
22
33
  script:
34
+ - yarn run eslint $GEM/app/**/*.js.es6 $GEM/app/**/*.js
35
+ - cd $GEM;
23
36
  - $TRAVIS_BUILD_DIR/run_ci.sh
24
37
 
25
38
  rvm:
@@ -27,3 +40,6 @@ rvm:
27
40
 
28
41
  notifications:
29
42
  email: false
43
+
44
+ addons:
45
+ postgresql: "9.4"
data/CODE_OF_CONDUCT.md CHANGED
@@ -46,4 +46,4 @@ version 1.3.0, available at
46
46
  [http://contributor-covenant.org/version/1/3/0/][version]
47
47
 
48
48
  [homepage]: http://contributor-covenant.org
49
- [version]: http://contributor-covenant.org/version/1/3/0/
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Dockerfile CHANGED
@@ -17,6 +17,7 @@ ADD decidim-core/lib/decidim/core/version.rb /tmp/decidim-core/lib/decidim/core/
17
17
  ADD decidim-system/decidim-system.gemspec /tmp/decidim-system/decidim-system.gemspec
18
18
  ADD decidim-admin/decidim-admin.gemspec /tmp/decidim-admin/decidim-admin.gemspec
19
19
  ADD decidim-dev/decidim-dev.gemspec /tmp/decidim-dev/decidim-dev.gemspec
20
+ ADD decidim-api/decidim-api.gemspec /tmp/decidim-api/decidim-api.gemspec
20
21
 
21
22
  RUN cd /tmp && bundle install
22
23
 
data/Gemfile CHANGED
@@ -8,10 +8,11 @@ gemspec path: "decidim-core"
8
8
  gemspec path: "decidim-system"
9
9
  gemspec path: "decidim-admin"
10
10
  gemspec path: "decidim-dev"
11
+ gemspec path: "decidim-api"
11
12
 
12
- gem "rubocop"
13
+ gem "rubocop", "~> 0.45"
13
14
  gem "rspec_junit_formatter", "0.2.3"
14
15
  gem "simplecov", "~> 0.12"
15
- gem "codecov", "~> 0.1.5"
16
+ gem "codecov", "~> 0.1.6"
16
17
 
17
18
  eval(File.read(File.join(File.dirname(__FILE__), "Gemfile.common")))
data/Gemfile.common CHANGED
@@ -1 +1 @@
1
- gem "foundation_rails_helper", git: "https://github.com/sgruhier/foundation_rails_helper"
1
+ gem "foundation_rails_helper", git: "https://github.com/sgruhier/foundation_rails_helper.git", tag: "df0bd8e"
data/Gemfile.lock CHANGED
@@ -1,6 +1,7 @@
1
1
  GIT
2
- remote: https://github.com/sgruhier/foundation_rails_helper
3
- revision: d8819b3a5f9d82251aac7559e0d07505c9777717
2
+ remote: https://github.com/sgruhier/foundation_rails_helper.git
3
+ revision: df0bd8eca1b43b8bfdcb163f9e1e3b3b9ab0595e
4
+ tag: df0bd8e
4
5
  specs:
5
6
  foundation_rails_helper (2.0.0)
6
7
  actionpack (>= 4.1)
@@ -12,61 +13,79 @@ GIT
12
13
  PATH
13
14
  remote: .
14
15
  specs:
15
- decidim (0.0.1.alpha7)
16
- decidim-admin (= 0.0.1.alpha7)
17
- decidim-core (= 0.0.1.alpha7)
18
- decidim-system (= 0.0.1.alpha7)
16
+ decidim (0.0.1.alpha8)
17
+ decidim-admin (= 0.0.1.alpha8)
18
+ decidim-api (= 0.0.1.alpha8)
19
+ decidim-core (= 0.0.1.alpha8)
20
+ decidim-system (= 0.0.1.alpha8)
19
21
  rails (~> 5.0.0)
20
22
  rails-i18n (~> 5.0.0)
21
23
 
22
24
  PATH
23
25
  remote: decidim-admin
24
26
  specs:
25
- decidim-admin (0.0.1.alpha7)
27
+ decidim-admin (0.0.1.alpha8)
26
28
  active_link_to (~> 1.0.0)
27
- carrierwave (~> 1.0.0.beta)
28
- decidim-core (= 0.0.1.alpha7)
29
+ cancancan (~> 1.15.0)
30
+ carrierwave (~> 1.0.0.rc)
31
+ decidim-core (= 0.0.1.alpha8)
29
32
  devise (~> 4.2)
30
33
  devise-i18n (~> 1.1.0)
31
34
  devise_invitable (~> 1.7.0)
32
- foundation-rails (~> 6.2.3.0)
35
+ foundation-rails (~> 6.2.4.0)
33
36
  foundation_rails_helper (~> 2.0.0)
34
37
  jbuilder (~> 2.5)
35
38
  jquery-rails (~> 4.0)
36
- pundit (~> 1.1.0)
37
39
  rails (~> 5.0.0)
38
- rectify (~> 0.6)
40
+ rectify (~> 0.7.1)
39
41
  sass-rails (~> 5.0.0)
40
42
  turbolinks (~> 5.0.0)
41
43
 
44
+ PATH
45
+ remote: decidim-api
46
+ specs:
47
+ decidim-api (0.0.1.alpha8)
48
+ decidim-core (= 0.0.1.alpha8)
49
+ graphiql-rails (~> 1.3.0)
50
+ graphql (~> 0.19.4)
51
+ rack-cors (~> 0.4.0)
52
+ rails (~> 5.0.0)
53
+
42
54
  PATH
43
55
  remote: decidim-core
44
56
  specs:
45
- decidim-core (0.0.1.alpha7)
57
+ decidim-core (0.0.1.alpha8)
46
58
  active_link_to (~> 1.0.0)
59
+ cancancan (~> 1.15.0)
60
+ carrierwave (~> 1.0.0.rc)
61
+ date_validator (~> 0.9.0)
47
62
  devise (~> 4.2)
48
63
  devise-i18n (~> 1.1.0)
49
- foundation-rails (~> 6.2.3.0)
64
+ foundation-rails (~> 6.2.4.0)
50
65
  foundation_rails_helper (~> 2.0.0)
66
+ high_voltage (~> 3.0.0)
51
67
  jbuilder (~> 2.5)
52
68
  jquery-rails (~> 4.0)
53
69
  pg (~> 0.19.0)
54
70
  rails (~> 5.0.0)
55
- rectify (~> 0.6)
71
+ rectify (~> 0.7.1)
56
72
  redis (~> 3.3.0)
57
73
  roadie-rails (~> 1.0)
58
74
  sass-rails (~> 5.0.0)
75
+ sprockets-es6 (~> 0.9.2)
59
76
  turbolinks (~> 5.0.0)
60
77
 
61
78
  PATH
62
79
  remote: decidim-dev
63
80
  specs:
64
- decidim-dev (0.0.1.alpha7)
81
+ decidim-dev (0.0.1.alpha8)
82
+ bullet (~> 5)
65
83
  byebug
66
84
  capybara (~> 2.10.0)
67
85
  database_cleaner (~> 1.5.0)
68
86
  factory_girl_rails
69
- i18n-tasks (~> 0.9.5)
87
+ faker (~> 1.6.6)
88
+ i18n-tasks (~> 0.9.6)
70
89
  launchy
71
90
  listen (~> 3.1.0)
72
91
  rspec-rails (~> 3.5)
@@ -75,18 +94,18 @@ PATH
75
94
  PATH
76
95
  remote: decidim-system
77
96
  specs:
78
- decidim-system (0.0.1.alpha7)
97
+ decidim-system (0.0.1.alpha8)
79
98
  active_link_to (~> 1.0.0)
80
- decidim-core (= 0.0.1.alpha7)
99
+ decidim-core (= 0.0.1.alpha8)
81
100
  devise (~> 4.2)
82
101
  devise-i18n (~> 1.1.0)
83
102
  devise_invitable (~> 1.7.0)
84
- foundation-rails (~> 6.2.3.0)
103
+ foundation-rails (~> 6.2.4.0)
85
104
  foundation_rails_helper (~> 2.0.0)
86
105
  jbuilder (~> 2.5)
87
106
  jquery-rails (~> 4.0)
88
107
  rails (~> 5.0.0)
89
- rectify (~> 0.6)
108
+ rectify (~> 0.7.1)
90
109
  sass-rails (~> 5.0.0)
91
110
  turbolinks (~> 5.0.0)
92
111
 
@@ -145,7 +164,11 @@ GEM
145
164
  execjs (~> 2.0)
146
165
  bcrypt (3.1.11)
147
166
  builder (3.2.2)
167
+ bullet (5.4.2)
168
+ activesupport (>= 3.0.0)
169
+ uniform_notifier (~> 1.10.0)
148
170
  byebug (9.0.6)
171
+ cancancan (1.15.0)
149
172
  capybara (2.10.1)
150
173
  addressable
151
174
  mime-types (>= 1.16)
@@ -153,20 +176,23 @@ GEM
153
176
  rack (>= 1.0.0)
154
177
  rack-test (>= 0.5.4)
155
178
  xpath (~> 2.0)
156
- carrierwave (1.0.0.beta)
179
+ carrierwave (1.0.0.rc)
157
180
  activemodel (>= 4.0.0)
158
181
  activesupport (>= 4.0.0)
159
182
  mime-types (>= 1.16)
160
- codecov (0.1.5)
183
+ codecov (0.1.6)
161
184
  json
162
185
  simplecov
163
186
  url
164
187
  coercible (1.0.0)
165
188
  descendants_tracker (~> 0.0.1)
166
189
  concurrent-ruby (1.0.2)
167
- css_parser (1.4.5)
190
+ css_parser (1.4.6)
168
191
  addressable
169
192
  database_cleaner (1.5.3)
193
+ date_validator (0.9.0)
194
+ activemodel
195
+ activesupport
170
196
  descendants_tracker (0.0.4)
171
197
  thread_safe (~> 0.3, >= 0.3.1)
172
198
  devise (4.2.0)
@@ -175,7 +201,7 @@ GEM
175
201
  railties (>= 4.1.0, < 5.1)
176
202
  responders
177
203
  warden (~> 1.2.3)
178
- devise-i18n (1.1.0)
204
+ devise-i18n (1.1.1)
179
205
  devise_invitable (1.7.0)
180
206
  actionmailer (>= 4.0.0)
181
207
  devise (>= 4.0.0)
@@ -193,16 +219,22 @@ GEM
193
219
  factory_girl_rails (4.7.0)
194
220
  factory_girl (~> 4.7.0)
195
221
  railties (>= 3.0.0)
222
+ faker (1.6.6)
223
+ i18n (~> 0.5)
196
224
  ffi (1.9.14)
197
- foundation-rails (6.2.3.0)
225
+ foundation-rails (6.2.4.0)
198
226
  railties (>= 3.1.0)
199
227
  sass (>= 3.3.0, < 3.5)
200
228
  sprockets-es6 (>= 0.9.0)
201
229
  globalid (0.3.7)
202
230
  activesupport (>= 4.1.0)
231
+ graphiql-rails (1.3.0)
232
+ rails
233
+ graphql (0.19.4)
234
+ high_voltage (3.0.0)
203
235
  highline (1.7.8)
204
236
  i18n (0.7.0)
205
- i18n-tasks (0.9.5)
237
+ i18n-tasks (0.9.6)
206
238
  activesupport (>= 4.0.2)
207
239
  ast (>= 2.1.0)
208
240
  easy_translate (>= 0.5.0)
@@ -246,12 +278,8 @@ GEM
246
278
  ast (~> 2.2)
247
279
  pg (0.19.0)
248
280
  powerpack (0.1.1)
249
- pundit (1.1.0)
250
- activesupport (>= 3.0.0)
251
- pundit-matchers (1.1.0)
252
- pundit (~> 1.1, >= 1.1.0)
253
- rspec-rails (>= 3.0.0)
254
281
  rack (2.0.1)
282
+ rack-cors (0.4.0)
255
283
  rack-test (0.6.3)
256
284
  rack (>= 1.0)
257
285
  rails (5.0.0.1)
@@ -282,10 +310,10 @@ GEM
282
310
  thor (>= 0.18.1, < 2.0)
283
311
  rainbow (2.1.0)
284
312
  rake (11.3.0)
285
- rb-fsevent (0.9.7)
313
+ rb-fsevent (0.9.8)
286
314
  rb-inotify (0.9.7)
287
315
  ffi (>= 0.5.0)
288
- rectify (0.6.1)
316
+ rectify (0.7.1)
289
317
  activemodel (>= 4.1.0)
290
318
  activerecord (>= 4.1.0)
291
319
  activesupport (>= 4.1.0)
@@ -324,7 +352,7 @@ GEM
324
352
  rspec_junit_formatter (0.2.3)
325
353
  builder (< 4)
326
354
  rspec-core (>= 2, < 4, != 2.12.0)
327
- rubocop (0.43.0)
355
+ rubocop (0.45.0)
328
356
  parser (>= 2.3.1.1, < 3.0)
329
357
  powerpack (~> 0.1)
330
358
  rainbow (>= 1.99.1, < 3.0)
@@ -370,6 +398,7 @@ GEM
370
398
  tzinfo (1.2.2)
371
399
  thread_safe (~> 0.1)
372
400
  unicode-display_width (1.1.1)
401
+ uniform_notifier (1.10.0)
373
402
  url (0.3.2)
374
403
  virtus (1.0.5)
375
404
  axiom-types (~> 0.1)
@@ -391,22 +420,22 @@ PLATFORMS
391
420
 
392
421
  DEPENDENCIES
393
422
  bundler (~> 1.12)
394
- codecov (~> 0.1.5)
423
+ codecov (~> 0.1.6)
395
424
  decidim!
396
425
  decidim-admin!
426
+ decidim-api!
397
427
  decidim-core!
398
428
  decidim-dev!
399
429
  decidim-system!
400
430
  foundation_rails_helper!
401
- pundit-matchers (~> 1.1.0)
402
431
  rake (~> 11.0)
403
432
  rspec (~> 3.0)
404
433
  rspec_junit_formatter (= 0.2.3)
405
- rubocop
434
+ rubocop (~> 0.45)
406
435
  simplecov (~> 0.12)
407
436
 
408
437
  RUBY VERSION
409
438
  ruby 2.3.1p112
410
439
 
411
440
  BUNDLED WITH
412
- 1.13.2
441
+ 1.13.6