Guardfile in telnyx-0.0.1 vs Guardfile in telnyx-0.0.2
- old
+ new
@@ -1,8 +1,12 @@
# frozen_string_literal: true
directories(%w[lib test]) \
.select { |d| Dir.exist?(d) ? d : UI.warning("Directory #{d} does not exist") }
+guard :rubocop, all_on_start: true, cli: ["-a"] do
+ watch(/.*/)
+end
+
guard "rake", task: "test" do
watch(/.*/)
end