Skip to content
This repository was archived by the owner on Jan 25, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
2350d70
Encodes document ids using a SHA256 hex digests
xredo Mar 21, 2018
56292d4
Update versions for gem and dependencies.
May 11, 2018
b2b3376
[DOC] Explain verification data is not persisted.
May 11, 2018
a70c6aa
[REFACTOR] Replace old abilities (cancancan) for new permissions system.
May 11, 2018
986daca
[REFACTOR] Replace old authorize! for the new enforce_permission_to.
May 11, 2018
fb1d1e5
[REFACTOR] Use the standard separator for CSV.
May 12, 2018
6739fb6
Declare the component_permissions.js asset.
May 12, 2018
c9b6305
[REFACTOR] Apply renaming of feature -> component.
May 14, 2018
85a167a
Git ignore: .rspec-failures file.
May 14, 2018
0b21665
[REFACTOR] Remove useless artifacts.
May 14, 2018
a33b86b
Definitive 0.11.1 version.
May 14, 2018
ba7995a
[TEST] Adapt test to 0.11 release and ',' separator.
May 14, 2018
8f29ff9
Update Gemfile to 0.11.1 version.
May 14, 2018
05beb39
[REFACTOR] Make CSV separator configurable through initializer.
May 14, 2018
e9e47ef
[REFACTOR] Remove debugging `puts`.
May 21, 2018
621407d
[REFACTOR] Log which csv separator is being used.
May 22, 2018
f3cde9a
[FIX] Do not crash when there are no rows to insert.
May 22, 2018
1085cb6
Upgrade to Decidim 0.12.
Jun 18, 2018
ae8669c
[I18N] Use a more neutral terminology: "Oganization's Census" instead…
Nov 19, 2018
210f16c
[CONFIG] Upgrade configuration to Decidim 0.15.
Nov 19, 2018
a4a71b1
Rubocopify and linterize.
Nov 19, 2018
e0e3e54
Prefer double-quoted strings unless you need single quotes to avoid e…
Nov 20, 2018
c975d50
Extra empty line detected at class body beginning.
Nov 20, 2018
41de957
change Date do Decidim::Attributes::LocalizedDate
Dec 19, 2018
5c725a4
[DOC] Update gem's contact info.
tramuntanal Dec 28, 2018
a161baa
Merge branch 'upgrade/decidim-0.15' of github.com:CodiTramuntana/deci…
tramuntanal Dec 28, 2018
c388de6
[REFACTOR] Remove deprecated comment.
tramuntanal Dec 28, 2018
01924d3
[FIX] Mistyped method name.
tramuntanal Dec 28, 2018
bd5ee98
[REFACTOR] Static attributes will be removed in FactoryBot 5.0, updat…
tramuntanal Dec 28, 2018
56e6902
[REFACTOR] Remove useless permissions file.
tramuntanal Dec 31, 2018
5f3f36a
[REFACTOR] Remove setting Engine's db/migrate path to nil as it is no…
tramuntanal Dec 31, 2018
68bab4b
[REFACTOR/TEST] Rebuild and apply tests to admin permissions.
tramuntanal Dec 31, 2018
63fb79d
[DOC] Apply markdown linter requisites.
tramuntanal Dec 31, 2018
ebc4388
More linter complaints.
tramuntanal Dec 31, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
tmp/
spec/decidim_dummy_app/
.rspec-failures
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ Metrics/BlockLength:
- 'decidim-*/db/migrate/*.rb'
- 'decidim-*/**/*/types/**/*'
- 'decidim-*/lib/**/*/test/**/*'
- 'decidim-*/lib/**/*/feature.rb'
- 'decidim-*/lib/**/*/component.rb'
- 'decidim-*/lib/**/*/participatory_space.rb'
- '**/spec/**/*_spec.rb'
- '**/spec/shared/**.rb'
Expand Down
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

# Declare your gem's dependencies in decidim-census.gemspec.
# Declare your gem's dependencies in decidim-file_authorization_handler.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
Expand All @@ -14,3 +14,7 @@ gemspec

# This is required to generate the testing dummy_app (see README)
gem "decidim", require: true

group :test do
gem "bootsnap", require: false
end
Loading