dict 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +25 -3
- data/dict.gemspec +1 -1
- data/lib/dict/cli/runner.rb +1 -1
- data/lib/dict/version.rb +1 -1
- metadata +2 -1
data/README.md
CHANGED
@@ -8,6 +8,28 @@ To search for `WORD`:
|
|
8
8
|
|
9
9
|
### Available options ###
|
10
10
|
|
11
|
-
- `-h` or `--help`
|
12
|
-
- `-t` or `--time`
|
13
|
-
- `-d` or `--dict`
|
11
|
+
- `-h` or `--help` - displays help message
|
12
|
+
- `-t` or `--time` - used to set timeout in seconds. Default value: 300
|
13
|
+
- `-d` or `--dict` - used to select desired dictionary
|
14
|
+
- `-v` or `--version` - used to show version, authors, license
|
15
|
+
|
16
|
+
|
17
|
+
## People
|
18
|
+
|
19
|
+
### Trainees
|
20
|
+
- [Jan Borwin](https://github.com/janiuuuu)
|
21
|
+
- [Mateusz Czerwiński](https://github.com/mrfustrr)
|
22
|
+
- [Kosma Dunikowski](https://github.com/kdunee)
|
23
|
+
- [Aleksander Gozdek](https://github.com/alexgozdek)
|
24
|
+
- [Rafał Ośko](https://github.com/rekosko)
|
25
|
+
- [Michał Podlecki](https://github.com/michalpodlecki)
|
26
|
+
|
27
|
+
### Mentors
|
28
|
+
- [Grzegorz Kołodziejczyk](https://github.com/grk)
|
29
|
+
- [Michał Kwiatkowski](https://github.com/mkwiatkowski)
|
30
|
+
|
31
|
+
## Made during intership at Ragnarson
|
32
|
+
[Ragnarson](http://ragnarson.com/)
|
33
|
+
|
34
|
+
## Hosted by
|
35
|
+
[Shelly Cloud](https://shellycloud.com/)
|
data/dict.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
|
13
13
|
s.name = %q{dict}
|
14
14
|
s.version = Dict::VERSION
|
15
|
-
s.authors = ['Aleksander Gozdek', 'Mateusz Czerwinski', 'Michał Podlecki', 'Rafał Ośko', 'Kosma Dunikowski']
|
15
|
+
s.authors = ['Aleksander Gozdek', 'Mateusz Czerwinski', 'Michał Podlecki', 'Rafał Ośko', 'Kosma Dunikowski', 'Jan Borwin']
|
16
16
|
s.email = ['mtczerwinski@gmail.com']
|
17
17
|
s.date = Time.now.strftime('%Y-%m-%d')
|
18
18
|
s.summary = %q{Gem made for dictionary application}
|
data/lib/dict/cli/runner.rb
CHANGED
@@ -51,7 +51,7 @@ Search WORD in dict, an open source dictionary aggregator.
|
|
51
51
|
end
|
52
52
|
|
53
53
|
MSG = "Usage: dict WORD [OPTIONS]\nTry `dict --help for more information.\n"
|
54
|
-
VERSION = "dict version #{Dict::VERSION}
|
54
|
+
VERSION = "dict version #{Dict::VERSION}\nSearch WORD in dict, an open source dictionary aggregator.\nCopyright (C) 2012 by Mateusz Czerwiński, Michał Podlecki,\nAleksander Gozdek, Rafał Ośko, Jan Borwin, Kosma Dunikowski\nMentors: Grzegorz Kołodziejski, Michał Kwiatkowski\nMade during intership at Ragnarson http://ragnarson.com\nHosted by Shelly Cloud https://shellycloud.com\nLicense: MIT\nHomepage: https://github.com/Ragnarson/dict-gem\nSources dictionaries: http://dict.pl, http://pl.wiktionary.org"
|
55
55
|
|
56
56
|
|
57
57
|
def run
|
data/lib/dict/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dict
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,6 +10,7 @@ authors:
|
|
10
10
|
- Michał Podlecki
|
11
11
|
- Rafał Ośko
|
12
12
|
- Kosma Dunikowski
|
13
|
+
- Jan Borwin
|
13
14
|
autorequire:
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|