-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add logging, default Lua file, node prev/next
- Loading branch information
Showing
11 changed files
with
453 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
.vscode | ||
*.code-workspace | ||
dist/ | ||
store/ | ||
playground/ | ||
bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@versions = {} | ||
|
||
File.read("version").each_line do |line| | ||
product,versionnumber = line.chomp.split(/=/) | ||
@versions[product]=versionnumber | ||
end | ||
|
||
@ets_version = @versions['ets_version'] | ||
|
||
desc "Show rake description" | ||
task :default do | ||
puts | ||
puts "Run 'rake -T' for a list of tasks." | ||
puts | ||
puts "1: Use 'rake build' to build the 'ets' binary. That should be\n the starting point." | ||
puts | ||
end | ||
|
||
|
||
desc "Compile and install necessary software" | ||
task :build do | ||
sh "go build -ldflags \"-X main.version=#{@ets_version}\" -o bin/ets github.com/speedata/ets/ets/ets" | ||
end | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.