gina-conveyor 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.
- data/.gitignore +9 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +49 -0
- data/LICENSE +25 -0
- data/README.md +24 -0
- data/Rakefile +2 -0
- data/bin/conveyor +4 -0
- data/conveyor.gemspec +30 -0
- data/lib/conveyor/belt.rb +59 -0
- data/lib/conveyor/foreman.rb +182 -0
- data/lib/conveyor/input/commands.rb +21 -0
- data/lib/conveyor/input/console.rb +39 -0
- data/lib/conveyor/input.rb +12 -0
- data/lib/conveyor/job_state.rb +2 -0
- data/lib/conveyor/output/channel.rb +22 -0
- data/lib/conveyor/output/console.rb +39 -0
- data/lib/conveyor/output/email.rb +36 -0
- data/lib/conveyor/output/logfile.rb +38 -0
- data/lib/conveyor/output.rb +76 -0
- data/lib/conveyor/queue.rb +80 -0
- data/lib/conveyor/status.rb +29 -0
- data/lib/conveyor/version.rb +3 -0
- data/lib/conveyor/websocket.rb +37 -0
- data/lib/conveyor/worker.rb +120 -0
- data/lib/conveyor/workers/syntax.rb +127 -0
- data/lib/conveyor.rb +62 -0
- data/webviewer/.gitignore +15 -0
- data/webviewer/Gemfile +39 -0
- data/webviewer/Gemfile.lock +119 -0
- data/webviewer/README.rdoc +261 -0
- data/webviewer/Rakefile +7 -0
- data/webviewer/app/assets/images/rails.png +0 -0
- data/webviewer/app/assets/javascripts/application.js +16 -0
- data/webviewer/app/assets/javascripts/welcome.js.coffee +61 -0
- data/webviewer/app/assets/stylesheets/application.css.scss +6 -0
- data/webviewer/app/assets/stylesheets/welcome.css.scss +3 -0
- data/webviewer/app/controllers/application_controller.rb +3 -0
- data/webviewer/app/controllers/welcome_controller.rb +4 -0
- data/webviewer/app/helpers/application_helper.rb +2 -0
- data/webviewer/app/helpers/welcome_helper.rb +2 -0
- data/webviewer/app/mailers/.gitkeep +0 -0
- data/webviewer/app/models/.gitkeep +0 -0
- data/webviewer/app/views/layouts/application.html.haml +14 -0
- data/webviewer/app/views/welcome/index.html.haml +3 -0
- data/webviewer/config/application.rb +59 -0
- data/webviewer/config/boot.rb +6 -0
- data/webviewer/config/database.yml +25 -0
- data/webviewer/config/environment.rb +5 -0
- data/webviewer/config/environments/development.rb +37 -0
- data/webviewer/config/environments/production.rb +67 -0
- data/webviewer/config/environments/test.rb +37 -0
- data/webviewer/config/initializers/backtrace_silencers.rb +7 -0
- data/webviewer/config/initializers/inflections.rb +15 -0
- data/webviewer/config/initializers/mime_types.rb +5 -0
- data/webviewer/config/initializers/secret_token.rb +7 -0
- data/webviewer/config/initializers/session_store.rb +8 -0
- data/webviewer/config/initializers/wrap_parameters.rb +14 -0
- data/webviewer/config/locales/en.yml +5 -0
- data/webviewer/config/routes.rb +58 -0
- data/webviewer/config.ru +4 -0
- data/webviewer/db/seeds.rb +7 -0
- data/webviewer/doc/README_FOR_APP +2 -0
- data/webviewer/lib/assets/.gitkeep +0 -0
- data/webviewer/lib/tasks/.gitkeep +0 -0
- data/webviewer/log/.gitkeep +0 -0
- data/webviewer/public/404.html +26 -0
- data/webviewer/public/422.html +26 -0
- data/webviewer/public/500.html +25 -0
- data/webviewer/public/favicon.ico +0 -0
- data/webviewer/public/robots.txt +5 -0
- data/webviewer/script/rails +6 -0
- data/webviewer/test/fixtures/.gitkeep +0 -0
- data/webviewer/test/functional/.gitkeep +0 -0
- data/webviewer/test/functional/welcome_controller_test.rb +7 -0
- data/webviewer/test/integration/.gitkeep +0 -0
- data/webviewer/test/performance/browsing_test.rb +12 -0
- data/webviewer/test/test_helper.rb +13 -0
- data/webviewer/test/unit/.gitkeep +0 -0
- data/webviewer/test/unit/helpers/welcome_helper_test.rb +4 -0
- data/webviewer/vendor/assets/javascripts/.gitkeep +0 -0
- data/webviewer/vendor/assets/stylesheets/.gitkeep +0 -0
- data/webviewer/vendor/plugins/.gitkeep +0 -0
- data/worker-examples/barrow_webcam.worker.disabled +19 -0
- data/worker-examples/barrow_webcam.worker.example +16 -0
- data/worker-examples/conveyor.worker.example +5 -0
- data/worker-examples/devel.worker +17 -0
- metadata +260 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Webviewer::Application.config.secret_token = '027c4a6756c4f1ab246cf7da60fc321cda731997d2b207bdfd244972fba4873935d04ff976426c7b8f2b75d52b240e131ac01886cb4071058d23ea941f18688d'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Webviewer::Application.config.session_store :cookie_store, key: '_webviewer_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Webviewer::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters format: [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
Webviewer::Application.routes.draw do
|
2
|
+
# The priority is based upon order of creation:
|
3
|
+
# first created -> highest priority.
|
4
|
+
|
5
|
+
# Sample of regular route:
|
6
|
+
# match 'products/:id' => 'catalog#view'
|
7
|
+
# Keep in mind you can assign values other than :controller and :action
|
8
|
+
|
9
|
+
# Sample of named route:
|
10
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
11
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
12
|
+
|
13
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
14
|
+
# resources :products
|
15
|
+
|
16
|
+
# Sample resource route with options:
|
17
|
+
# resources :products do
|
18
|
+
# member do
|
19
|
+
# get 'short'
|
20
|
+
# post 'toggle'
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
# collection do
|
24
|
+
# get 'sold'
|
25
|
+
# end
|
26
|
+
# end
|
27
|
+
|
28
|
+
# Sample resource route with sub-resources:
|
29
|
+
# resources :products do
|
30
|
+
# resources :comments, :sales
|
31
|
+
# resource :seller
|
32
|
+
# end
|
33
|
+
|
34
|
+
# Sample resource route with more complex sub-resources
|
35
|
+
# resources :products do
|
36
|
+
# resources :comments
|
37
|
+
# resources :sales do
|
38
|
+
# get 'recent', :on => :collection
|
39
|
+
# end
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Sample resource route within a namespace:
|
43
|
+
# namespace :admin do
|
44
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
45
|
+
# # (app/controllers/admin/products_controller.rb)
|
46
|
+
# resources :products
|
47
|
+
# end
|
48
|
+
|
49
|
+
# You can have the root of your site routed with "root"
|
50
|
+
# just remember to delete public/index.html.
|
51
|
+
root :to => 'welcome#index'
|
52
|
+
|
53
|
+
# See how all your routes lay out with "rake routes"
|
54
|
+
|
55
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
56
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
57
|
+
# match ':controller(/:action(/:id))(.:format)'
|
58
|
+
end
|
data/webviewer/config.ru
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
# This file should contain all the record creation needed to seed the database with its default values.
|
2
|
+
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
3
|
+
#
|
4
|
+
# Examples:
|
5
|
+
#
|
6
|
+
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
|
7
|
+
# Mayor.create(name: 'Emanuel', city: cities.first)
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/404.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/422.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>The change you wanted was rejected.</h1>
|
23
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
+
</div>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style type="text/css">
|
6
|
+
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
+
div.dialog {
|
8
|
+
width: 25em;
|
9
|
+
padding: 0 4em;
|
10
|
+
margin: 4em auto 0 auto;
|
11
|
+
border: 1px solid #ccc;
|
12
|
+
border-right-color: #999;
|
13
|
+
border-bottom-color: #999;
|
14
|
+
}
|
15
|
+
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
+
</style>
|
17
|
+
</head>
|
18
|
+
|
19
|
+
<body>
|
20
|
+
<!-- This file lives in public/500.html -->
|
21
|
+
<div class="dialog">
|
22
|
+
<h1>We're sorry, but something went wrong.</h1>
|
23
|
+
</div>
|
24
|
+
</body>
|
25
|
+
</html>
|
File without changes
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
require 'rails/performance_test_help'
|
3
|
+
|
4
|
+
class BrowsingTest < ActionDispatch::PerformanceTest
|
5
|
+
# Refer to the documentation for all available options
|
6
|
+
# self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
|
7
|
+
# :output => 'tmp/performance', :formats => [:flat] }
|
8
|
+
|
9
|
+
def test_homepage
|
10
|
+
get '/'
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path('../../config/environment', __FILE__)
|
3
|
+
require 'rails/test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
7
|
+
#
|
8
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
9
|
+
# -- they do not yet inherit this setting
|
10
|
+
fixtures :all
|
11
|
+
|
12
|
+
# Add more helper methods to be used by all tests here...
|
13
|
+
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,19 @@
|
|
1
|
+
watch '/home/wfisher/data_test/incoming' do
|
2
|
+
|
3
|
+
match md5$ do # |filename|
|
4
|
+
copy to '/home/wfisher/data_test/barrow_webcams'
|
5
|
+
end
|
6
|
+
|
7
|
+
=begin
|
8
|
+
match /md5$/ do # |filename|
|
9
|
+
copy like(filename), '/home/wfisher/data_test/barrow_webcams'
|
10
|
+
end
|
11
|
+
|
12
|
+
match /md5$/ do # |filename|
|
13
|
+
source like(filename)
|
14
|
+
destination '/home/wfisher/data_test/barrow_webcams'
|
15
|
+
copy
|
16
|
+
end
|
17
|
+
=end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
watch '/home/wfisher/data_test/incoming' do
|
2
|
+
|
3
|
+
match extension md5 do # |filename|
|
4
|
+
copy to '/home/wfisher/data_test/barrow_webcams'
|
5
|
+
end
|
6
|
+
|
7
|
+
match extension md5 do # |filename|
|
8
|
+
copy like(filename), '/home/wfisher/data_test/barrow_webcams'
|
9
|
+
end
|
10
|
+
|
11
|
+
match extension md5 do # |filename|
|
12
|
+
source like(filename)
|
13
|
+
destination '/home/wfisher/data_test/barrow_webcams'
|
14
|
+
copy
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
watch '~/data_test', :force_polling => true do
|
2
|
+
notify 'will@alaska.edu'
|
3
|
+
loglvl :debug
|
4
|
+
|
5
|
+
match extension done do
|
6
|
+
warning filename
|
7
|
+
sleep 5
|
8
|
+
#copy(like(filename), '~/test_bag/')
|
9
|
+
#copy(like(filename), '~/tester')
|
10
|
+
#copy(filename, '~/test_bar')
|
11
|
+
#copy(File.dirname(filename), '~/tester') #should fail
|
12
|
+
|
13
|
+
#scp filename, 'will@localhost:~/test_bag/'
|
14
|
+
#move like(filename), '~/tester_done/'
|
15
|
+
# delete like(filename) if status.success?
|
16
|
+
end
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,260 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gina-conveyor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Will Fisher
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-24 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rake
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: activemodel
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 3.2.0
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 3.2.0
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: activesupport
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 3.2.0
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.2.0
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: listen
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 0.4.2
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.4.2
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: rainbow
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: 1.1.4
|
86
|
+
type: :runtime
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 1.1.4
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: rb-readline
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ~>
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: 0.4.2
|
102
|
+
type: :runtime
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ~>
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 0.4.2
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: eventmachine
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 0.12.10
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 0.12.10
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: em-websocket
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ~>
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 0.3.6
|
134
|
+
type: :runtime
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ~>
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: 0.3.6
|
142
|
+
description: Conveyor is used for shuffling data around
|
143
|
+
email:
|
144
|
+
- will@gina.alaska.edu
|
145
|
+
executables:
|
146
|
+
- conveyor
|
147
|
+
extensions: []
|
148
|
+
extra_rdoc_files: []
|
149
|
+
files:
|
150
|
+
- .gitignore
|
151
|
+
- Gemfile
|
152
|
+
- Gemfile.lock
|
153
|
+
- LICENSE
|
154
|
+
- README.md
|
155
|
+
- Rakefile
|
156
|
+
- bin/conveyor
|
157
|
+
- conveyor.gemspec
|
158
|
+
- lib/conveyor.rb
|
159
|
+
- lib/conveyor/belt.rb
|
160
|
+
- lib/conveyor/foreman.rb
|
161
|
+
- lib/conveyor/input.rb
|
162
|
+
- lib/conveyor/input/commands.rb
|
163
|
+
- lib/conveyor/input/console.rb
|
164
|
+
- lib/conveyor/job_state.rb
|
165
|
+
- lib/conveyor/output.rb
|
166
|
+
- lib/conveyor/output/channel.rb
|
167
|
+
- lib/conveyor/output/console.rb
|
168
|
+
- lib/conveyor/output/email.rb
|
169
|
+
- lib/conveyor/output/logfile.rb
|
170
|
+
- lib/conveyor/queue.rb
|
171
|
+
- lib/conveyor/status.rb
|
172
|
+
- lib/conveyor/version.rb
|
173
|
+
- lib/conveyor/websocket.rb
|
174
|
+
- lib/conveyor/worker.rb
|
175
|
+
- lib/conveyor/workers/syntax.rb
|
176
|
+
- webviewer/.gitignore
|
177
|
+
- webviewer/Gemfile
|
178
|
+
- webviewer/Gemfile.lock
|
179
|
+
- webviewer/README.rdoc
|
180
|
+
- webviewer/Rakefile
|
181
|
+
- webviewer/app/assets/images/rails.png
|
182
|
+
- webviewer/app/assets/javascripts/application.js
|
183
|
+
- webviewer/app/assets/javascripts/welcome.js.coffee
|
184
|
+
- webviewer/app/assets/stylesheets/application.css.scss
|
185
|
+
- webviewer/app/assets/stylesheets/welcome.css.scss
|
186
|
+
- webviewer/app/controllers/application_controller.rb
|
187
|
+
- webviewer/app/controllers/welcome_controller.rb
|
188
|
+
- webviewer/app/helpers/application_helper.rb
|
189
|
+
- webviewer/app/helpers/welcome_helper.rb
|
190
|
+
- webviewer/app/mailers/.gitkeep
|
191
|
+
- webviewer/app/models/.gitkeep
|
192
|
+
- webviewer/app/views/layouts/application.html.haml
|
193
|
+
- webviewer/app/views/welcome/index.html.haml
|
194
|
+
- webviewer/config.ru
|
195
|
+
- webviewer/config/application.rb
|
196
|
+
- webviewer/config/boot.rb
|
197
|
+
- webviewer/config/database.yml
|
198
|
+
- webviewer/config/environment.rb
|
199
|
+
- webviewer/config/environments/development.rb
|
200
|
+
- webviewer/config/environments/production.rb
|
201
|
+
- webviewer/config/environments/test.rb
|
202
|
+
- webviewer/config/initializers/backtrace_silencers.rb
|
203
|
+
- webviewer/config/initializers/inflections.rb
|
204
|
+
- webviewer/config/initializers/mime_types.rb
|
205
|
+
- webviewer/config/initializers/secret_token.rb
|
206
|
+
- webviewer/config/initializers/session_store.rb
|
207
|
+
- webviewer/config/initializers/wrap_parameters.rb
|
208
|
+
- webviewer/config/locales/en.yml
|
209
|
+
- webviewer/config/routes.rb
|
210
|
+
- webviewer/db/seeds.rb
|
211
|
+
- webviewer/doc/README_FOR_APP
|
212
|
+
- webviewer/lib/assets/.gitkeep
|
213
|
+
- webviewer/lib/tasks/.gitkeep
|
214
|
+
- webviewer/log/.gitkeep
|
215
|
+
- webviewer/public/404.html
|
216
|
+
- webviewer/public/422.html
|
217
|
+
- webviewer/public/500.html
|
218
|
+
- webviewer/public/favicon.ico
|
219
|
+
- webviewer/public/robots.txt
|
220
|
+
- webviewer/script/rails
|
221
|
+
- webviewer/test/fixtures/.gitkeep
|
222
|
+
- webviewer/test/functional/.gitkeep
|
223
|
+
- webviewer/test/functional/welcome_controller_test.rb
|
224
|
+
- webviewer/test/integration/.gitkeep
|
225
|
+
- webviewer/test/performance/browsing_test.rb
|
226
|
+
- webviewer/test/test_helper.rb
|
227
|
+
- webviewer/test/unit/.gitkeep
|
228
|
+
- webviewer/test/unit/helpers/welcome_helper_test.rb
|
229
|
+
- webviewer/vendor/assets/javascripts/.gitkeep
|
230
|
+
- webviewer/vendor/assets/stylesheets/.gitkeep
|
231
|
+
- webviewer/vendor/plugins/.gitkeep
|
232
|
+
- worker-examples/barrow_webcam.worker.disabled
|
233
|
+
- worker-examples/barrow_webcam.worker.example
|
234
|
+
- worker-examples/conveyor.worker.example
|
235
|
+
- worker-examples/devel.worker
|
236
|
+
homepage: http://github.com/gina-alaska/conveyor.git
|
237
|
+
licenses: []
|
238
|
+
post_install_message:
|
239
|
+
rdoc_options: []
|
240
|
+
require_paths:
|
241
|
+
- lib
|
242
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
243
|
+
none: false
|
244
|
+
requirements:
|
245
|
+
- - ! '>='
|
246
|
+
- !ruby/object:Gem::Version
|
247
|
+
version: '0'
|
248
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
249
|
+
none: false
|
250
|
+
requirements:
|
251
|
+
- - ! '>='
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
version: '0'
|
254
|
+
requirements: []
|
255
|
+
rubyforge_project:
|
256
|
+
rubygems_version: 1.8.22
|
257
|
+
signing_key:
|
258
|
+
specification_version: 3
|
259
|
+
summary: GINA Data Conveyor
|
260
|
+
test_files: []
|