my_gem_homework_rg 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/README.md +5 -4
- data/lib/my_gem/version.rb +1 -1
- data/my_gem.gemspec +4 -4
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0248f6170de1788c94baaa592a89870bbec71989
|
4
|
+
data.tar.gz: b4c2d3e81674802911c3a007fd1e39c90f7ca73b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a80408779b9a5756cea84aa4edcfffb6871bdaa6b3f55181054b65938f767bda8dd97bacbd2ff5d6fc74448f8833e3995903028d1dede0508c7113227f74a4ba
|
7
|
+
data.tar.gz: dcb736143b69f10286cbd48f8fe095d54b6822b126ce0eb3866cac8ba9a6047f933acdb7305e43f475a0eee668351585fc1148affec3616f15bb121a25abb5d8
|
data/README.md
CHANGED
@@ -9,7 +9,7 @@ TODO: Delete this and the text above, and describe your gem
|
|
9
9
|
Add this line to your application's Gemfile:
|
10
10
|
|
11
11
|
```ruby
|
12
|
-
gem '
|
12
|
+
gem 'my_gem_homework_rg'
|
13
13
|
```
|
14
14
|
|
15
15
|
And then execute:
|
@@ -18,11 +18,12 @@ And then execute:
|
|
18
18
|
|
19
19
|
Or install it yourself as:
|
20
20
|
|
21
|
-
$ gem install
|
21
|
+
$ gem install my_gem_homework_rg
|
22
22
|
|
23
23
|
## Usage
|
24
|
-
|
25
|
-
|
24
|
+
require 'my_gem'
|
25
|
+
This gem uses module MyGem with one method :hello_world
|
26
|
+
TODO: MyGem.hello_world
|
26
27
|
|
27
28
|
## Development
|
28
29
|
|
data/lib/my_gem/version.rb
CHANGED
data/my_gem.gemspec
CHANGED
@@ -6,12 +6,12 @@ require 'my_gem/version'
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "my_gem_homework_rg"
|
8
8
|
spec.version = MyGem::VERSION
|
9
|
-
spec.authors = ["
|
10
|
-
spec.email = ["
|
9
|
+
spec.authors = ["Ajiexwel4"]
|
10
|
+
spec.email = ["ajiexwel4@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = "This is my first gem"
|
13
|
-
spec.description = "
|
14
|
-
spec.homepage = "https://rubygems.org
|
13
|
+
spec.description = "Module MyGem, it has only one self method :hello_world. For use: require 'my_gem'"
|
14
|
+
spec.homepage = "https://rubygems.org"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: my_gem_homework_rg
|
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
|
+
- Ajiexwel4
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
@@ -38,9 +38,10 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
description:
|
41
|
+
description: 'Module MyGem, it has only one self method :hello_world. For use: require
|
42
|
+
''my_gem'''
|
42
43
|
email:
|
43
|
-
-
|
44
|
+
- ajiexwel4@gmail.com
|
44
45
|
executables: []
|
45
46
|
extensions: []
|
46
47
|
extra_rdoc_files: []
|
@@ -56,7 +57,7 @@ files:
|
|
56
57
|
- lib/my_gem.rb
|
57
58
|
- lib/my_gem/version.rb
|
58
59
|
- my_gem.gemspec
|
59
|
-
homepage: https://rubygems.org
|
60
|
+
homepage: https://rubygems.org
|
60
61
|
licenses:
|
61
62
|
- MIT
|
62
63
|
metadata: {}
|