otacop 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6727380801d1ae5e809758002cdc971279867fc4
4
- data.tar.gz: b840ad44dd5d9c4c8d5a7e6499f5e5c816bd31ab
3
+ metadata.gz: ea72da7783f3597cede2318d2590a376db9adacc
4
+ data.tar.gz: 9377086aa0d9502267b7631716c5069c88585aa4
5
5
  SHA512:
6
- metadata.gz: ba3bbdbcad2d1a6995381e165e0675e2fa57b931cf63adf22b2a3f94e5587c606fc1e10c14e148ab24a56a2e67a4b035ea6d9cc6db6ec788c1d54f930606369b
7
- data.tar.gz: 663ae1fc54d8703c4d706736dc0c25fe115763d6b9088d0e2715b4645d7e7b384847e22d73fc512eccd9ca335f8f39f30ee944080e0dbb0738a24aa83f8a74c5
6
+ metadata.gz: 4d7ad95ea36d982d24e35ce946ce74edd3b9e0e90ee58305c1393358cec56e57bc724e8c939a395df6bf865656937ad850b4187234e7ddd506673e4ac351e36d
7
+ data.tar.gz: f19cdd11f6a952933e0d566ef7198cf2ab9e5fcb7f1a9c2d2bce8868a8c790003a1ad7736b7b8978114e573273e69f7f1d491436c2e3f741cf61cd9c50d9c4c9
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  source 'https://rubygems.org'
2
3
 
3
4
  # Specify your gem's dependencies in otacop.gemspec
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "bundler/gem_tasks"
2
3
  require "rubocop/rake_task"
3
4
 
data/config/default.yml CHANGED
@@ -1,3 +1,7 @@
1
1
  inherit_from:
2
2
  - enabled.yml
3
3
  - disabled.yml
4
+
5
+ AllCops:
6
+ DisplayCopNames: true
7
+ TargetRubyVersion: 2.3
data/config/disabled.yml CHANGED
@@ -0,0 +1,5 @@
1
+ Style/Documentation:
2
+ Enabled: false
3
+
4
+ Style/StringLiterals:
5
+ Enabled: false
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  module Otacop
2
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
3
4
  end
data/lib/otacop.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require "otacop/version"
2
3
 
3
4
  module Otacop
data/otacop.gemspec CHANGED
@@ -1,4 +1,5 @@
1
1
  # coding: utf-8
2
+ # frozen_string_literal: true
2
3
  lib = File.expand_path('../lib', __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'otacop/version'
@@ -9,8 +10,8 @@ Gem::Specification.new do |spec|
9
10
  spec.authors = ["Ryoji Yoshioka"]
10
11
  spec.email = ["yoshioka.ryoji@gmail.com"]
11
12
 
12
- spec.summary = %q{OtaCop is a RuboCop configration gem.}
13
- spec.description = %q{OtaCop is a RuboCop configration gem.}
13
+ spec.summary = "OtaCop is a RuboCop configration gem."
14
+ spec.description = "OtaCop is a RuboCop configration gem."
14
15
  spec.homepage = "https://github.com/otaku-dev/otacop"
15
16
  spec.license = "MIT"
16
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: otacop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryoji Yoshioka