faastruby 0.5.2 → 0.5.3

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: fd042adae115937128465948d8e87b3dccab76e713e84ed09ea1c1549eef95ac
4
- data.tar.gz: 725f8058b9e50fb416949c7824baca17897fda472352a4e59a28335119ae0189
3
+ metadata.gz: 7e09390c5deb3d850e0dd145fcacb0aad869abfe29eb44391e27f72925de8ce9
4
+ data.tar.gz: 12f5cd15e6f552965340c5033212e40fee378a196815f692d4b76e0c838c0c1d
5
5
  SHA512:
6
- metadata.gz: 353e84e8e2bf16b95f3ffd736a1e15ba5396ac255a2710c69ea426f4cf1dac7891269dac5dfb06f3a2c8bdc7646c7e18343e876a65b8c35b09becd79e98cbdbf
7
- data.tar.gz: ddbc8b9049afd4d24a9211ba731e3ddeb94f87fbd6fff4763a8f15a598da9694ff73faaae1d52dbb94734cb03888b82a657647a0ab3447c37f991ee42a8fb227
6
+ metadata.gz: e3a6f9cd575992658a36c0130db7e22cfaf64da4f6e9bcb4576ddefd62c3d0d9a23768fbdc9e23970f422d1737edc4941890b1e7938f388bba5d1afb2fbd0493
7
+ data.tar.gz: abbe628fc4d889553e60080844da16107e15f777bfffe5eb6fa389ea4b17911096e06430c3579186d27657eea442e40e4d2754eb797e229e4526b77540ffab0b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.3 - Mar 8 2019
4
+ - Fix logout problem
5
+ - Fix help to display the correct `new-project` command
6
+
3
7
  ## 0.5.2 - Mar 8 2019
4
8
  - Fix bug with migrating accounts
5
9
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- faastruby (0.5.1)
4
+ faastruby (0.5.2)
5
5
  colorize (~> 0.8)
6
6
  faastruby-rpc (~> 0.2)
7
7
  listen (~> 3.1)
@@ -32,7 +32,7 @@ Functions:
32
32
  update-context # Update the context data for a function
33
33
 
34
34
  Projects:
35
- new # Initialize a project in your local machine
35
+ new-project # Initialize a project in your local machine
36
36
  deploy # Deploy all functions and static files of a project
37
37
 
38
38
  Workspaces:
@@ -54,7 +54,7 @@ module FaaStRuby
54
54
 
55
55
  def clear
56
56
  yaml = {
57
- 'credentials' => {}
57
+ 'credentials' => nil
58
58
  }.to_yaml
59
59
  File.write(@file, yaml)
60
60
  end
@@ -1,3 +1,3 @@
1
1
  module FaaStRuby
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
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.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paulo Arruda