Rails Dev Camp Project This is a Ruby on Rails application Code Example def greetings puts 'Hello Rails World!' end Awesome Feature class Feature @@count = 0 def initialize @@count += 1 end def self.count puts @@count end end