Files
fn-serverless/fnctl/langs/ruby.go
2016-11-15 15:39:20 +01:00

22 lines
390 B
Go

package langs
type RubyLangHelper struct {
}
func (lh *RubyLangHelper) Entrypoint() string {
return "ruby func.rb"
}
func (lh *RubyLangHelper) HasPreBuild() bool {
return false
}
// PreBuild for Go builds the binary so the final image can be as small as possible
func (lh *RubyLangHelper) PreBuild() error {
return nil
}
func (lh *RubyLangHelper) AfterBuild() error {
return nil
}