quick_codes 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 +6 -2
- data/lib/overloads/math.rb +10 -0
- data/lib/quick_codes.rb +1 -0
- data/lib/quick_codes/version.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: c621515752146a8c4ee12990f181719bf15896d4
|
4
|
+
data.tar.gz: 31f65195a4c88e5beac6c03ad3e037bf4f38a5d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc6686e62d47ffec070b324606add2d400e4cee08664c2ab59e887f9e65a7ccc76ac237332a0d08115518d9cc1a258bd433671d09a7d2d313375fd9e6855a945
|
7
|
+
data.tar.gz: 393a94537f75f15fe61e57634ac3bcf3f707c35f154f06e3750b90e28b79fbf033a728f1eecab244f31ecf9bbcfb1ce03db9d6b99fbb66e94fa675255804927a
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
[](https://codeclimate.com/github/adillera/quick_codes/coverage)
|
1
|
+
[](https://badge.fury.io/rb/quick_codes)
|
3
2
|
[](https://codeclimate.com/github/adillera/quick_codes)
|
3
|
+
[](https://codeclimate.com/github/adillera/quick_codes/coverage)
|
4
|
+
[](https://codeclimate.com/github/adillera/quick_codes)
|
4
5
|
|
5
6
|
# QuickCodes
|
6
7
|
|
@@ -34,6 +35,9 @@ Or install it yourself as:
|
|
34
35
|
### 0.1.2
|
35
36
|
* Implemented ave to get the average of a group of numbers for arrays.
|
36
37
|
|
38
|
+
### 0.1.3
|
39
|
+
* Ave and stdevp also accessible under Math module.
|
40
|
+
|
37
41
|
## Usage
|
38
42
|
|
39
43
|
Installing Quick codes would add the functionalities to your Ruby
|
data/lib/quick_codes.rb
CHANGED
data/lib/quick_codes/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quick_codes
|
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
|
- Alfonso Juan Dillera
|
@@ -99,6 +99,7 @@ files:
|
|
99
99
|
- bin/setup
|
100
100
|
- lib/.DS_Store
|
101
101
|
- lib/overloads/array.rb
|
102
|
+
- lib/overloads/math.rb
|
102
103
|
- lib/quick_codes.rb
|
103
104
|
- lib/quick_codes/version.rb
|
104
105
|
- quick_codes.gemspec
|