resolution-test 1.0.0 → 1.0.1

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: 2febff0f447043e703f855511c3ff3fd629a689c
4
- data.tar.gz: c6b6bfacf6ea8ffa0c418d0f64b503b16022b69d
3
+ metadata.gz: a1cbb8065051edf003c142a14000e070abdb7cb6
4
+ data.tar.gz: e75499b420793f2bf4bf5159f7e4f216c689b3bb
5
5
  SHA512:
6
- metadata.gz: 68929cd46900e674d3f6f97b0a392c75eb4fc8754ed213f104866a8cc02d8143e2f1d64e9acd8aaadb5f1fe2e297653dc5e854a8b81119f2a4b9a49f386da78a
7
- data.tar.gz: 48d323c94562aee5c3d61a0d48f1366e7433935b0b53b6caad3b93c5cf72351c92f531011e790f8a4e03a05d1d1a7ea25a5c5e2a93732db997dd571160387723
6
+ metadata.gz: 18b7b334d1604a3b109a2c3616fc7778bae6e630a2aff49d64842a50e882e6741826616727bf9dd7ef7ba5759290963551c28ee6dac1e94e58ebc42651be3f82
7
+ data.tar.gz: 3d52ae3f77d5533c0b6cc4cc71cab24b99ca52f15d7c2abfa0d40e6e58589204735f311076bd6cd2bfa4ed14203152621a51bede04d3acb97be3faf1528de7b1
data/Rakefile CHANGED
@@ -1,2 +1,2 @@
1
- require "bundler/gem_tasks"
2
- task :default => :spec
1
+ require 'bundler/gem_tasks'
2
+ task default: :spec
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require "bundler/setup"
4
- require "resolution/test"
3
+ require 'bundler/setup'
4
+ require 'resolution/test'
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
@@ -10,5 +10,5 @@ require "resolution/test"
10
10
  # require "pry"
11
11
  # Pry.start
12
12
 
13
- require "irb"
13
+ require 'irb'
14
14
  IRB.start(__FILE__)
@@ -1,6 +1,7 @@
1
- require "resolution/test/version"
1
+ require 'resolution/test/version'
2
2
 
3
3
  module Resolution
4
+ # some comment idk
4
5
  module Test
5
6
  # Your code goes here...
6
7
  end
@@ -1,5 +1,6 @@
1
1
  module Resolution
2
+ # mlaljskdhf
2
3
  module Test
3
- VERSION = "0.1.0"
4
+ VERSION = '0.1.2'.freeze
4
5
  end
5
6
  end
@@ -4,21 +4,21 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'resolution/test/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = "resolution-test"
8
- spec.version = "1.0.0"
9
- spec.authors = ["TotallyA RealPerson"]
10
- spec.email = ["not-a-fake@email.com"]
7
+ spec.name = 'resolution-test'
8
+ spec.version = '1.0.1'
9
+ spec.authors = ['TotallyA RealPerson']
10
+ spec.email = ['not-a-fake@email.com']
11
11
 
12
- spec.summary = %q{A totally worthless gem that literally does nothing.}
12
+ spec.summary = 'A totally worthless gem that literally does nothing - rubygems.org'
13
13
  spec.homepage = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
16
16
  f.match(%r{^(test|spec|features)/})
17
17
  end
18
- spec.bindir = "exe"
18
+ spec.bindir = 'exe'
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib"]
20
+ spec.require_paths = ['lib']
21
21
 
22
- spec.add_development_dependency "bundler", "~> 1.14"
23
- spec.add_development_dependency "rake", "~> 10.0"
22
+ spec.add_development_dependency 'bundler'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
24
  end
data/screwdriver.yaml ADDED
@@ -0,0 +1,7 @@
1
+ platform: ruby
2
+ shared:
3
+ plugins:
4
+ test_results:
5
+ enabled: false
6
+ coverage:
7
+ enabled: false
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resolution-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TotallyA RealPerson
@@ -14,16 +14,16 @@ dependencies:
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.14'
19
+ version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.14'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -54,6 +54,7 @@ files:
54
54
  - lib/resolution/test.rb
55
55
  - lib/resolution/test/version.rb
56
56
  - resolution-test.gemspec
57
+ - screwdriver.yaml
57
58
  homepage: https://www.youtube.com/watch?v=dQw4w9WgXcQ
58
59
  licenses: []
59
60
  metadata: {}
@@ -76,5 +77,5 @@ rubyforge_project:
76
77
  rubygems_version: 2.6.10
77
78
  signing_key:
78
79
  specification_version: 4
79
- summary: A totally worthless gem that literally does nothing.
80
+ summary: A totally worthless gem that literally does nothing - rubygems.org
80
81
  test_files: []