diff --git a/basic_cart.module b/basic_cart.module
index 964df14..4be0d42 100644
--- a/basic_cart.module
+++ b/basic_cart.module
@@ -462,4 +462,11 @@ function basic_cart_get_fields() {
       'description' => '',
     ),
   );
-}
\ No newline at end of file
+}
+
+/**
+ * Implements hook_rules_file_info().
+ */
+function basic_cart_rules_file_info() {
+  return array('basic_cart.inc');
+}
diff --git a/basic_cart.rules.inc b/basic_cart.rules.inc
new file mode 100644
index 0000000..0ab5504
--- /dev/null
+++ b/basic_cart.rules.inc
@@ -0,0 +1,17 @@
+<?php
+/**
+ * @file
+ * Rules module integration.
+ */
+
+/**
+ * Implements hook_rules_action_info().
+ */
+function basic_cart_rules_action_info() {
+  $items['basic_cart_empty_cart'] = array(
+    'label' => t('Empty cart'),
+    'group' => t('Basic Cart'),
+  );
+
+  return $items;
+}
