Commit a95eaa2

mo <mo.khan@gmail.com>
2018-12-23 21:10:50
add lib/scim-kit.rb
1 parent d4a6db0
exe/scim-kit
@@ -1,3 +1,4 @@
 #!/usr/bin/env ruby
+# frozen_string_literal: true
 
 require 'scim/kit'
lib/scim/kit/version.rb
@@ -1,5 +1,7 @@
+# frozen_string_literal: true
+
 module Scim
   module Kit
-    VERSION = '0.1.0'.freeze
+    VERSION = '0.1.0'
   end
 end
lib/scim/kit.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
 require 'scim/kit/version'
 
 module Scim
lib/scim-kit.rb
@@ -0,0 +1,3 @@
+# frozen_string_literal: true
+
+require 'scim/kit'
spec/scim/kit_spec.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
 RSpec.describe Scim::Kit do
   specify { expect(Scim::Kit::VERSION).not_to be_nil }
 end
spec/spec_helper.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
 require 'bundler/setup'
 require 'scim/kit'
 
.rubocop.yml
@@ -0,0 +1,14 @@
+require:
+  - rubocop/cop/internal_affairs
+  - rubocop-rspec
+AllCops:
+  Exclude:
+    - 'coverage/**/*'
+    - 'pkg/**/*'
+    - 'tmp/**/*'
+    - 'vendor/**/*'
+  TargetRubyVersion: 2.5
+
+Naming/FileName:
+  Exclude:
+    - 'lib/scim-kit.rb'
Gemfile
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
 source 'https://rubygems.org'
 
 git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
scim-kit.gemspec
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
 lib = File.expand_path('lib', __dir__)
 $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
 require 'scim/kit/version'