fn: rename from fnctl (#321)

* fn: rename from fnctl

* fn: predicting the release version for installer

* fn: predicting the release version for installer
This commit is contained in:
C Cirello
2016-11-21 17:24:26 +01:00
committed by GitHub
parent 0343c4990c
commit c0512a4cbd
45 changed files with 172 additions and 172 deletions

21
fn/langs/ruby.go Normal file
View File

@@ -0,0 +1,21 @@
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
}