File: tasks.rb

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

task environment: :dotenv