File: tasks.rb

package info (click to toggle)
ruby-dotenv 3.1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: ruby: 539; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
desc "Load environment settings from .env"
task :dotenv do
  require "dotenv"
  Dotenv.load
end

task environment: :dotenv