mic_monitor_gem 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: 1142af4cb094ee4c14bfbc8b0d5dbe9cebdf8b09b8ac6c855a98f0d9ec07ff1b
4
- data.tar.gz: d457e36910a305436f3b3fd79b9f42082e2a6942222d2bdce977055057b5b874
3
+ metadata.gz: 6bedc0bd0f7f2927c24c1f58f8d32b1d5aa21a0e66935d3d51981101d8bc0caa
4
+ data.tar.gz: 81da8b9ed40f13006c979eba12a6a1647b8b9d4ea4b008fb36284a75621393df
5
5
  SHA512:
6
- metadata.gz: ab7188db16ff63b0867b92ed2b11e8c2fa997de8a5b7513fe48740686ca0ac08655f2fa54ec713bfae320e6c1a02ec6c3d077ffd5d27428135b86d53fa85c69a
7
- data.tar.gz: 52dd1de026a8e5d02eb1e70a37365bdbc9ac6cdabde0664ec314cb76cf121e17f3651c803cbb7ea036a622597836acb9bd62d6e5b379bb59dc6c29c363172c71
6
+ metadata.gz: 3b15a562ef8211e8c191288991604b1b3eaf274c76263fb333f6d98d403383aebdb416b10e07ee32da8879428ff737ac02ea2dadb11312d7a3499ecd9cd55b94
7
+ data.tar.gz: 28474bd2f9d5a5a2856cf89d485a5f3e6994265a4dc6423595d2b7a8e00859a6e3ebb409786d551a15d7bab27f4fc988386fce2bfe5df49800dc611dd4a652f5
data/.rubocop.yml CHANGED
@@ -1,10 +1,11 @@
1
- Style/StringLiterals:
2
- Enabled: true
3
- EnforcedStyle: double_quotes
1
+ AllCops:
2
+ TargetRubyVersion: 2.0
3
+ DisplayCopNames: true
4
+ Exclude:
5
+ - "gemfiles/**/*"
4
6
 
5
- Style/StringLiteralsInInterpolation:
6
- Enabled: true
7
- EnforcedStyle: double_quotes
7
+ Style/Documentation:
8
+ Enabled: false
8
9
 
9
10
  Layout/LineLength:
10
11
  Max: 120
data/Gemfile CHANGED
@@ -5,10 +5,4 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in mic_monitor_gem.gemspec
6
6
  gemspec
7
7
 
8
- gem "rake", "~> 13.0"
9
-
10
- gem "minitest", "~> 5.0"
11
-
12
- gem "rubocop", "~> 0.80"
13
-
14
8
  gem 'exception_notification'
data/Rakefile CHANGED
@@ -9,8 +9,4 @@ Rake::TestTask.new(:test) do |t|
9
9
  t.test_files = FileList["test/**/*_test.rb"]
10
10
  end
11
11
 
12
- require "rubocop/rake_task"
13
-
14
- RuboCop::RakeTask.new
15
-
16
- task default: %i[test rubocop]
12
+ task default: %i[test]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MicMonitorGem
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.4"
5
5
  end
@@ -3,5 +3,7 @@
3
3
  require_relative "mic_monitor_gem/version"
4
4
 
5
5
  module MicMonitorGem
6
-
6
+ class Engine < ::Rails::Engine
7
+ get '/ping', to: 'mic_monitor_gem#ping'
8
+ end
7
9
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "call Rspec or features to check and send notification"
13
13
  spec.homepage = "https://github.com/miclabs/mic_monitor_gem"
14
14
  spec.license = "MIT"
15
- spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
15
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.0.0")
16
16
 
17
17
  # Specify which files should be added to the gem when it is released.
18
18
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mic_monitor_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - mic-locnv
@@ -41,7 +41,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
41
41
  requirements:
42
42
  - - ">="
43
43
  - !ruby/object:Gem::Version
44
- version: 2.3.0
44
+ version: 2.0.0
45
45
  required_rubygems_version: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - ">="