test_gem_1234431 0.1.0 → 0.1.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 +4 -4
- data/.DS_Store +0 -0
- data/.travis.yml +12 -0
- data/README.md +2 -0
- data/lib/test_gem/version.rb +1 -1
- data/test_gem.gemspec +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b55b8c20ec1e0fcc385be20a1d0e77c994c4c93437dc29be019ef4cf72f4387
|
|
4
|
+
data.tar.gz: 3b6ee39b55f60d1f1d670a88695550a25145807065e31ae73346cd1cf2198492
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a395497aa0fa8b60a42bfc53a119a5ed6dfbb738e3856c3eea6b3d7eda050700e5f4321e9f549c97e97f5e38085f89d54eceb2fee5b152d8413c1fcf875a866
|
|
7
|
+
data.tar.gz: 9e2150a4ac200245b20a350699302a84ac2f9136a0ce081e9d3f9e15a3456c9c0e9bfc847fe5e1e06e5273db96f7aa213d6bf715ebe0d1d48b5085e6f2e71f92
|
data/.DS_Store
ADDED
|
Binary file
|
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
repurpose old repo to practice gem management and ci/cd
|
|
2
|
+
|
|
1
3
|
# TestGem
|
|
2
4
|
|
|
3
5
|
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/test_gem`. To experiment with that code, run `bin/console` for an interactive prompt.
|
data/lib/test_gem/version.rb
CHANGED
data/test_gem.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.email = ["mharriss@gridscale.io"]
|
|
10
10
|
|
|
11
11
|
spec.summary = "test summary"
|
|
12
|
-
spec.description = "
|
|
12
|
+
spec.description = "Updating some information"
|
|
13
13
|
spec.homepage = "https://example.com"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test_gem_1234431
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mharriss
|
|
@@ -38,14 +38,16 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '10.0'
|
|
41
|
-
description:
|
|
41
|
+
description: Updating some information
|
|
42
42
|
email:
|
|
43
43
|
- mharriss@gridscale.io
|
|
44
44
|
executables: []
|
|
45
45
|
extensions: []
|
|
46
46
|
extra_rdoc_files: []
|
|
47
47
|
files:
|
|
48
|
+
- ".DS_Store"
|
|
48
49
|
- ".gitignore"
|
|
50
|
+
- ".travis.yml"
|
|
49
51
|
- Gemfile
|
|
50
52
|
- LICENSE.txt
|
|
51
53
|
- README.md
|
|
@@ -75,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
77
|
- !ruby/object:Gem::Version
|
|
76
78
|
version: '0'
|
|
77
79
|
requirements: []
|
|
78
|
-
rubygems_version: 3.0.
|
|
80
|
+
rubygems_version: 3.0.4
|
|
79
81
|
signing_key:
|
|
80
82
|
specification_version: 4
|
|
81
83
|
summary: test summary
|