wwj_hello_world 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 +4 -4
- data/README.md +3 -6
- data/bin/wwj_hello_world +4 -0
- data/lib/wwj_hello_world/version.rb +1 -1
- data/wwj_hello_world-0.1.2.gem +0 -0
- data/wwj_hello_world.gemspec +2 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 15d2c5a3d050e88b030a70bbaa7e0f11f70e2ed1
|
|
4
|
+
data.tar.gz: 0092817a4540e7c8621361333f35f6d4579b9767
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 36352d6c32a08eda5de898e6a3061a1a13fc011458238413eb8b7e66ecde6ac67201c6f3af5e6a09154ba2c411780dedf55d8ff7dc5f4c996b57ceba71de9225
|
|
7
|
+
data.tar.gz: aa68e88df29bf8ed243856e708ba4054107cd5b1aba5f5c32a9ea892f51be6d1f03d6bd4dd2e2b94ca4511435b5acdeaa2babc57fa30f412a0495239cdf969a9
|
data/README.md
CHANGED
|
@@ -13,15 +13,12 @@ TODO: Description
|
|
|
13
13
|
## Examples
|
|
14
14
|
|
|
15
15
|
require 'wwj_hello_world'
|
|
16
|
-
|
|
16
|
+
WwjHelloWorld.say_hello
|
|
17
17
|
## Requirements
|
|
18
18
|
|
|
19
19
|
## Install
|
|
20
20
|
|
|
21
21
|
$ gem install wwj_hello_world
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Copyright (c) 2016 wwj
|
|
26
|
-
|
|
27
|
-
See LICENSE.txt for details.
|
|
23
|
+
# project template tool
|
|
24
|
+
https://github.com/ruby-ore/ore
|
data/bin/wwj_hello_world
ADDED
|
Binary file
|
data/wwj_hello_world.gemspec
CHANGED
|
@@ -25,7 +25,8 @@ Gem::Specification.new do |gem|
|
|
|
25
25
|
end
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
|
-
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
28
|
+
#gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
29
|
+
gem.executables << 'wwj_hello_world'
|
|
29
30
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
30
31
|
gem.require_paths = ['lib']
|
|
31
32
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wwj_hello_world
|
|
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
|
- wwj
|
|
@@ -82,7 +82,8 @@ dependencies:
|
|
|
82
82
|
version: '0.2'
|
|
83
83
|
description: hello world
|
|
84
84
|
email: wuwenjie718@gmail.com
|
|
85
|
-
executables:
|
|
85
|
+
executables:
|
|
86
|
+
- wwj_hello_world
|
|
86
87
|
extensions: []
|
|
87
88
|
extra_rdoc_files: []
|
|
88
89
|
files:
|
|
@@ -95,10 +96,12 @@ files:
|
|
|
95
96
|
- LICENSE.txt
|
|
96
97
|
- README.md
|
|
97
98
|
- Rakefile
|
|
99
|
+
- bin/wwj_hello_world
|
|
98
100
|
- lib/wwj_hello_world.rb
|
|
99
101
|
- lib/wwj_hello_world/version.rb
|
|
100
102
|
- spec/spec_helper.rb
|
|
101
103
|
- spec/wwj_hello_world_spec.rb
|
|
104
|
+
- wwj_hello_world-0.1.2.gem
|
|
102
105
|
- wwj_hello_world.gemspec
|
|
103
106
|
homepage: https://rubygems.org/gems/wwj_hello_world
|
|
104
107
|
licenses:
|