stardust_rails 0.1.4 → 0.1.5
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/lib/stardust/errors.rb +6 -0
- data/lib/stardust/version.rb +1 -1
- data/lib/stardust.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41d197de80311465083b2a077928c9596d3cd09d9e40eda5d3a99e192221fb6b
|
4
|
+
data.tar.gz: 1ad4039b7680fc84551378f3396e39874973ea2a61c58c7ea96d52edd044d0c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 353aee78618953ab9639f19d3c0f70974be15194f713f737ba090e47ac4776e4996f0a2f0113c0bd0b53d1fc3a26fa9604bc7e845ecbe3a6237d9c3e88a3018f
|
7
|
+
data.tar.gz: 95042a4410280ec215547f44701d2d9ad6aebebb8fe77a212252e179c3f577dffbab94474ed56d589a691c76b524b037db03e3bc77dbea8b318795f0c1afa0b1
|
data/lib/stardust/version.rb
CHANGED
data/lib/stardust.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
require "stardust/instance"
|
2
2
|
require "stardust/configuration"
|
3
3
|
|
4
|
-
# this allows us to
|
5
4
|
ActiveSupport::Inflector.inflections(:en) do |inflect|
|
6
5
|
inflect.acronym "GraphQL"
|
7
6
|
inflect.acronym "DSL"
|
@@ -20,6 +19,7 @@ module Stardust
|
|
20
19
|
|
21
20
|
end
|
22
21
|
|
22
|
+
require "stardust/errors"
|
23
23
|
require "stardust/graphql"
|
24
24
|
require "stardust/generators"
|
25
25
|
require "stardust/engine"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stardust_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bradley Wittenbrook
|
@@ -116,6 +116,7 @@ files:
|
|
116
116
|
- lib/stardust.rb
|
117
117
|
- lib/stardust/configuration.rb
|
118
118
|
- lib/stardust/engine.rb
|
119
|
+
- lib/stardust/errors.rb
|
119
120
|
- lib/stardust/errors/failed_authorization.rb
|
120
121
|
- lib/stardust/generators.rb
|
121
122
|
- lib/stardust/generators/example.rb
|