lib/edge/message.rb in edge_framework-2.0.0 vs lib/edge/message.rb in edge_framework-2.1.0
- old
+ new
@@ -2,26 +2,36 @@
class Message
require "edge/version"
available_template =
%Q{Currently these are the available templates:
- html - Static HTML template
- php - Standard PHP template}
+ html - Static HTML
+ wordpress - Plain WordPress theme with Timber
+ ghost - Plain Ghost theme}
syntax_create =
-%Q{edge create <project_type>}
+%Q{> edge create <template>}
help =
%Q{--------------------------------------------------------
-Welcome to Edge Framework v-#{ Edge::VERSION } (#{ Edge::CODENAME })
+ Welcome to Edge Framework v#{ Edge::VERSION } (#{ Edge::CODENAME })
--------------------------------------------------------
-Creating Template
- #{ syntax_create } }
+List of available commands:
+
+1. Create Template
+ #{ syntax_create }
+
+ #{ available_template }
+
+2. Rails Template Generator
+ Run this command inside your Rails' directory:
+ > rails g edge:install }
+
create_wrong_syntax =
%Q{WRONG SYNTAX
The correct syntax is:
-#{ syntax_create } }
+ #{ syntax_create } }
MESSAGES = {
:available_template => available_template,
:syntax_create => syntax_create,
:help => help,