quartz_flow 0.0.1 → 0.0.2

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.
Files changed (35) hide show
  1. data/etc/quartz.rb +1 -1
  2. data/lib/quartz_flow/home.rb +33 -0
  3. data/lib/quartz_flow/plugin.rb +69 -0
  4. data/lib/quartz_flow/server.rb +33 -4
  5. data/lib/quartz_flow/settings_helper.rb +22 -1
  6. data/lib/quartz_flow/torrent_manager.rb +53 -6
  7. data/lib/quartz_flow/wrappers.rb +1 -0
  8. data/public/bootstrap/css/bootstrap-theme.css +459 -0
  9. data/public/bootstrap/css/bootstrap-theme.min.css +9 -0
  10. data/public/bootstrap/css/bootstrap.css +4927 -3996
  11. data/public/bootstrap/css/bootstrap.min.css +6 -6
  12. data/public/bootstrap/js/bootstrap.js +1156 -1434
  13. data/public/bootstrap/js/bootstrap.min.js +8 -5
  14. data/public/{bootstrap → bootstrap-2.3.2}/css/bootstrap-responsive.css +0 -0
  15. data/public/{bootstrap → bootstrap-2.3.2}/css/bootstrap-responsive.min.css +0 -0
  16. data/public/bootstrap-2.3.2/css/bootstrap.css +6167 -0
  17. data/public/bootstrap-2.3.2/css/bootstrap.min.css +9 -0
  18. data/public/{bootstrap → bootstrap-2.3.2}/img/glyphicons-halflings-white.png +0 -0
  19. data/public/{bootstrap → bootstrap-2.3.2}/img/glyphicons-halflings.png +0 -0
  20. data/public/bootstrap-2.3.2/js/bootstrap.js +2280 -0
  21. data/public/bootstrap-2.3.2/js/bootstrap.min.js +6 -0
  22. data/public/bootstrap-3.0.2/css/bootstrap-theme.css +459 -0
  23. data/public/bootstrap-3.0.2/css/bootstrap-theme.min.css +9 -0
  24. data/public/bootstrap-3.0.2/css/bootstrap.css +7098 -0
  25. data/public/bootstrap-3.0.2/css/bootstrap.min.css +9 -0
  26. data/public/bootstrap-3.0.2/js/bootstrap.js +2002 -0
  27. data/public/bootstrap-3.0.2/js/bootstrap.min.js +9 -0
  28. data/public/js/quartz.js +118 -22
  29. data/public/style.css +24 -0
  30. data/views/config_partial.haml +18 -18
  31. data/views/index.haml +17 -1
  32. data/views/menu_partial.haml +9 -0
  33. data/views/torrent_detail_partial.haml +21 -17
  34. data/views/torrent_table_partial.haml +29 -27
  35. metadata +24 -10
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quartz_flow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -16,17 +16,17 @@ dependencies:
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ! '>='
19
+ - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '0'
21
+ version: '0.1'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  none: false
26
26
  requirements:
27
- - - ! '>='
27
+ - - ~>
28
28
  - !ruby/object:Gem::Version
29
- version: '0'
29
+ version: '0.1'
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: data_mapper
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -102,20 +102,34 @@ files:
102
102
  - bin/quartzflow
103
103
  - public/style.css
104
104
  - public/bootstrap/css/bootstrap.min.css
105
- - public/bootstrap/css/bootstrap-responsive.min.css
105
+ - public/bootstrap/css/bootstrap-theme.min.css
106
+ - public/bootstrap/css/bootstrap-theme.css
106
107
  - public/bootstrap/css/bootstrap.css
107
- - public/bootstrap/css/bootstrap-responsive.css
108
+ - public/bootstrap-2.3.2/css/bootstrap.min.css
109
+ - public/bootstrap-2.3.2/css/bootstrap-responsive.min.css
110
+ - public/bootstrap-2.3.2/css/bootstrap.css
111
+ - public/bootstrap-2.3.2/css/bootstrap-responsive.css
112
+ - public/bootstrap-3.0.2/css/bootstrap.min.css
113
+ - public/bootstrap-3.0.2/css/bootstrap-theme.min.css
114
+ - public/bootstrap-3.0.2/css/bootstrap-theme.css
115
+ - public/bootstrap-3.0.2/css/bootstrap.css
108
116
  - public/bootstrap/js/bootstrap.js
109
117
  - public/bootstrap/js/bootstrap.min.js
110
118
  - public/js/quartz.js
111
119
  - public/js/jquery-1.10.2.min.js
112
- - public/bootstrap/img/glyphicons-halflings.png
113
- - public/bootstrap/img/glyphicons-halflings-white.png
120
+ - public/bootstrap-2.3.2/js/bootstrap.js
121
+ - public/bootstrap-2.3.2/js/bootstrap.min.js
122
+ - public/bootstrap-3.0.2/js/bootstrap.js
123
+ - public/bootstrap-3.0.2/js/bootstrap.min.js
124
+ - public/bootstrap-2.3.2/img/glyphicons-halflings.png
125
+ - public/bootstrap-2.3.2/img/glyphicons-halflings-white.png
114
126
  - views/torrent_table_partial.haml
127
+ - views/menu_partial.haml
115
128
  - views/login.haml
116
129
  - views/config_partial.haml
117
130
  - views/torrent_detail_partial.haml
118
131
  - views/index.haml
132
+ - lib/quartz_flow/plugin.rb
119
133
  - lib/quartz_flow/session.rb
120
134
  - lib/quartz_flow/settings_helper.rb
121
135
  - lib/quartz_flow/authentication.rb
@@ -129,7 +143,7 @@ files:
129
143
  - lib/quartz_flow/server.rb
130
144
  - etc/logging.rb
131
145
  - etc/quartz.rb
132
- homepage: https://github.com/jeffwilliams/quartz-torrent
146
+ homepage: https://github.com/jeffwilliams/quartz-flow
133
147
  licenses: []
134
148
  post_install_message:
135
149
  rdoc_options: []