Skip to content

Commit

Permalink
docs; Build
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Singh Tomer <[email protected]>
  • Loading branch information
creatorrr committed Mar 25, 2021
1 parent d743e5c commit 192a934
Show file tree
Hide file tree
Showing 526 changed files with 1,795,247 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated files
/docs/
/lib/
# Gems
vendor/bundle/
.bundle/
.sass-cache/

# Vim shit
*.swp
Expand Down
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# frozen_string_literal: true

source 'https://rubygems.org'
gem 'graphql-docs'
59 changes: 59 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
GEM
remote: https://rubygems.org/
specs:
activesupport (6.1.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
commonmarker (0.21.2)
ruby-enum (~> 0.5)
concurrent-ruby (1.1.8)
escape_utils (1.2.1)
extended-markdown-filter (0.7.0)
html-pipeline (~> 2.9)
ffi (1.15.0)
gemoji (3.0.1)
graphql (1.12.6)
graphql-docs (2.0.1)
commonmarker (~> 0.16)
escape_utils (~> 1.2)
extended-markdown-filter (~> 0.4)
gemoji (~> 3.0)
graphql (~> 1.10)
html-pipeline (~> 2.9)
sass (~> 3.4)
html-pipeline (2.14.0)
activesupport (>= 2)
nokogiri (>= 1.4)
i18n (1.8.9)
concurrent-ruby (~> 1.0)
mini_portile2 (2.5.0)
minitest (5.14.4)
nokogiri (1.11.2)
mini_portile2 (~> 2.5.0)
racc (~> 1.4)
racc (1.5.2)
rb-fsevent (0.10.4)
rb-inotify (0.10.1)
ffi (~> 1.0)
ruby-enum (0.9.0)
i18n
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
zeitwerk (2.4.2)

PLATFORMS
ruby

DEPENDENCIES
graphql-docs

BUNDLED WITH
1.16.1
12 changes: 12 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
desc 'Generate the documentation'

task :generate_docs do
require 'graphql-docs'

options = {}
options[:delete_output] = true
options[:output_dir] = "./docs"
options[:filename] = File.join(File.dirname(__FILE__), 'schema.graphql')

GraphQLDocs.build(options)
end
Binary file added docs/assets/images/graphiql-headers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/graphiql-variables.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/graphiql.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/navbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 192a934

Please sign in to comment.