--- !ruby/object:Gem::Specification name: souls version: !ruby/object:Gem::Version version: 0.22.8 platform: ruby authors: - POPPIN-FUMI - KishiTheMechanic - James Neve autorequire: bindir: exe cert_chain: [] date: 2021-07-14 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: paint requirement: !ruby/object:Gem::Requirement requirements: - - '=' - !ruby/object:Gem::Version version: 2.2.1 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - '=' - !ruby/object:Gem::Version version: 2.2.1 - !ruby/object:Gem::Dependency name: whirly requirement: !ruby/object:Gem::Requirement requirements: - - '=' - !ruby/object:Gem::Version version: 0.3.0 type: :runtime prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - '=' - !ruby/object:Gem::Version version: 0.3.0 description: SOULs is a Serverless Application Framework. SOULs has four strains, API, Worker, Console, Media, and can be used in combination according to the purpose. SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud and Amazon Web Services email: - f.kawasaki@elsoul.nl - s.kishi@elsoul.nl - jamesoneve@gmail.com executables: - souls extensions: [] extra_rdoc_files: [] files: - ".gitignore" - ".irbrc" - ".rspec" - ".rubocop.yml" - ".ruby-version" - ".travis.yml" - CODE_OF_CONDUCT.md - Gemfile - Gemfile.lock - LICENSE.txt - README.md - Rakefile - Steepfile - bin/console - bin/setup - config/souls.rb - db/schema.rb - exe/souls - hoy/.env.sample - hoy/.gitignore - hoy/.irbrc - hoy/.rspec - hoy/.rubocop.yml - hoy/.ruby-version - hoy/CODE_OF_CONDUCT.md - hoy/Dockerfile - hoy/Dockerfile.dev - hoy/Gemfile - hoy/Gemfile.lock - hoy/LICENSE.txt - hoy/Procfile - hoy/Procfile.dev - hoy/README.md - hoy/Rakefile - hoy/app.rb - hoy/app/graphql/mutations/.keep - hoy/app/graphql/mutations/base/article/create_article.rb - hoy/app/graphql/mutations/base/article/delete_article.rb - hoy/app/graphql/mutations/base/article/destroy_delete_article.rb - hoy/app/graphql/mutations/base/article/update_article.rb - hoy/app/graphql/mutations/base/article_category/create_article_category.rb - hoy/app/graphql/mutations/base/article_category/delete_article_category.rb - hoy/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb - hoy/app/graphql/mutations/base/article_category/update_article_category.rb - hoy/app/graphql/mutations/base/user/create_user.rb - hoy/app/graphql/mutations/base/user/delete_user.rb - hoy/app/graphql/mutations/base/user/destroy_delete_user.rb - hoy/app/graphql/mutations/base/user/update_user.rb - hoy/app/graphql/mutations/base_mutation.rb - hoy/app/graphql/mutations/user_manager/add_user_role.rb - hoy/app/graphql/mutations/user_manager/remove_user_role.rb - hoy/app/graphql/mutations/user_manager/sign_in_user.rb - hoy/app/graphql/queries/article.rb - hoy/app/graphql/queries/article_categories.rb - hoy/app/graphql/queries/article_category.rb - hoy/app/graphql/queries/articles.rb - hoy/app/graphql/queries/base_query.rb - hoy/app/graphql/queries/me.rb - hoy/app/graphql/queries/user.rb - hoy/app/graphql/queries/users.rb - hoy/app/graphql/resolvers/article_category_search.rb - hoy/app/graphql/resolvers/article_search.rb - hoy/app/graphql/resolvers/base.rb - hoy/app/graphql/resolvers/user_search.rb - hoy/app/graphql/souls_api_schema.rb - hoy/app/graphql/types/.keep - hoy/app/graphql/types/article_category_type.rb - hoy/app/graphql/types/article_type.rb - hoy/app/graphql/types/base/base_argument.rb - hoy/app/graphql/types/base/base_enum.rb - hoy/app/graphql/types/base/base_field.rb - hoy/app/graphql/types/base/base_input_object.rb - hoy/app/graphql/types/base/base_interface.rb - hoy/app/graphql/types/base/base_object.rb - hoy/app/graphql/types/base/base_scalar.rb - hoy/app/graphql/types/base/base_union.rb - hoy/app/graphql/types/base/mutation_type.rb - hoy/app/graphql/types/base/query_type.rb - hoy/app/graphql/types/connections/article_category_connection.rb - hoy/app/graphql/types/connections/article_connection.rb - hoy/app/graphql/types/connections/base_connection.rb - hoy/app/graphql/types/connections/user_connection.rb - hoy/app/graphql/types/edges/article_category_edge.rb - hoy/app/graphql/types/edges/article_edge.rb - hoy/app/graphql/types/edges/base_edge.rb - hoy/app/graphql/types/edges/user_edge.rb - hoy/app/graphql/types/user_type.rb - hoy/app/models/article.rb - hoy/app/models/article_category.rb - hoy/app/models/user.rb - hoy/app/policies/application_policy.rb - hoy/app/policies/article_category_policy.rb - hoy/app/policies/article_policy.rb - hoy/app/policies/user_policy.rb - hoy/app/utils/association_loader.rb - hoy/app/utils/firebase_id_token.rb - hoy/app/utils/json_web_token.rb - hoy/app/utils/record_loader.rb - hoy/app/utils/souls_helper.rb - hoy/cloudbuild.yml - hoy/config.ru - hoy/config/database.yml - hoy/config/souls.rb - hoy/constants/areas.rb - hoy/constants/column_name_ja.rb - hoy/db/migrate/20200006095538_create_users.rb - hoy/db/migrate/20200712180236_create_article_categories.rb - hoy/db/migrate/20200714215521_create_articles.rb - hoy/db/schema.rb - hoy/db/seeds.rb - hoy/github/workflows/delivery.yml - hoy/log/.keep - hoy/spec/factories/article_categories.rb - hoy/spec/factories/articles.rb - hoy/spec/factories/users.rb - hoy/spec/models/article_category_spec.rb - hoy/spec/models/article_spec.rb - hoy/spec/models/user_spec.rb - hoy/spec/mutations/base/article_category_spec.rb - hoy/spec/mutations/base/article_spec.rb - hoy/spec/mutations/base/user_spec.rb - hoy/spec/policies/article_category_policy_spec.rb - hoy/spec/policies/article_policy_spec.rb - hoy/spec/policies/user_policy_spec.rb - hoy/spec/queries/article_category_spec.rb - hoy/spec/queries/article_spec.rb - hoy/spec/queries/user_spec.rb - hoy/spec/resolvers/article_category_search_spec.rb - hoy/spec/resolvers/article_search_spec.rb - hoy/spec/resolvers/user_search_spec.rb - hoy/spec/spec_helper.rb - hoy/tmp/.keep - lib/souls.rb - lib/souls/gcloud.rb - lib/souls/gcloud/compute.rb - lib/souls/gcloud/iam.rb - lib/souls/generate.rb - lib/souls/generate/application.rb - lib/souls/generate/connection.rb - lib/souls/generate/edge.rb - lib/souls/generate/model.rb - lib/souls/generate/mutation.rb - lib/souls/generate/policy.rb - lib/souls/generate/query.rb - lib/souls/generate/resolver.rb - lib/souls/generate/rspec_factory.rb - lib/souls/generate/rspec_model.rb - lib/souls/generate/rspec_mutation.rb - lib/souls/generate/rspec_policy.rb - lib/souls/generate/rspec_query.rb - lib/souls/generate/rspec_resolver.rb - lib/souls/generate/type.rb - lib/souls/init.rb - lib/souls/version.rb - rbs/init.rbs - souls.gemspec homepage: https://souls-doc.el-soul.com licenses: - Apache-2.0 metadata: homepage_uri: https://souls-doc.el-soul.com source_code_uri: https://github.com/elsoul/souls changelog_uri: https://github.com/elsoul/souls post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: 3.0.0 required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubygems_version: 3.2.15 signing_key: specification_version: 4 summary: SOULs is a Serverless Application Framework. SOULs has four strains, API, Worker, Console, Media, and can be used in combination according to the purpose. SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud and Amazon Web Services test_files: []