graphqlite 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -3
- data/lib/graphqlite/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1994f076495430c8f249e5a7e648036ff17f11388467ff938818d2dfd4e1b3b
|
|
4
|
+
data.tar.gz: '099ac1114834e6521e784d56b45c130b4a1d50fb2277fa0b66ed390064385727'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af8bd6bd9f0d61f8de64fe392e4c480d9d95c839e114c6b0d0ad0088bb5d34d0abb79112ad0118306e1d96ad924acf9f098aae234e3dd936917f9ff2e6e7137b
|
|
7
|
+
data.tar.gz: 1d2c49071f1d49a20f9d9cf48e1385a6a7b4fca52bd312d9961da98c2241586fd762b14f802711a218c3b0b2dd74617fc8e18f91ffd2b0e14cf3fcb836f8006c
|
data/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
# GraphQLite
|
|
2
2
|
|
|
3
|
+
> **Note: This project is currently a work in progress and is not yet ready for production use.**
|
|
4
|
+
|
|
3
5
|
## Description
|
|
4
6
|
|
|
5
|
-
A lightweight
|
|
7
|
+
A lightweight GraphQL implementation for Ruby with zero dependencies. GraphQLite is designed to be simple, minimal, and clean while maintaining full GraphQL spec compliance. It aims to be easier to use and more straightforward than existing solutions.
|
|
6
8
|
|
|
7
|
-
## Features
|
|
9
|
+
## Features (Planned/In Development)
|
|
8
10
|
|
|
9
11
|
- Zero runtime dependencies - pure Ruby implementation
|
|
10
12
|
- Simple, intuitive DSL for schema definition
|
|
11
13
|
- Full GraphQL spec compliance (October 2021)
|
|
12
|
-
-
|
|
14
|
+
- Comprehensive error handling
|
|
13
15
|
- Complete introspection support
|
|
14
16
|
- Fast execution with efficient parser
|
|
15
17
|
- Clean, maintainable codebase
|
data/lib/graphqlite/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphqlite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- zyxzen
|
|
@@ -38,8 +38,8 @@ dependencies:
|
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '13.0'
|
|
40
40
|
description: GraphQLite is a simple, minimal, and clean GraphQL implementation with
|
|
41
|
-
zero dependencies.
|
|
42
|
-
|
|
41
|
+
zero dependencies. This project is currently in active development and not yet ready
|
|
42
|
+
for production use.
|
|
43
43
|
email:
|
|
44
44
|
- dev@zyxzen.com
|
|
45
45
|
executables: []
|
|
@@ -81,5 +81,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
requirements: []
|
|
82
82
|
rubygems_version: 3.6.9
|
|
83
83
|
specification_version: 4
|
|
84
|
-
summary: A lightweight
|
|
84
|
+
summary: A lightweight GraphQL implementation for Ruby (Work in Progress)
|
|
85
85
|
test_files: []
|