faastruby 0.5.13 → 0.5.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78ae5a5b233203bdddaf6ba73a83efdb1046020909be4a4e2e4382aef76eedb6
4
- data.tar.gz: d5391ab896bf2fb2b6aaa2726f602fd857bc03e99c1bb1f3423e443c9d3c6aa1
3
+ metadata.gz: 0b5e54c6844be6394520bbcbc4e110988f465e72b1e39bfa5be08c2369c26bf2
4
+ data.tar.gz: 0bbc86f8e775b12181d5f97e0fc3a882d6fe4792f157657134a7f071b97474dd
5
5
  SHA512:
6
- metadata.gz: 44d01a454d491ceb188cd4571c1cfbd7c4424053e4722b9eca08f0ea291b3e4dfb2d2e5852614d7af0bc450a4efc42ddf29a3880e120a40ad3f7ff63dcde96c5
7
- data.tar.gz: 13eb59c4aa0ed8ad27f0588701302ea7a94f5dcc0c346ef43b1e09a26e5156d53316d7d71ac4274ef9604c1917e92c0ff6b5e2339ea3d6ad65597dccbe842880
6
+ metadata.gz: 2c0f93bae14c8ce8921dcc25e5574fbd546819f9a1be5b751434dc1acceacb9adbf50c726a5cc6be36b9babcee7016f8e84c67632b9bbd8308d56dd1dc23df26
7
+ data.tar.gz: 980d99447c3620b0f42af8ff942753a7a6ce33c9f26e42086eb9664c24becc9002588ebd2b113ba34669275c74897b75a7bdb10e601274d171cee1a449bce82b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.5.13 - unreleased
3
+ ## 0.5.14 - Mar 17 2019
4
+ - Fix bug when trying to detect Gemfile.lock
5
+ - Add helper method to debug listener event
6
+ - Local will give the cloud Workspace URL after booting when sync is enabled
7
+ - `faastruby deploy` will print the workspace URL when it succeeds.
8
+
9
+ ## 0.5.13 - Mar 17 2019
4
10
  - Update help with new spelling
5
11
  - Better handle of deploys when sync is enabled
6
12
  - Fix broken output spinners
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- faastruby (0.5.12)
4
+ faastruby (0.5.13)
5
5
  colorize (~> 0.8)
6
6
  faastruby-rpc (~> 0.2.5)
7
7
  listen (~> 3.1)
@@ -76,6 +76,7 @@ module FaaStRuby
76
76
  puts output
77
77
  puts nil
78
78
  end
79
+ else
79
80
  puts "* Project URL: #{FaaStRuby.workspace_host_for(@workspace)}\n".green
80
81
  end
81
82
  end
@@ -133,6 +133,7 @@ module FaaStRuby
133
133
  # initial_compile
134
134
  puts "Listening for changes."
135
135
  puts "faastRuby Local is ready at http://localhost:3000"
136
+ puts "Your cloud workspace address is https://#{workspace}.tor1.faast.cloud" if SYNC_ENABLED
136
137
  sleep
137
138
  ensure
138
139
  puts "Stopping Watchdog..."
@@ -1,3 +1,3 @@
1
1
  module FaaStRuby
2
- VERSION = '0.5.13'
2
+ VERSION = '0.5.14'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faastruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.13
4
+ version: 0.5.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paulo Arruda