graphql-persisted_documents 0.2.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88182d39575df6439d1f3a31327b67747c2de106
4
- data.tar.gz: 1a3f507675a50d2b07681c34dc50fc4936ada5ee
3
+ metadata.gz: 09d1a954939b27e680b2ac0c7bee372165e4f01b
4
+ data.tar.gz: 7120c5bc604d2a44c9e5657703ea6e9348a22725
5
5
  SHA512:
6
- metadata.gz: 5ede97c6586c9294ff780ea232f495dbd3f719e4958b6fae74c81d18947ee28da2a2fab9f8b06c4563e5da3054228aa5bbd626575745ed43304e52d701d00512
7
- data.tar.gz: 8db10fd68a72ff0192cae40aa39dedcbe22b228f64c8ab6bb30347c497b28749a937a9f40e802b01345d08d8deb010e9100172fab7710eebcd8a88d3a052e7fb
6
+ metadata.gz: 8aeb59a2a8361872cf8d282a56d034d667ea0a9a5df8410ffe67e35eee6abe67234d4e2f3d354ba5dbc87abc4a6d16d8348f78fa4a425a3b470286a12ecea539
7
+ data.tar.gz: d8edc64de9ce8dd6604956c5731f1c112eba8a3d299ffe7305cd11f2b0aa162d3742bee92cc155b62e8996f844c5f0ba7a9880c440549e958bc0bc6006100976
@@ -1,5 +1,5 @@
1
1
  module Graphql
2
2
  module PersistedDocuments
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
data/spec/dummy/Rakefile CHANGED
@@ -1,6 +1,23 @@
1
- # Add your own tasks in files placed in lib/tasks ending in .rake,
2
- # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
3
7
 
4
- require_relative 'config/application'
8
+ APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
9
+ load 'rails/tasks/engine.rake'
10
+
11
+ Bundler::GemHelper.install_tasks
12
+
13
+ Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
14
+
15
+ require 'rspec/core'
16
+ require 'rspec/core/rake_task'
17
+
18
+ desc "Run all specs in spec directory (excluding plugin specs)"
19
+ RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
20
+
21
+ task :default => :spec
22
+ end
5
23
 
6
- Rails.application.load_tasks
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql-persisted_documents
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - xuorig