Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
331bca7
Added graph support(RGL), bumped version, helpers to render navigation
raghuramg Dec 10, 2020
dcf0c2c
Added namespace contract and validate namespace hash against contract
raghuramg Dec 11, 2020
6a40b4c
Added namespace_path entity, contract and refactored rgl navigation v…
raghuramg Dec 12, 2020
2695e68
Updated DSL to render navigation
raghuramg Dec 16, 2020
9090ed4
Added spec fixes
raghuramg Dec 16, 2020
5b9a7a5
Added spec fixes
raghuramg Dec 16, 2020
0bdab03
Added mongoid support
raghuramg Dec 18, 2020
e14d079
Fixed mongoid models and persistance issues
raghuramg Dec 22, 2020
04daf6e
empty setting file should not raise exception
raghuramg Jan 4, 2021
a380e1b
Added operations to persist features
raghuramg Jan 5, 2021
0060236
Updated contracts and value coercion
raghuramg Jan 5, 2021
6a5523f
refactored operations for features, namespaces
raghuramg Jan 11, 2021
b4a99e9
Added namespace operations to render/update multiple features
raghuramg Jan 19, 2021
aa1d574
Added spec fix
raghuramg Jan 19, 2021
773a4da
Added namespace serializer and refactored registry create,load operat…
raghuramg Jan 19, 2021
7d61bfb
Add template YAML for Enterprise. Update README and rubucop settings
ipublic Jan 19, 2021
6fa3cc4
Updated view helpers
raghuramg Jan 19, 2021
3cc50c5
Merge branch 'branch_0.9.0' of https://github.com/ideacrew/resource_r…
raghuramg Jan 19, 2021
e56dfed
Added view controls and create input controls helper
raghuramg Jan 21, 2021
5160a84
purge mongoid models
raghuramg Jan 21, 2021
0dd31f1
setting default horizontal option on form group
nisanthyaganti9 Jan 21, 2021
f25fcfd
Added headers for display panel
raghuramg Jan 21, 2021
dcd27c9
Merge branch 'branch_0.9.0' of https://github.com/ideacrew/resource_r…
raghuramg Jan 21, 2021
a3fb1f0
Added exception handling for model item json parse
raghuramg Jan 21, 2021
1931b38
adding info tag
nisanthyaganti9 Jan 21, 2021
bf1a7c7
commenting placeholder
nisanthyaganti9 Jan 21, 2021
63f75d0
updated view controls for filters and updates for feature update
raghuramg Jan 25, 2021
4c4eee4
Fixed persist logic for date ranges
raghuramg Jan 26, 2021
51c499d
Gem cleanup - change to dev dependency, list in alpha order
ipublic Jan 26, 2021
3aff438
Merge branch 'branch_0.9.0' of https://github.com/ideacrew/resource_r…
ipublic Jan 26, 2021
f250485
Added features clone operation
raghuramg Jan 28, 2021
945149e
Merge branch 'branch_0.9.0' of https://github.com/ideacrew/resource_r…
raghuramg Jan 28, 2021
98d15c6
updated view helpers
raghuramg Jan 28, 2021
f6f3485
Bump rubocop version
ipublic Feb 1, 2021
016c700
Merge branch 'branch_0.9.0' of https://github.com/ideacrew/resource_r…
ipublic Feb 1, 2021
85e0b3b
Bump nokogiri, actionview, rack, actionpack and activesupport gem ver…
ipublic Feb 1, 2021
af84a1f
Updated RR helpers, operations with following changes
raghuramg Feb 2, 2021
4e3c20b
Merge branch 'branch_0.9.0' of https://github.com/ideacrew/resource_r…
raghuramg Feb 2, 2021
193128e
Added date validations
raghuramg Feb 4, 2021
f52ec19
Fixed renew, list_features operations
raghuramg Feb 9, 2021
add6a9b
Fixed spec failures
raghuramg Feb 11, 2021
0a8be8c
commit specs
raghuramg Feb 12, 2021
402206f
Added rubocop fixes for specs
raghuramg Feb 12, 2021
ede7aab
Added rubocop fixes
raghuramg Feb 12, 2021
bb9db10
Fixed rubocop errors
raghuramg Feb 17, 2021
37beddb
Fixed feature_enabled? method
raghuramg Feb 18, 2021
8a75b93
Update raised error for unknown container key
Aug 2, 2022
e45daef
Merge branch 'branch_0.9.0' into update_outdated_gems_181668364
Aug 2, 2022
902b8e9
Commit changes to peer dev
Aug 4, 2022
d5b3db2
updated register_feature method
raghuramg Aug 4, 2022
d29b978
Fixed failing specs
raghuramg Aug 8, 2022
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
128 changes: 22 additions & 106 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,130 +1,46 @@
# This yaml describes our current checks.
# Any checks marked "# TODO: RWC" are "re-enable when corrected.RWC" are "re-enable when corrected.
AllCops:
TargetRubyVersion: 2.5
NewCops: enable
Exclude:
- "bin/**"
- "vendor/bundle/**/*"
SuggestExtensions: false

Layout/CommentIndentation:
Enabled: true
Layout/LineLength:
Max: 120

Layout/EmptyLines:
Enabled: false

Layout/EmptyLineAfterGuardClause:
Enabled: false

Layout/EmptyLinesAroundBlockBody:
Enabled: false

Layout/LeadingCommentSpace:
Enabled: false

Layout/ExtraSpacing:
Enabled: false

Layout/EmptyLinesAroundClassBody:
Enabled: false

Layout/SpaceBeforeBlockBraces:
Enabled: false

Layout/SpaceInsideHashLiteralBraces:
Enabled: false

Layout/SpaceInsideBlockBraces:
Enabled: false

Layout/IndentationWidth:
Enabled: true

Layout/Tab:
Enabled: true

Layout/TrailingWhitespace:
Enabled: true

Metrics/AbcSize:
Max: 50

Metrics/ClassLength:
Max: 300

Metrics/ModuleLength:
Max: 300

Metrics/CyclomaticComplexity:
Max: 11

Metrics/BlockLength:
Enabled: false

Metrics/LineLength:
Max: 250

Metrics/MethodLength:
Max: 50

Metrics/PerceivedComplexity:
Max: 15

Naming/AccessorMethodName:
Enabled: false

Naming/PredicateName:
Enabled: false

Naming/VariableNumber:
Enabled: false

Style/AndOr:
Enabled: true

Style/BlockComments:
Enabled: false
Layout/SpaceInsidePercentLiteralDelimiters:
Exclude:
- Gemfile

Style/Documentation:
Enabled: false
Exclude:
- config/application.rb

Style/BracesAroundHashParameters:
Enabled: false

Style/EachWithObject:
Enabled: false

Style/EmptyLiteral:
Style/ExpandPathArguments:
Enabled: false

Style/EmptyMethod:
Enabled: false

Style/ExpandPathArguments:
Style/GlobalStdStream:
Enabled: false

Style/HashSyntax:
Enabled: false

Style/NumericPredicate:
Style/PercentLiteralDelimiters:
Enabled: false

Style/RedundantSelf:
Enabled: false
Style/RedundantFetchBlock:
Exclude:
- config/puma.rb

Style/SafeNavigation:
Enabled: false
Layout/SpaceInsideArrayLiteralBrackets:
Exclude:
- config/environments/production.rb

Style/StringLiterals:
Enabled: false

Style/SymbolArray:
Enabled: false

Style/TernaryParentheses:
Enabled: false

Style/WordArray:
Enabled: false

Bundler/OrderedGems:
Enabled: false

Gemspec/OrderedDependencies:
Style/RedundantPercentQ:
Enabled: false
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.1
2.7.3
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## [Unreleased]

## [0.8.0] - 2022-08-02

### Added

- Added this CHANGELOG.md file

### Changed

- Upgraded Ruby version to 2.7.3
- Upgraded rubygems: 'gem update --system 3.2.3'
- Updated Dry-\*, deep-merge, Mongoid and other gems
- Updated .rubocop.yml file

### Removed
13 changes: 13 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,16 @@ source "https://rubygems.org"

# Specify your gem's dependencies in resource_registry.gemspec
gemspec

group :development, :test do
gem 'database_cleaner-mongoid'
gem 'prettier'
gem 'pry', platform: :mri, require: false
gem 'pry-byebug', platform: :mri, require: false
gem 'rake', '~> 12.0'
gem 'rspec', '~> 3.0'
gem 'rubocop', '>= 1.32'
gem 'rubocop-rspec', '>= 2.12'
gem 'simplecov'
gem 'yard'
end
Loading