jumping_words 0.0.2 → 0.0.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.
- data/README.rdoc +15 -16
- data/jwords.gemspec +1 -1
- data/lib/jwords/version.rb +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -1,30 +1,29 @@
|
|
1
1
|
= Jumping Words
|
2
|
-
|
2
|
+
The program for Ubuntu speaks and displays in the pop-up window the word (phrase) and then translated word (phrase).
|
3
3
|
|
4
|
-
==
|
4
|
+
== Dependencies
|
5
5
|
sudo apt-get install libnotify-bin
|
6
6
|
|
7
|
-
==
|
8
|
-
|
9
|
-
|
7
|
+
== Actions
|
8
|
+
Starting
|
9
|
+
jword -s
|
10
10
|
|
11
|
-
|
12
|
-
|
11
|
+
View a list of words
|
12
|
+
jword -l
|
13
13
|
|
14
14
|
1 to write: писать
|
15
15
|
2 root: корень
|
16
16
|
3 list: список
|
17
17
|
...
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
19
|
+
Adding words to the database
|
20
|
+
jword -a root: корень
|
21
|
+
jword -a to game: играть
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
23
|
+
Delete a word from the database (indicated by the index of the word)
|
24
|
+
jword -d 1
|
25
|
+
jword -d 1 2
|
26
26
|
|
27
|
-
==
|
28
|
-
|
29
|
-
git clone git://github.com/devmen/jumping_words.git
|
27
|
+
== Install
|
28
|
+
gem install jumping_words
|
30
29
|
|
data/jwords.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Jwords::VERSION
|
8
8
|
s.authors = ["Alex Dmitriev"]
|
9
9
|
s.email = ["alex@devmen.com"]
|
10
|
-
s.homepage = ""
|
10
|
+
s.homepage = "https://github.com/devmen/jumping_words"
|
11
11
|
s.summary = %q{Jumping Words is gem for learning new words foreign languages}
|
12
12
|
s.description = %q{Jumping Words is gem for learning new words foreign languages, only ubuntu}
|
13
13
|
|
data/lib/jwords/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: jumping_words
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.3
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Alex Dmitriev
|
@@ -35,7 +35,7 @@ files:
|
|
35
35
|
- lib/jwords/db_words.rb
|
36
36
|
- lib/jwords/say_words.rb
|
37
37
|
- lib/jwords/version.rb
|
38
|
-
homepage:
|
38
|
+
homepage: https://github.com/devmen/jumping_words
|
39
39
|
licenses: []
|
40
40
|
|
41
41
|
post_install_message:
|