ferry 1.3.3 → 2.0.0
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/bin/ferry +4 -4
- data/{doc → img}/ferry_readme_icon.png +0 -0
- data/{doc → img}/ferry_readme_icon_2.png +0 -0
- data/lib/Ferryfile +3 -0
- data/lib/ferry/all.rb +14 -0
- data/lib/ferry/configuration.rb +142 -0
- data/lib/ferry/configuration/filter.rb +56 -0
- data/lib/ferry/configuration/question.rb +53 -0
- data/lib/ferry/configuration/server.rb +131 -0
- data/lib/ferry/configuration/servers.rb +69 -0
- data/lib/ferry/defaults.rb +3 -0
- data/lib/ferry/deploy.rb +3 -0
- data/lib/ferry/dotfile.rb +2 -0
- data/lib/ferry/dsl.rb +64 -0
- data/lib/ferry/dsl/env.rb +81 -0
- data/lib/ferry/dsl/paths.rb +103 -0
- data/lib/ferry/dsl/stages.rb +19 -0
- data/lib/ferry/dsl/task_enhancements.rb +65 -0
- data/lib/ferry/framework.rb +2 -0
- data/lib/ferry/i18n.rb +18 -0
- data/lib/ferry/install.rb +1 -0
- data/lib/ferry/setup.rb +22 -0
- data/lib/ferry/tasks/deploy.rake +226 -0
- data/lib/ferry/tasks/framework.rake +52 -0
- data/lib/ferry/tasks/install.rake +41 -0
- data/lib/ferry/templates/Ferryfile +8 -0
- data/lib/ferry/templates/deploy_ferry.rb.erb +21 -0
- data/lib/ferry/templates/stage.rb.erb +1 -0
- data/lib/ferry/upload_task.rb +9 -0
- data/lib/ferry/utilities.rb +0 -12
- data/lib/ferry/version.rb +1 -1
- metadata +31 -7
- data/doc/ferry_rake_contents.rb +0 -9
- data/lib/ferry/dsl/captain.rb +0 -17
data/doc/ferry_rake_contents.rb
DELETED
@@ -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
|
data/lib/ferry/dsl/captain.rb
DELETED
@@ -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
|