summaryrefslogtreecommitdiff
path: root/examples/gem/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gem/Rakefile')
-rw-r--r--examples/gem/Rakefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/gem/Rakefile b/examples/gem/Rakefile
deleted file mode 100644
index 81a66d4..0000000
--- a/examples/gem/Rakefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# Example: Using RCM as a gem inside a Bundler-managed project.
-#
-# Run with:
-# bundle install
-# bundle exec rake setup -- --dry # dry run, no changes made
-# bundle exec rake setup -- --debug # verbose output
-# bundle exec rake setup # apply configuration
-require 'rcm'
-
-desc 'Apply system configuration'
-task :setup do
- configure do
- # Only run on the host named 'earth'
- given { hostname is :earth }
-
- # Write a WireGuard config rendered from an inline ERB template.
- file '/tmp/example/wg0.conf' do
- from template
-
- <<~TEMPLATE
- [Interface]
- Address = <%= "10.0.0.1/24" %>
- ListenPort = 51820
- TEMPLATE
- end
- end
-end