Rename location.

This commit is contained in:
Travis Reeder
2017-05-15 11:00:15 -07:00
parent c0b381eb96
commit 4b9bba352d
106 changed files with 274 additions and 273 deletions

View File

@@ -5,8 +5,6 @@ import (
"encoding/json"
"fmt"
"github.com/go-openapi/loads/fmts"
"github.com/go-openapi/spec"
"io/ioutil"
"log"
"net/http"
@@ -15,6 +13,9 @@ import (
"os/user"
"path/filepath"
"strings"
"github.com/go-openapi/loads/fmts"
"github.com/go-openapi/spec"
)
const (
@@ -85,7 +86,7 @@ func main() {
options["gemName"] = "iron_functions"
options["moduleName"] = "IronFunctions"
options["gemVersion"] = version
options["gemHomepage"] = "https://github.com/kumokit/functions_ruby"
options["gemHomepage"] = "https://github.com/treeder/functions_ruby"
options["gemSummary"] = "Ruby gem for IronFunctions"
options["gemDescription"] = "Ruby gem for IronFunctions."
options["gemAuthorEmail"] = "travis@iron.io"
@@ -134,7 +135,7 @@ func main() {
branch := fmt.Sprintf("update-version-%s", version)
log.Printf("Cloning previous `%s` source...\n", language)
exec.Command("git", "clone", fmt.Sprintf("git@github.com:kumokit/functions_%s.git", short), srcDir).Run()
exec.Command("git", "clone", fmt.Sprintf("git@github.com:treeder/functions_%s.git", short), srcDir).Run()
// Skip language specific files
for _, skip := range skipFiles {