test_gem_udemyjhadeo 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/Gemfile.lock +1 -1
- data/README.md +13 -4
- data/lib/test_gem/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b8326f63510d031cae291161479cec6849b4a123354bab4aaf3ec631ffec72d1
|
|
4
|
+
data.tar.gz: 5f09d43f4c957ea6280720719530251514cdcf5162459b1e8c4c87f883115ffa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1f846c3d76bc6596c66d752b972a280d4d945b1cf19e0a01a0246fa7ccab2dd6df08509820b74b86dcf5bdc5a95aa5bf1df60de2a9e721d43a09640a772d82f
|
|
7
|
+
data.tar.gz: 66e2cf509f1159db655089cb57b0e095ea1f20ca58405b65e50c77f50fb08cd742ea84b31d101a92f47b04e0c2dbb5d7b586c1c71d2357ec81bda57192e29460
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# TestGem
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
I don't know what to put here, so let's put lorem ipsum.
|
|
4
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla porta dolor metus, at consequat ligula mattis sed. Aenean maximus metus in ipsum eleifend rutrum. Vivamus dictum consequat odio sed aliquam. Donec at augue tincidunt, posuere massa sit amet, pharetra urna. In hac habitasse platea dictumst. Etiam pulvinar lorem id eros lacinia malesuada. Mauris condimentum sodales tellus id hendrerit. Vivamus sed imperdiet magna, vel porttitor ipsum. Ut in accumsan ante.
|
|
5
|
+
|
|
4
6
|
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
7
|
|
|
7
8
|
## Installation
|
|
8
9
|
|
|
10
|
+
|
|
9
11
|
Install the gem and add to the application's Gemfile by executing:
|
|
10
12
|
|
|
11
13
|
$ bundle add test_gem
|
|
@@ -16,8 +18,15 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
|
16
18
|
|
|
17
19
|
## Usage
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
There is no usage, just test gem for online course
|
|
20
22
|
|
|
23
|
+
1. irb
|
|
24
|
+
```ruby
|
|
25
|
+
require 'test_gem'
|
|
26
|
+
test_gem = TestGem::User.new
|
|
27
|
+
test_gem.client
|
|
28
|
+
```
|
|
29
|
+
4. i dont know anymore
|
|
21
30
|
## Development
|
|
22
31
|
|
|
23
32
|
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
@@ -26,7 +35,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
26
35
|
|
|
27
36
|
## Contributing
|
|
28
37
|
|
|
29
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jhadeo/test_gem. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/jhadeo/test_gem/blob/main/CODE_OF_CONDUCT.md).
|
|
30
39
|
|
|
31
40
|
## License
|
|
32
41
|
|
data/lib/test_gem/version.rb
CHANGED