russial 0.9.2 → 0.10.0
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 +7 -0
- data/lib/russial.rb +2 -0
- data/lib/russial/kernel.rb +5 -0
- data/lib/russial/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 553c9a9fefb552e606941dc9ceb481ae44c7e0e1
|
|
4
|
+
data.tar.gz: 4fe6e9d70f79255915ea8d16684ae597158e3915
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5c741e3da1416cc0d606e28beccf3520851266c6f2936d2f7c35779e8b3a6997672ce6c79adabf787cc475a81c01a234bde466a0055fd8f573055aed7efba60
|
|
7
|
+
data.tar.gz: f0c5460b874f25bf5a6bc64d036b59111514e62c442d8a434f5ad97973d1c2a041c135c195deefc89f9d3da23ee226d0700b061508339972fb508b47b4cb133a
|
data/README.md
CHANGED
|
@@ -123,6 +123,13 @@ word.dative # "трёхкомнатной квартире"
|
|
|
123
123
|
word.instrumental # "трёхкомнатной квартирой"
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
+
### Shortcut
|
|
127
|
+
|
|
128
|
+
Instead of using full form of instantiating, you can use shortcut:
|
|
129
|
+
```ruby
|
|
130
|
+
Russial("ruby")
|
|
131
|
+
```
|
|
132
|
+
|
|
126
133
|
## Settings
|
|
127
134
|
|
|
128
135
|
You can configure this gem. Add settings to initializers.
|
data/lib/russial.rb
CHANGED
data/lib/russial/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: russial
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mesto.ru
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -119,6 +119,7 @@ files:
|
|
|
119
119
|
- lib/russial/dictionary/dynamic_methods.rb
|
|
120
120
|
- lib/russial/dictionary/i18n.rb
|
|
121
121
|
- lib/russial/dictionary/initializer.rb
|
|
122
|
+
- lib/russial/kernel.rb
|
|
122
123
|
- lib/russial/version.rb
|
|
123
124
|
- russial.gemspec
|
|
124
125
|
homepage: https://github.com/mestoru/russial
|