)
\ No newline at end of file
diff --git a/handlebars/ember_intro.in.handlebars b/handlebars/ember_intro.in.handlebars
new file mode 100644
index 0000000..702d0d8
--- /dev/null
+++ b/handlebars/ember_intro.in.handlebars
@@ -0,0 +1,11 @@
+{{! Getting Started Example
+ (from emberjs.com)}}
+
+
\ No newline at end of file
diff --git a/handlebars/ember_view.expected.raydebug b/handlebars/ember_view.expected.raydebug
new file mode 100644
index 0000000..ee5f324
--- /dev/null
+++ b/handlebars/ember_view.expected.raydebug
@@ -0,0 +1,10 @@
+tag(
)plain(Joe's Lamprey Shack)tag(
)
+inline
+inline
+ plain(If you are experiencing discomfort from eating at Joe's Lamprey Shack,
+please use the form below to submit a complaint to the FDA.
+ )inline
+ inlineinline_delimiter(}})>
+ tag()
+ inline
+inline
\ No newline at end of file
diff --git a/handlebars/ember_view.in.handlebars b/handlebars/ember_view.in.handlebars
new file mode 100644
index 0000000..2543c04
--- /dev/null
+++ b/handlebars/ember_view.in.handlebars
@@ -0,0 +1,10 @@
+
Joe's Lamprey Shack
+{{controller.restaurantHours}}
+{{#view App.FDAContactForm}}
+ If you are experiencing discomfort from eating at Joe's Lamprey Shack,
+please use the form below to submit a complaint to the FDA.
+ {{#if controller.allowComplaints}}
+ {{view Ember.TextArea valueBinding="controller.complaint"}}
+
+ {{/if}}
+{{/view}}
\ No newline at end of file
diff --git a/handlebars/suite.rb b/handlebars/suite.rb
new file mode 100644
index 0000000..9adbd2a
--- /dev/null
+++ b/handlebars/suite.rb
@@ -0,0 +1,2 @@
+class Handlebars < CodeRay::TestCase
+end