souls 1.10.3 → 1.10.4

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: 14e521ddee7dd8bfe1c3f2a52d9e81131f687d617bba1ae774a2d04dd8dd7043
4
- data.tar.gz: aa0bcf7a53ca8eb1e8ed50b64c64ad9b1643f735c800b81ea3b090591ce16365
3
+ metadata.gz: fa6220fd948d6e29a5a3bce93ee00a152dde8067a73f7e9159495fbb16fd5bcd
4
+ data.tar.gz: 122f1c303883c441d911de3fa0cbe067cf7b703d1afa1e54dcdd90f9708531f5
5
5
  SHA512:
6
- metadata.gz: '0249a764c37f6e4eb0acab137078b8ad1f22e9e8072b3d15b18522d0b86378a13d8ed71bbc26d652ff645695af6f20087f71db52b4fd9469b429df99bc4e1999'
7
- data.tar.gz: 2a8c0509d45cd2063392a67f5775d9c80db71a792f03854005cede0b2e681331d43dcb7d85bd2a3b8a00987385dcbd083ac8281bf19ed5b71fb8ed54a7d7f3c9
6
+ metadata.gz: 5b12467ee5c2c662e0ea007d73d4518b940f70721ff4da637bb4dcef19ca182f2d71b0e6da38f578567c50e549c5b433fff1967d788d222653a07ae3b0a28a72
7
+ data.tar.gz: 88e8cd539c7e1192354e4d272d6822bdc65bd2a3da558c4984d254c08f8fc2c600f001911855d7586abe66c6246a99e94006047f166d7dd0095edd2854e36868
data/CODE_OF_CONDUCT.md CHANGED
@@ -61,7 +61,7 @@ representative at an online or offline event.
61
61
 
62
62
  Instances of abusive, harassing, or otherwise unacceptable behavior may be
63
63
  reported to the community leaders responsible for enforcement at
64
- [INSERT CONTACT METHOD].
64
+ conduct@elsoul.nl.
65
65
  All complaints will be reviewed and investigated promptly and fairly.
66
66
 
67
67
  All community leaders are obligated to respect the privacy and security of the
data/README.md CHANGED
@@ -115,13 +115,6 @@ Or install it yourself as:
115
115
  And Create Your APP
116
116
 
117
117
  $ souls new app_name
118
- $ cd apps/api/app_name
119
- $ souls s
120
-
121
- Check your GraphQL PlayGround
122
-
123
- [localhost:4000/playground](localhost:4000/playground)
124
-
125
118
 
126
119
 
127
120
  ## Development
@@ -7,8 +7,6 @@ module Souls
7
7
  FileUtils.rm_f(file_path)
8
8
  puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }])
9
9
  file_path
10
- rescue StandardError => e
11
- raise(StandardError, e)
12
10
  end
13
11
  end
14
12
  end
@@ -95,12 +95,12 @@ module Souls
95
95
  project_id = Souls.configuration.project_id
96
96
  system(
97
97
  "
98
- gcloud services vpc-peerings connect \
99
- --service=servicenetworking.googleapis.com \
100
- --ranges=#{app_name}-ip-range \
101
- --network=#{app_name} \
102
- --project=#{project_id}
103
- "
98
+ gcloud services vpc-peerings connect \
99
+ --service=servicenetworking.googleapis.com \
100
+ --ranges=#{app_name}-ip-range \
101
+ --network=#{app_name} \
102
+ --project=#{project_id}
103
+ "
104
104
  )
105
105
  end
106
106
 
@@ -3,6 +3,7 @@ module Souls
3
3
  desc "manager [MANAGER_NAME]", "Generate GraphQL Mutation Template"
4
4
  method_option :mutation, aliases: "--mutation", required: true, desc: "Mutation File Name"
5
5
  def manager(class_name)
6
+ singularized_class_name = class_name.underscore.singularize
6
7
  create_manager(class_name, options[:mutation])
7
8
  Souls::Generate.new.invoke(:manager_rbs, [singularized_class_name], { mutation: options[:mutation] })
8
9
  Souls::Generate.new.invoke(:rspec_manager, [singularized_class_name], { mutation: options[:mutation] })
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.10.3".freeze
2
+ VERSION = "1.10.4".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.10.3
1
+ 1.10.4
@@ -1 +1 @@
1
- 1.10.3
1
+ 1.10.4
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: souls
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.3
4
+ version: 1.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-12-07 00:00:00.000000000 Z
13
+ date: 2021-12-08 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport