diff options
author | Matias Linares <matias.linares@comprandoengrupo.net> | 2022-06-22 14:31:23 -0300 |
---|---|---|
committer | Matias Linares <matias.linares@comprandoengrupo.net> | 2022-06-22 14:31:23 -0300 |
commit | bfe3973d0925fa3a429b327563558d36df1934e1 (patch) | |
tree | 9f3bf3417012679ac0fa0ac48039f58f8ca52e84 /Rakefile | |
download | bass-player-bfe3973d0925fa3a429b327563558d36df1934e1.tar.gz |
Initial commit
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..adfc922 --- /dev/null +++ b/Rakefile @@ -0,0 +1,9 @@ +task default: %w[test] + +task :test do + p "Hello from rakefile" +end + +task :migrate do + ruby "migrations/initial.rb" +end |