Commit 33b4195
Changed files (3)
.gitignore
@@ -9,5 +9,4 @@
# rspec failure tracking
.rspec_status
-Gemfile.lock
.byebug_history
.rubocop.yml
@@ -9,7 +9,7 @@ AllCops:
- 'vendor/**/*'
TargetRubyVersion: 2.5
-Layout/IndentArray:
+Layout/IndentFirstArrayElement:
EnforcedStyle: consistent
Metrics/BlockLength:
@@ -27,6 +27,9 @@ Naming/FileName:
Exclude:
- 'lib/scim-kit.rb'
+Naming/RescuedExceptionsVariableName:
+ PreferredName: error
+
RSpec/NamedSubject:
Enabled: false
Gemfile.lock
@@ -0,0 +1,102 @@
+PATH
+ remote: .
+ specs:
+ scim-kit (0.3.2)
+ activemodel (>= 5.2.0)
+ net-hippie (~> 0.2)
+ parslet (~> 1.8)
+ tilt (~> 2.0)
+ tilt-jbuilder (~> 0.7)
+
+GEM
+ remote: https://rubygems.org/
+ specs:
+ activemodel (5.2.3)
+ activesupport (= 5.2.3)
+ activesupport (5.2.3)
+ concurrent-ruby (~> 1.0, >= 1.0.2)
+ i18n (>= 0.7, < 2)
+ minitest (~> 5.1)
+ tzinfo (~> 1.1)
+ addressable (2.6.0)
+ public_suffix (>= 2.0.2, < 4.0)
+ ast (2.4.0)
+ bundler-audit (0.6.1)
+ bundler (>= 1.2.0, < 3)
+ thor (~> 0.18)
+ byebug (11.0.1)
+ concurrent-ruby (1.1.5)
+ crack (0.4.3)
+ safe_yaml (~> 1.0.0)
+ diff-lcs (1.3)
+ ffaker (2.11.0)
+ hashdiff (0.3.9)
+ i18n (1.6.0)
+ concurrent-ruby (~> 1.0)
+ jaro_winkler (1.5.2)
+ jbuilder (2.9.0)
+ activesupport (>= 4.2.0)
+ minitest (5.11.3)
+ net-hippie (0.2.6)
+ parallel (1.17.0)
+ parser (2.6.3.0)
+ ast (~> 2.4.0)
+ parslet (1.8.2)
+ public_suffix (3.0.3)
+ rainbow (3.0.0)
+ rake (10.5.0)
+ rspec (3.8.0)
+ rspec-core (~> 3.8.0)
+ rspec-expectations (~> 3.8.0)
+ rspec-mocks (~> 3.8.0)
+ rspec-core (3.8.0)
+ rspec-support (~> 3.8.0)
+ rspec-expectations (3.8.3)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.8.0)
+ rspec-mocks (3.8.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.8.0)
+ rspec-support (3.8.0)
+ rubocop (0.69.0)
+ jaro_winkler (~> 1.5.1)
+ parallel (~> 1.10)
+ parser (>= 2.6)
+ rainbow (>= 2.2.2, < 4.0)
+ ruby-progressbar (~> 1.7)
+ unicode-display_width (>= 1.4.0, < 1.7)
+ rubocop-rspec (1.33.0)
+ rubocop (>= 0.60.0)
+ ruby-progressbar (1.10.0)
+ safe_yaml (1.0.5)
+ thor (0.20.3)
+ thread_safe (0.3.6)
+ tilt (2.0.9)
+ tilt-jbuilder (0.7.1)
+ jbuilder
+ tilt (>= 1.3.0, < 3)
+ tzinfo (1.2.5)
+ thread_safe (~> 0.1)
+ unicode-display_width (1.6.0)
+ webmock (3.5.1)
+ addressable (>= 2.3.6)
+ crack (>= 0.3.2)
+ hashdiff
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ bundler (~> 1.17)
+ bundler-audit (~> 0.6)
+ byebug
+ ffaker (~> 2.7)
+ rake (~> 10.0)
+ rspec (~> 3.0)
+ rubocop (~> 0.52)
+ rubocop-rspec (~> 1.22)
+ scim-kit!
+ webmock (~> 3.5)
+
+BUNDLED WITH
+ 1.17.3