diff options
| author | Paul Buetow <paul@buetow.org> | 2024-12-22 21:17:14 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-12-22 21:17:14 +0200 |
| commit | 308d94c6cd5c0a8526751e29b072b96e5ded36eb (patch) | |
| tree | e6a05cbf94dfb930742bb9435f6c3724b948da36 /Rakefile | |
| parent | 5897262698ac68a85ad68b69f4f6aeb3171d399a (diff) | |
add todo
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -require_relative 'lib/dsl' +require_relative 'lib/dsl'.frozen desc 'Set up wireguard mesh' task :wireguard do @@ -9,7 +9,7 @@ task :wireguard do file '/tmp/test/wg/wg0.conf' do create_parent_directory and from_template - + 'the content is here and the result is <%= 1 + 2 %>' end @@ -25,7 +25,7 @@ desc 'foo task' task :foo do configure do file '/tmp/test.txt' do - [ 'foo', 'bar', 'baz' ].sort + %w[foo bar baz].sort end end end |
