gosu / releasy

A rake task generator to help with building/packaging/deploying Ruby applications (⚠️ unmaintained)
https://spooner.github.com/libraries/releasy/
MIT License
378 stars 29 forks source link

Where releasy saves his output? #65

Closed ThePirate42 closed 7 years ago

ThePirate42 commented 7 years ago

I'm new to releasy (and I didn't speak english very well, I'm italian). When I tried this rakefile:

require 'rubygems'
require 'bundler/setup'
require 'releasy'

Releasy::Project.new do
name "Numeri in lettere"
version "1.0"
verbose

executable "bin/numitalianoplus.rb"
files "lib/method.rb"
exposed_files "README.txt"

add_build :source do
add_package :"7z"
end

add_build :windows_folder do
executable_type :console
add_package :exe
end

add_deploy :local
end

the output in the command line was:

rake build                            # Build Numeri in lettere 1.0
rake build:source                     # Build source
rake build:windows                    # Build all windows
rake build:windows:folder             # Build windows folder
rake deploy                           # Deploy Numeri in lettere 1.0
rake deploy:source:7z:local           # local <= source .7z
rake deploy:windows:folder:exe:local  # local <= windows folder .exe
rake package                          # Package Numeri in lettere 1.0
rake package:source:7z                # Package source .7z
rake package:windows:folder:exe       # Package windows folder .exe

But where did the two files with the extension exe and 7z have been saved?