danger-missed_localizable_strings 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: be75f8ff3507d5abd1d98d509381acd2acc5735c
4
- data.tar.gz: c95369b9a0293e52a812cfac9841627bf6501d3b
3
+ metadata.gz: c21b0f1034dd5ad1461fea3a7f0a541a74162d6c
4
+ data.tar.gz: 9c428b9f44b165b0d546d71226650eda58ff6bc2
5
5
  SHA512:
6
- metadata.gz: 641320e6c6ca613c4b0b0d92e6be3eadd9ebcfed9fe5baaf093e8bd2ce8a207e8ae3925bf0557e8f7a5d2df58a0b346d1244e59825400596d5a9b8a1dc1d2d8f
7
- data.tar.gz: 97cc140f776ace065f2dde09c8fdb3d78b584b1ea0760071556109c679d5c46e3c5a95c306a6fb9e7f8783ba42a59247b8e31cda616f47f25564aecf71cb2f18
6
+ metadata.gz: 208681aa6a94dc153957637ad419dfd204228a24fb84b5b7cba183830e2271ad93a593d7f21a01f7037e025ede07ba0f008d7028459ce59dc236b63543a01ebd
7
+ data.tar.gz: 2ac3283614b5e41795ab3ad6ab2772750e1619587b13113d648e25f098de5224d7edf3524857f17013c0240eee0d83daa88492751c60dcd3f89a024be38026d8
data/.rubocop.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  # Defaults can be found here: https://github.com/bbatsov/rubocop/blob/master/config/default.yml
2
2
 
3
3
  AllCops:
4
- TargetRubyVersion: 2.0
4
+ TargetRubyVersion: 2.3
5
5
  Exclude:
6
6
  - 'spec/fixtures/**/*'
7
7
  - 'lib/danger/plugin_support/plugin_parser.rb'
@@ -24,14 +24,14 @@ Lint/UselessAssignment:
24
24
  - '**/spec/**/*'
25
25
 
26
26
  # We could potentially enable the 2 below:
27
- Style/IndentHash:
27
+ Layout/IndentHash:
28
28
  Enabled: false
29
29
 
30
- Style/AlignHash:
30
+ Layout/AlignHash:
31
31
  Enabled: false
32
32
 
33
33
  # HoundCI doesn't like this rule
34
- Style/DotPosition:
34
+ Layout/DotPosition:
35
35
  Enabled: false
36
36
 
37
37
  # We allow !! as it's an easy way to convert ot boolean
@@ -116,7 +116,7 @@ Style/IfInsideElse:
116
116
  Style/BlockComments:
117
117
  Enabled: false
118
118
 
119
- Style/MultilineMethodCallIndentation:
119
+ Layout/MultilineMethodCallIndentation:
120
120
  EnforcedStyle: indented
121
121
 
122
122
  # FIXME: 25
@@ -126,10 +126,10 @@ Metrics/BlockLength:
126
126
  Style/MixinGrouping:
127
127
  Enabled: false
128
128
 
129
- Style/FileName:
129
+ Naming/FileName:
130
130
  Enabled: false
131
131
 
132
- Style/IndentHeredoc:
132
+ Layout/IndentHeredoc:
133
133
  Enabled: false
134
134
 
135
135
  Style/SpecialGlobalVars:
data/.travis.yml CHANGED
@@ -4,8 +4,6 @@ cache:
4
4
  - bundle
5
5
 
6
6
  rvm:
7
- - 2.0
8
- - 2.1.3
9
7
  - 2.3.1
10
8
 
11
9
  script:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## 1.0.3
2
2
 
3
+ * Simplify config - antondomashnev
4
+ * Codestyle update - antondomashnev
5
+
6
+ ## 1.0.3
7
+
3
8
  * Update dependencies - antondomashnev
4
9
 
5
10
  ## 1.0.2
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source "https://rubygems.org"
2
4
 
3
5
  # Specify your gem's dependencies in danger-missed_localizable_strings.gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- danger-missed_localizable_strings (1.0.3)
4
+ danger-missed_localizable_strings (1.0.4)
5
5
  danger-plugin-api (~> 1.0)
6
6
 
7
7
  GEM
data/Guardfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # A guardfile for making Danger Plugins
2
4
  # For more info see https://github.com/guard/guard#readme
3
5
 
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
3
5
  require "rubocop/rake_task"
@@ -1,4 +1,5 @@
1
1
  # coding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  lib = File.expand_path("../lib", __FILE__)
4
5
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "missed_localizable_strings/gem_version"
data/lib/danger_plugin.rb CHANGED
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "missed_localizable_strings/plugin"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module MissedLocalizableStrings
2
- VERSION = "1.0.3".freeze
4
+ VERSION = "1.0.4"
3
5
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Danger
2
4
  #
3
5
  # Sometimes developer adds new key in one Localizable.strings file
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require File.expand_path("../spec_helper", __FILE__)
2
4
 
3
5
  module Danger
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "pathname"
2
4
  ROOT = Pathname.new(File.expand_path("../../", __FILE__))
3
5
  $LOAD_PATH.unshift((ROOT + "lib").to_s)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danger-missed_localizable_strings
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Domashnev