miyuki 0.5.7 → 0.5.10

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/.gitignore DELETED
@@ -1,5 +0,0 @@
1
- *.gem
2
- *.pid
3
- *.log
4
- bin/tmp/
5
- features/support/testWatchDir/
data/.travis.yml DELETED
@@ -1,8 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 1.9.3
4
- - 2.0.0
5
- - 2.1.2
6
-
7
- notifications:
8
- irc: 'irc.rizon.net#aggvistnurummor'
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