teber-library 0.1.1 → 0.1.2
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/LICENSE.txt +1 -1
- data/README.md +13 -1
- data/_config.yml +1 -0
- data/lib/teber/driver.rb +1 -1
- data/lib/teber/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f5c85a1e07fecde48f92e715bd3621bf4ea3e9026d120a02f3170bf007c5bd3
|
|
4
|
+
data.tar.gz: 11943ed30197cd31a2ab59b64929e908e6ed10faf0128e04b974c58057cdf21c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c151fb4ab644cdb6b0355ecd41addf14edf3bfeef98a6cc3f28b3e2051935c60992e27216a8b7d371c9a8a37fe9655d0f6178a2dea206d0e421456af78154a5
|
|
7
|
+
data.tar.gz: bdacab6a4ea3ca893c74e3e9795b52ab7341d27e0e6879b265dfdf4bcfb4da67a049da2f3c039e54d5ee107f4cee5a1939821a71c90fea78288f11fe363fea9f
|
data/LICENSE.txt
CHANGED
|
@@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively
|
|
|
631
631
|
state the exclusion of warranty; and each file should have at least
|
|
632
632
|
the "copyright" line and a pointer to where the full notice is found.
|
|
633
633
|
|
|
634
|
-
|
|
634
|
+
Teber
|
|
635
635
|
Copyright (C) 2019 Naresh Sekar
|
|
636
636
|
|
|
637
637
|
This program is free software: you can redistribute it and/or modify
|
data/README.md
CHANGED
|
@@ -4,10 +4,10 @@ Teber Library gem is to have all the common methods that will be used in functio
|
|
|
4
4
|
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://www.ruby-lang.org/en/)
|
|
7
|
-
[](https://rubygems.org/gems/teber-library)
|
|
8
7
|
[]( https://stackoverflow.com/users/10505289/naresh-sekar )
|
|
9
8
|
[](CONTRIBUTING.md)
|
|
10
9
|
[](nareshnavinash@gmail.com)
|
|
10
|
+
[](https://rubygems.org/gems/teber-library)
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|

|
|
@@ -36,6 +36,18 @@ This gem is to replace the library methods in [Teber-Ruby](https://github.com/na
|
|
|
36
36
|
|
|
37
37
|
Add all the new methods inside /lib/teber/ path with the module name as 'Teber'. If added a new file, include the newly added file to the /lib/teber/teber.rb so that those methods will be available when we use the gem.
|
|
38
38
|
|
|
39
|
+
### Require and Include
|
|
40
|
+
|
|
41
|
+
To require this gem use,
|
|
42
|
+
```
|
|
43
|
+
require 'teber'
|
|
44
|
+
```
|
|
45
|
+
To Include the module `teber` in your project use,
|
|
46
|
+
```
|
|
47
|
+
include Teber
|
|
48
|
+
```
|
|
49
|
+
after which all the classes in this gem are directly exposed
|
|
50
|
+
|
|
39
51
|
## Development
|
|
40
52
|
|
|
41
53
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/_config.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
theme: jekyll-theme-cayman
|
data/lib/teber/driver.rb
CHANGED
data/lib/teber/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teber-library
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Naresh Sekar
|
|
@@ -70,6 +70,7 @@ files:
|
|
|
70
70
|
- LICENSE.txt
|
|
71
71
|
- README.md
|
|
72
72
|
- Rakefile
|
|
73
|
+
- _config.yml
|
|
73
74
|
- bin/console
|
|
74
75
|
- bin/setup
|
|
75
76
|
- lib/teber.rb
|