coin_flip 0.1.2 → 0.1.3
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 +5 -5
- data/Gemfile.lock +3 -2
- data/coin_flip.gemspec +14 -1
- data/lib/coin_flip/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 542b26bc53c6bb8eb060c68b7b9d1da39b0b83cf027d3686f8c46fdfd45982ef
|
4
|
+
data.tar.gz: 41d760993a8d98a5375dbd29ceb53fa96fe4aa458dd72e4cc79595025fd6c5c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b7df92359d60b02a84d0d50b5446de0eaa1a90444b25c729d412ef35226f1823c30f21109fbf92e74ee82fcdda382f25b56bd3a48be9b6ee9146de02fb2ac1f
|
7
|
+
data.tar.gz: 3c3d6833b4e49a5ece8257fc642bc8119fb303132690baf447dd6ad9531c7545f1a4434067294789d9ed8c0d14cfbda6159e8347a9c6186ffe7c0f8a5b70caa3
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
coin_flip (0.1.
|
4
|
+
coin_flip (0.1.3)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -23,6 +23,7 @@ GEM
|
|
23
23
|
rspec-support (3.8.2)
|
24
24
|
|
25
25
|
PLATFORMS
|
26
|
+
x64-mingw32
|
26
27
|
x86-mingw32
|
27
28
|
|
28
29
|
DEPENDENCIES
|
@@ -32,4 +33,4 @@ DEPENDENCIES
|
|
32
33
|
rspec (~> 3.0)
|
33
34
|
|
34
35
|
BUNDLED WITH
|
35
|
-
2.0.
|
36
|
+
2.0.2
|
data/coin_flip.gemspec
CHANGED
@@ -11,9 +11,22 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = "Coin flip CLI"
|
13
13
|
spec.description = "Coin flip CLI for those tough times when you need a 50/50 decision made while working and cannot find a real coin!"
|
14
|
-
spec.homepage = "https://github.com/
|
14
|
+
spec.homepage = "https://github.com/cdcardle/coin_flip"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
|
+
if spec.respond_to?(:metadata)
|
20
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
21
|
+
|
22
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
23
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
24
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
25
|
+
else
|
26
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
27
|
+
"public gem pushes."
|
28
|
+
end
|
29
|
+
|
17
30
|
# Specify which files should be added to the gem when it is released.
|
18
31
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
32
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
data/lib/coin_flip/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coin_flip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Cardle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -79,10 +79,12 @@ files:
|
|
79
79
|
- lib/coin_flip.rb
|
80
80
|
- lib/coin_flip/cli.rb
|
81
81
|
- lib/coin_flip/version.rb
|
82
|
-
homepage: https://github.com/
|
82
|
+
homepage: https://github.com/cdcardle/coin_flip
|
83
83
|
licenses:
|
84
84
|
- MIT
|
85
|
-
metadata:
|
85
|
+
metadata:
|
86
|
+
homepage_uri: https://github.com/cdcardle/coin_flip
|
87
|
+
source_code_uri: https://github.com/cdcardle/coin_flip
|
86
88
|
post_install_message:
|
87
89
|
rdoc_options: []
|
88
90
|
require_paths:
|
@@ -99,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
101
|
version: '0'
|
100
102
|
requirements: []
|
101
103
|
rubyforge_project:
|
102
|
-
rubygems_version: 2.
|
104
|
+
rubygems_version: 2.7.6.2
|
103
105
|
signing_key:
|
104
106
|
specification_version: 4
|
105
107
|
summary: Coin flip CLI
|