first_gem_hello_world 0.0.2 → 0.0.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 +4 -4
- data/first_gem_hello_world.gemspec +4 -4
- data/lib/first_gem_hello_world.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68df7753327d5a4754477ecae29d082e677631f3
|
|
4
|
+
data.tar.gz: 99cc057dc4fadbdaecbdd4479e797c2743b98f0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 878005dc8fd1f9811caf36a95575534384d76616fd9a81fe5042e070d9a01a4d931d027af0152f0980c69b43683c7a191b34b909d628930f07857b3f612b7e9b
|
|
7
|
+
data.tar.gz: 672d30cf09bdbabd1d5b63b912d36b25004e4af32d7a3fa86c6de861f3c0b24d8404fc5afe5c1132631be4dc16c215d39beff7fef07bfa03da2dd73846f01883
|
|
@@ -6,7 +6,7 @@ Gem::Specification.new 'first_gem_hello_world' do |s|
|
|
|
6
6
|
s.date = '2014-06-25'
|
|
7
7
|
s.summary = 'First gem hello world'
|
|
8
8
|
s.description = 'A simple hello world gem'
|
|
9
|
-
s.
|
|
9
|
+
s.authors = ['Vladislav Petrov', 'Mike Zagorulko']
|
|
10
10
|
s.email = 'electronicchest@gmail.com'
|
|
11
11
|
s.license = 'MIT'
|
|
12
12
|
s.platform = Gem::Platform::RUBY
|
|
@@ -14,8 +14,8 @@ Gem::Specification.new 'first_gem_hello_world' do |s|
|
|
|
14
14
|
s.required_ruby_version = '>= 2.1.2'
|
|
15
15
|
s.required_rubygems_version = '>= 2.3.0'
|
|
16
16
|
|
|
17
|
-
s.files = `git ls-files`.split
|
|
18
|
-
s.test_files = `git ls-files -- {test,spec,features}/*`.split
|
|
19
|
-
s.executables = `git ls-files -- bin/*`.split
|
|
17
|
+
s.files = `git ls-files`.split
|
|
18
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split
|
|
19
|
+
s.executables = `git ls-files -- bin/*`.split.map{ |f| File.basename(f) }
|
|
20
20
|
s.require_paths = ['lib']
|
|
21
21
|
end
|
metadata
CHANGED