Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
faa17ec
Create .stickler.yml
KingsleyMcSimon Oct 28, 2019
56736e0
rubocop and stickler deleted
KingsleyMcSimon Oct 29, 2019
c5039f2
Create .rubocop.yml
KingsleyMcSimon Oct 28, 2019
df166e0
Descriptive Readme
KingsleyMcSimon Oct 29, 2019
88a6518
Descriptive Readme Updated
KingsleyMcSimon Oct 29, 2019
1cd1d60
my_inject method updated
KingsleyMcSimon Oct 29, 2019
32ba07b
my_count method rewritted
KingsleyMcSimon Oct 31, 2019
4bc4053
Enumerable updates
KingsleyMcSimon Nov 5, 2019
9ed0c74
Update in the methods
KingsleyMcSimon Nov 5, 2019
85c2c8d
Enumerable updates
KingsleyMcSimon Nov 6, 2019
34c23fd
Another Enumerable updates
KingsleyMcSimon Nov 7, 2019
ab140ab
Work update
KingsleyMcSimon Nov 7, 2019
d5b84f6
Enumerable methods tested and updated
KingsleyMcSimon Nov 10, 2019
0553132
some changes added
KingsleyMcSimon Nov 10, 2019
d74e854
Linter changes
KingsleyMcSimon Nov 11, 2019
04715e7
some changes added
KingsleyMcSimon Nov 14, 2019
852d9e5
More changes added
KingsleyMcSimon Nov 14, 2019
9cf0f17
Some changes committetd
KingsleyMcSimon Nov 15, 2019
b1c42b7
Another changes added
KingsleyMcSimon Nov 15, 2019
b86ad2f
New changes made
KingsleyMcSimon Nov 15, 2019
6d8247b
Modified stickler, rubocop, readme and new_spec file
KingsleyMcSimon May 28, 2020
49ca4a3
Readme file modified
KingsleyMcSimon May 29, 2020
cee1de4
.rubocop.yml updated
KingsleyMcSimon Jul 2, 2020
505c401
Readme file updated
KingsleyMcSimon Jul 2, 2020
c53830e
rubocop updated
KingsleyMcSimon Jul 2, 2020
4696659
enumerable_methods file updated
KingsleyMcSimon Jul 4, 2020
373b0a1
Enum methods modified
KingsleyMcSimon Jul 20, 2020
e3ddced
enumerable_methods file updated
KingsleyMcSimon Jul 23, 2020
e4c8e31
enumerable methods updated
KingsleyMcSimon Aug 5, 2020
8719c20
# my_inject method
KingsleyMcSimon Sep 3, 2020
e989456
my_any?, my_none? and my_inject methods worked on as recommended
KingsleyMcSimon Sep 3, 2020
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 .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--require spec_helper
34 changes: 34 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
AllCops:
Exclude:
- "db/**/*"
- "config/**/*"
- "Guardfile"
- "Rakefile"
DisplayCopNames: true

Layout/LineLength:
Max: 120
Metrics/MethodLength:
Include: ["app/controllers/*"]
Max: 20
Metrics/AbcSize:
Include: ["app/controllers/*"]
Max: 30
Metrics/ClassLength:
Max: 150
Metrics/BlockLength:
ExcludedMethods: ['describe']

Style/Documentation:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false

Layout/AlignHash:
EnforcedColonStyle: key
Layout/ExtraSpacing:
AllowForAlignment: false
Layout/MultilineMethodCallIndentation:
Enabled: true
EnforcedStyle: indented

11 changes: 11 additions & 0 deletions .stickler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
linters:
rubocop:
display_cop_names: true
files:
ignore:
- "bin/*"
- "db/*"
- "config/*"
- "Guardfile"
- "Rakefile"

Loading