creative_cocktails 0.1.8 → 0.1.9
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/Rakefile +5 -1
- data/config/environment.rb +1 -1
- data/creative_cocktails.gemspec +2 -13
- data/lib/creative_cocktails/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2c4dfebe3039b4e51d9b80ff37565a486dc314b
|
|
4
|
+
data.tar.gz: 55aea32730d9b47235dee6e56a917a0b74e7dc79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a96afdbabeb63fd1668d6e59f36d9e17c41d045e8e9752e0638474c568cad9aa9daad8f7a673bb232002fda7a058ffec0d914c6759941c9bca609704e1c2309
|
|
7
|
+
data.tar.gz: d38993f7b71d98253de665c6b25b5c3da2994d83d89282a58ef034c9f44154b17079ea0f67955894f2bf785582b81c67e492b98bed9c29240897bbc6554f9942
|
data/Rakefile
CHANGED
data/config/environment.rb
CHANGED
data/creative_cocktails.gemspec
CHANGED
|
@@ -15,19 +15,8 @@ Gem::Specification.new do |spec|
|
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
spec.executables << "creative_cocktails"
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
if spec.respond_to?(:metadata)
|
|
21
|
-
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
22
|
-
else
|
|
23
|
-
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
24
|
-
"public gem pushes."
|
|
25
|
-
end
|
|
26
|
-
|
|
27
|
-
# Specify which files should be added to the gem when it is released.
|
|
28
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
29
|
-
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
30
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
19
|
+
f.match(%r{^(test|spec|features)/})
|
|
31
20
|
end
|
|
32
21
|
spec.bindir = "bin"
|
|
33
22
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: creative_cocktails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ebuchheim
|
|
@@ -96,8 +96,7 @@ files:
|
|
|
96
96
|
homepage: https://github.com/ebuchheim/creative_cocktails
|
|
97
97
|
licenses:
|
|
98
98
|
- MIT
|
|
99
|
-
metadata:
|
|
100
|
-
allowed_push_host: https://rubygems.org
|
|
99
|
+
metadata: {}
|
|
101
100
|
post_install_message:
|
|
102
101
|
rdoc_options: []
|
|
103
102
|
require_paths:
|