miyuki 0.5.7 → 0.5.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +4 -3
- data/README.md +23 -23
- data/Rakefile +18 -18
- data/bin/miyuki +34 -34
- data/example/miyuki.conf +24 -16
- data/features/load_config.feature +26 -18
- data/features/step_definitions/load_config_step.rb +52 -34
- data/features/step_definitions/track_step.rb +20 -17
- data/features/step_definitions/tracker_step.rb +79 -79
- data/features/support/changedtrackfile.db +1 -0
- data/features/support/env.rb +25 -19
- data/features/support/miyuki.conf +17 -21
- data/features/support/turn_off_notifications.patch +13 -0
- data/features/track.feature +11 -11
- data/features/tracker.feature +29 -32
- data/lib/miyuki.rb +34 -32
- data/lib/miyuki/miyuki.rb +85 -83
- data/lib/miyuki/notifier.rb +39 -39
- data/lib/miyuki/notifiers/libnotify.rb +22 -22
- data/lib/miyuki/notifiers/notifu.rb +22 -22
- data/lib/miyuki/notifiers/terminal-notifier.rb +22 -22
- data/lib/miyuki/parser.rb +55 -55
- data/lib/miyuki/tracker.rb +76 -69
- data/lib/miyuki/version.rb +17 -17
- metadata +37 -53
- data/.gitignore +0 -5
- data/.travis.yml +0 -8
- data/CHANGELOG.md +0 -30
- data/Gemfile.lock +0 -70
- data/miyuki.gemspec +0 -31
data/.gitignore
DELETED
data/.travis.yml
DELETED
data/CHANGELOG.md
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
# 0.5.6
|
2
|
-
- Fix #4
|
3
|
-
|
4
|
-
# 0.5.3 — 0.5.4 — 0.5.5
|
5
|
-
- Refactoring of torrents fetching
|
6
|
-
- Require the latest `filewatcher` gem
|
7
|
-
- Minor fixes
|
8
|
-
|
9
|
-
# 0.5.2
|
10
|
-
- Add some other tests and fix skip parameter
|
11
|
-
|
12
|
-
# 0.5.1
|
13
|
-
- Fix bug that ignores already downloaded episodes
|
14
|
-
|
15
|
-
# 0.5
|
16
|
-
- Add episodes block in the configuration file to download range of episodes
|
17
|
-
|
18
|
-
# 0.4
|
19
|
-
- Add tests
|
20
|
-
- Implement file-watcher for configuration file
|
21
|
-
- Add system notifier for Windows
|
22
|
-
|
23
|
-
# 0.3
|
24
|
-
- Implement system notifications for OSX and Linux
|
25
|
-
|
26
|
-
# 0.2
|
27
|
-
- Daemonization
|
28
|
-
|
29
|
-
# 0.1
|
30
|
-
- Initial release
|
data/Gemfile.lock
DELETED
@@ -1,70 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
builder (3.2.2)
|
5
|
-
color (1.7.1)
|
6
|
-
colorb (0.0.9)
|
7
|
-
color
|
8
|
-
cucumber (1.3.17)
|
9
|
-
builder (>= 2.1.2)
|
10
|
-
diff-lcs (>= 1.1.3)
|
11
|
-
gherkin (~> 2.12)
|
12
|
-
multi_json (>= 1.7.5, < 2.0)
|
13
|
-
multi_test (>= 0.1.1)
|
14
|
-
diff-lcs (1.2.5)
|
15
|
-
ffi (1.9.6)
|
16
|
-
ffi (1.9.6-x86-mingw32)
|
17
|
-
filewatcher (0.3.6)
|
18
|
-
trollop (~> 2.0)
|
19
|
-
foreverb (0.3.2)
|
20
|
-
thor (>= 0.15.0)
|
21
|
-
gherkin (2.12.2)
|
22
|
-
multi_json (~> 1.3)
|
23
|
-
gherkin (2.12.2-x86-mingw32)
|
24
|
-
multi_json (~> 1.3)
|
25
|
-
libnotify (0.8.4)
|
26
|
-
ffi (>= 1.0.11)
|
27
|
-
multi_json (1.10.1)
|
28
|
-
multi_test (0.1.1)
|
29
|
-
rake (10.4.2)
|
30
|
-
rb-notifu (0.0.4)
|
31
|
-
rspec (3.1.0)
|
32
|
-
rspec-core (~> 3.1.0)
|
33
|
-
rspec-expectations (~> 3.1.0)
|
34
|
-
rspec-mocks (~> 3.1.0)
|
35
|
-
rspec-core (3.1.7)
|
36
|
-
rspec-support (~> 3.1.0)
|
37
|
-
rspec-expectations (3.1.2)
|
38
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
39
|
-
rspec-support (~> 3.1.0)
|
40
|
-
rspec-mocks (3.1.3)
|
41
|
-
rspec-support (~> 3.1.0)
|
42
|
-
rspec-support (3.1.2)
|
43
|
-
ruby_deep_clone (0.6.0)
|
44
|
-
rufus-scheduler (3.0.9)
|
45
|
-
tzinfo
|
46
|
-
terminal-notifier (1.6.2)
|
47
|
-
thor (0.19.1)
|
48
|
-
thread_safe (0.3.4)
|
49
|
-
trollop (2.0)
|
50
|
-
tzinfo (1.2.2)
|
51
|
-
thread_safe (~> 0.1)
|
52
|
-
yamazaki (0.3.3)
|
53
|
-
colorb (~> 0)
|
54
|
-
|
55
|
-
PLATFORMS
|
56
|
-
ruby
|
57
|
-
x86-mingw32
|
58
|
-
|
59
|
-
DEPENDENCIES
|
60
|
-
cucumber
|
61
|
-
filewatcher (>= 0.3.6)
|
62
|
-
foreverb
|
63
|
-
libnotify
|
64
|
-
rake
|
65
|
-
rb-notifu
|
66
|
-
rspec
|
67
|
-
ruby_deep_clone
|
68
|
-
rufus-scheduler
|
69
|
-
terminal-notifier
|
70
|
-
yamazaki (>= 0.3.3)
|
data/miyuki.gemspec
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
Kernel.load 'lib/miyuki/version.rb'
|
2
|
-
|
3
|
-
Gem::Specification.new do |s|
|
4
|
-
s.name = 'miyuki'
|
5
|
-
s.version = Miyuki::VERSION
|
6
|
-
s.author = 'Roxas Shadow'
|
7
|
-
s.email = 'webmaster@giovannicapuano.net'
|
8
|
-
s.homepage = 'https://github.com/RoxasShadow/Miyuki'
|
9
|
-
s.platform = Gem::Platform::RUBY
|
10
|
-
s.summary = 'Miyuki allows you to not miss any episode of anime you\'re watching'
|
11
|
-
s.description = 'Miyuki downloads automatically every episode of anime you\'re watching'
|
12
|
-
s.files = `git ls-files -z`.split("\0")
|
13
|
-
s.require_path = 'lib'
|
14
|
-
s.executables = 'miyuki'
|
15
|
-
s.license = 'WTFPL'
|
16
|
-
|
17
|
-
s.add_dependency 'yamazaki', '~> 0.3', '>= 0.3.3'
|
18
|
-
s.add_dependency 'rufus-scheduler', '~> 3.0'
|
19
|
-
s.add_dependency 'foreverb', '~> 0.3'
|
20
|
-
s.add_dependency 'filewatcher', '~> 0.3', '>= 0.3.6'
|
21
|
-
s.add_dependency 'ruby_deep_clone', '~> 0.6'
|
22
|
-
|
23
|
-
case RUBY_PLATFORM
|
24
|
-
when /darwin/ then s.add_dependency 'terminal-notifier', '~> 1.6'
|
25
|
-
when /linux/ then s.add_dependency 'libnotify', '~> 0.8'
|
26
|
-
when /mswin|msys|mingw|cygwin/ then s.add_dependency 'rb-notifu', '~> 0.0'
|
27
|
-
end
|
28
|
-
|
29
|
-
s.add_development_dependency 'cucumber', '~> 1.3'
|
30
|
-
s.add_development_dependency 'rspec', '~> 3.2'
|
31
|
-
end
|