lab 21 Más Estructura
Metas
- Agregar otro archivo a nuestro repositorio.
Ahora agregaremos un Rakefile 01
Vamos a agregar un Rakefile a nuestro repositorio. El siguiente archivo lo hará correctamente.
Archivo: Rakefile
#!/usr/bin/ruby -wKU task :default => :run task :run do require './lib/hello' end
Agregar y realizar Commit de los cambios.
Ejecute:
git add Rakefile git commit -m "Added a Rakefile."
Ahora debería poder usar el Rake para ejecutar su programa hello.
Ejecute:
rake
Salida:
$ rake Hello, World!