wahy 1.3.7 → 1.3.9
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/.travis.yml +1 -1
- data/README.md +4 -3
- data/SECURITY.md +21 -0
- data/lib/wahy/version.rb +1 -1
- data/lib/wahy.rb +1 -1
- data/wahy.gemspec +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2c5edeafe373e9b29f6d0eda1be6525157fb7a354928b4532bb7b640c61fa81
|
|
4
|
+
data.tar.gz: 137d031f2a2041be1448d1dcf9a3672a8c01eb119ff57fa16fb447c602c03bc0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1bba452aefb20adc5e41d2cd159b7e4ecb1c89b25cde4d804e4639090ad7333522038afc5048b63add6ae802baf158df458707badae322955b42fc43bbb1cba4
|
|
7
|
+
data.tar.gz: abd708538ed84996ca8bbb7499bd6cfd8b5a072e1ae7b69f02232aa31151420fdef3d5ee762f7d4eac7304be48532a11b58f2f58fa1f71fa2626268b4cd71b44
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -20,6 +20,8 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
+

|
|
24
|
+
|
|
23
25
|
```shell
|
|
24
26
|
# Just install gem and use wahy command
|
|
25
27
|
# For help:
|
|
@@ -57,10 +59,9 @@ sign_one = signs[0] # or sign_one = signs.first # it's array
|
|
|
57
59
|
# OR
|
|
58
60
|
sing_two = Wahy.take_specific_sign signs, 1
|
|
59
61
|
|
|
60
|
-
|
|
61
62
|
# Gem includes two XML data
|
|
62
|
-
# English Quran Tranlation(
|
|
63
|
-
# Turkish Quran Tranlation(
|
|
63
|
+
# English Quran Tranlation(/lib/data/config_en.xml): Written by Yusuf Ali
|
|
64
|
+
# Turkish Quran Tranlation(/lib/data/config_tr.xml): Written by Elmalılı Hamdi Yazır
|
|
64
65
|
# Special Thanks to: http://www.qurandatabase.org/Database.aspx
|
|
65
66
|
```
|
|
66
67
|
|
data/SECURITY.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
## Supported Versions
|
|
4
|
+
|
|
5
|
+
Use this section to tell people about which versions of your project are
|
|
6
|
+
currently being supported with security updates.
|
|
7
|
+
|
|
8
|
+
| Version | Supported |
|
|
9
|
+
| ------- | ------------------ |
|
|
10
|
+
| 5.1.x | :white_check_mark: |
|
|
11
|
+
| 5.0.x | :x: |
|
|
12
|
+
| 4.0.x | :white_check_mark: |
|
|
13
|
+
| < 4.0 | :x: |
|
|
14
|
+
|
|
15
|
+
## Reporting a Vulnerability
|
|
16
|
+
|
|
17
|
+
Use this section to tell people how to report a vulnerability.
|
|
18
|
+
|
|
19
|
+
Tell them where to go, how often they can expect to get an update on a
|
|
20
|
+
reported vulnerability, what to expect if the vulnerability is accepted or
|
|
21
|
+
declined, etc.
|
data/lib/wahy/version.rb
CHANGED
data/lib/wahy.rb
CHANGED
|
@@ -108,7 +108,7 @@ module Wahy
|
|
|
108
108
|
elsif lang == 'eng'
|
|
109
109
|
doc = Nokogiri::XML(ENGLISH)
|
|
110
110
|
else
|
|
111
|
-
print 'Please,
|
|
111
|
+
print 'Please, select a correct option ("tur" or "eng"): '
|
|
112
112
|
selection = gets.chomp
|
|
113
113
|
new_data selection
|
|
114
114
|
end
|
data/wahy.gemspec
CHANGED
|
@@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
|
|
|
36
36
|
spec.require_paths = ["lib"]
|
|
37
37
|
|
|
38
38
|
spec.add_development_dependency "bundler", "~> 4.0.12"
|
|
39
|
-
spec.add_development_dependency
|
|
39
|
+
spec.add_development_dependency 'rake', '~> 13.4'
|
|
40
40
|
spec.add_development_dependency "minitest", "~> 5.0"
|
|
41
41
|
spec.add_development_dependency 'nokogiri', '~> 1.8'
|
|
42
42
|
spec.add_development_dependency 'colorize', '~> 0.8.1'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wahy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gökhan Çağlar
|
|
@@ -29,14 +29,14 @@ dependencies:
|
|
|
29
29
|
requirements:
|
|
30
30
|
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '13.4'
|
|
33
33
|
type: :development
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '
|
|
39
|
+
version: '13.4'
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: minitest
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -127,6 +127,7 @@ files:
|
|
|
127
127
|
- LICENSE.txt
|
|
128
128
|
- README.md
|
|
129
129
|
- Rakefile
|
|
130
|
+
- SECURITY.md
|
|
130
131
|
- Screenshot_2017-08-17_16-23-15.png
|
|
131
132
|
- bin/console
|
|
132
133
|
- bin/setup
|