ferry 1.3.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +0,0 @@
1
- # this is your ferry initialzer file for any rake tasks you would like to create
2
- # in this file you can write rake tasks that are easily tailored to more case-by-case user implementations
3
- # but can still include functionality provided by ferry
4
- # more configurable env options coming soon via Ferry's DSL that will be written soon!
5
- # so this will be very obsolete soon!
6
-
7
- namespace :ferry do
8
- # your code here!
9
- end
@@ -1,17 +0,0 @@
1
- require 'ferry'
2
-
3
- class Captain < Ferry
4
-
5
- # after initializing some captain class
6
- # we need to be able to
7
- # 0 know what kind of content we want to move
8
- # 1 know where we need to move data from
9
- # 2 know where we need to move data to
10
- # 3 any specifics of
11
-
12
- def initialize(**opts)
13
- # @cargo ||= opts[:cargo]
14
- # @to_loc ||= opts[:to_loc]
15
- # @from_loc ||= opts[:form_loc]
16
- end
17
- end