Skip to content

Commit

Permalink
Merge pull request #1 from aplicacionesCabildoGranCanaria/upstream
Browse files Browse the repository at this point in the history
Merge with consul v0.12
  • Loading branch information
LauraConcepcion committed Feb 6, 2018
2 parents ccc9cad + 0c89c2f commit c72cea8
Show file tree
Hide file tree
Showing 1,631 changed files with 74,853 additions and 14,336 deletions.
35 changes: 35 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
brakeman:
enabled: true
bundler-audit:
enabled: true
coffeelint:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
exclude_paths:
- app/assets/fonts/
- app/assets/images/
- bin/rails
- bin/rake
- db/
- files/
- public/
- tmp/
- vendor/
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# EditorConfig is awesome: http://EditorConfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.yml]
insert_final_newline = false
28 changes: 28 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Where
=====
* **Related Issue:** LINK_OR_#_REF
* **Related PR's:** LINK_OR_#_REF_IF_ANY

What
====
- Whats the objective of this changes ?

How
===
- How you implemented/achieved the objective ?

Screenshots
===========
- If changes affect UI just show them drag&dropping images here

Test
====
- Is manual test needed or you just increased/fixed coverage?

Deployment
==========
- Any details to remember when this feature is deployed?

Warnings
========
- Some caveats or important things to notice?
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
/config/database.yml
/config/secrets.yml
/config/deploy-secrets.yml
/config/maintenance.yml

/coverage

Expand All @@ -29,3 +30,6 @@
# Mac finder artifacts
.DS_Store
.ruby-gemset

public/sitemap.xml
public/system/
1 change: 1 addition & 0 deletions .mdlrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rules "MD001", "MD002", "MD003", "MD004", "MD005", "MD006", "MD007", "MD008", "MD009", "MD010", "MD011", "MD012", "MD014", "MD015", "MD016", "MD017", "MD018", "MD019", "MD020", "MD021", "MD022", "MD023", "MD024", "MD025", "MD026", "MD027", "MD028", "MD029", "MD030", "MD031", "MD032", "MD033", "MD034", "MD035", "MD036", "MD037", "MD038", "MD039", "MD040", "MD041"
188 changes: 188 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
inherit_from: .rubocop_todo.yml
require: rubocop-rspec

AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
Include:
- '**/Rakefile'
- '**/config.ru'
Exclude:
- 'db/**/*'
- 'config/**/*'
- 'script/**/*'
TargetRubyVersion: 2.3
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
# to ignore them, so only the ones explicitly set in this file are enabled.
DisabledByDefault: true

Rails:
Enabled: true

Metrics/LineLength:
Max: 100

Layout/IndentationConsistency:
EnforcedStyle: rails

RSpec/AlignLeftLetBrace:
Enabled: false

RSpec/AlignRightLetBrace:
Enabled: false

RSpec/AnyInstance:
Enabled: false

RSpec/AroundBlock:
Enabled: true

RSpec/BeEql:
Enabled: true

RSpec/BeforeAfterAll:
Enabled: true

Capybara/CurrentPathExpectation:
Enabled: true

Capybara/FeatureMethods:
Enabled: false

RSpec/ContextWording:
Enabled: false

RSpec/DescribeClass:
Enabled: true

RSpec/DescribeMethod:
Enabled: true

RSpec/DescribeSymbol:
Enabled: true

RSpec/DescribedClass:
Enabled: true

RSpec/EmptyExampleGroup:
Enabled: true

RSpec/EmptyLineAfterSubject:
Enabled: true

RSpec/ExampleLength:
Enabled: false

RSpec/ExampleWording:
Enabled: true

RSpec/ExpectActual:
Enabled: true

RSpec/ExpectInHook:
Enabled: true

RSpec/ExpectOutput:
Enabled: true

RSpec/FilePath:
Enabled: true

RSpec/Focus:
Enabled: true

RSpec/HookArgument:
Enabled: true

RSpec/ImplicitExpect:
Enabled: true
EnforcedStyle: should

RSpec/InstanceSpy:
Enabled: true

RSpec/InstanceVariable:
Enabled: false

RSpec/InvalidPredicateMatcher:
Enabled: true

RSpec/ItBehavesLike:
Enabled: true

RSpec/IteratedExpectation:
Enabled: true

RSpec/LeadingSubject:
Enabled: true

RSpec/LetBeforeExamples:
Enabled: true

RSpec/LetSetup:
Enabled: true

RSpec/MessageChain:
Enabled: true

RSpec/MessageExpectation:
Enabled: true

RSpec/MessageSpies:
Enabled: true
EnforcedStyle: receive

RSpec/MultipleDescribes:
Enabled: true

RSpec/MultipleExpectations:
Enabled: false

RSpec/MultipleSubjects:
Enabled: true

RSpec/NamedSubject:
Enabled: false

RSpec/NestedGroups:
Enabled: true
Max: 4

RSpec/NotToNot:
Enabled: true

RSpec/OverwritingSetup:
Enabled: true

RSpec/PredicateMatcher:
Enabled: true

RSpec/RepeatedDescription:
Enabled: true

RSpec/RepeatedExample:
Enabled: true

RSpec/ReturnFromStub:
Enabled: true

RSpec/ScatteredLet:
Enabled: true

RSpec/ScatteredSetup:
Enabled: true

RSpec/SharedContext:
Enabled: true

RSpec/SingleArgumentMessageChain:
Enabled: true

RSpec/SubjectStub:
Enabled: true

RSpec/VerifiedDoubles:
Enabled: true

RSpec/VoidExpect:
Enabled: true
Loading

0 comments on commit c72cea8

Please sign in to comment.