Module RuGPost::Utilis
In: lib/rugpost/utilis.rb

Methods

Public Instance methods

[Source]

# File lib/rugpost/utilis.rb, line 17
        def get_gmail
                puts "Please insert your gmail user name:"
          STDOUT.flush 
                gmail=gets.chomp
                puts gmail
                return gmail
        end

[Source]

# File lib/rugpost/utilis.rb, line 13
        def template_body
                "Hello from new *RuGPost* (#{VERSION}) user!"
        end

[Source]

# File lib/rugpost/utilis.rb, line 5
        def template_meta
                metahash = {
                        :title => "Hello World",
                        :tags => ["Hello World", VERSION]
                }
                metahash.to_yaml
        end

[Validate]