graphql_types 0.1.0 → 0.2.0

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: 7222e73c4b18881bcc13a8d23c3a9c04f8b33982
4
- data.tar.gz: a71c0ab70dda2b8789428dbf95ea4416b9851d44
3
+ metadata.gz: 04c17ac5b73df7f4af082cdfdaf6c57df1145841
4
+ data.tar.gz: 6f4df27cc9538c04dd34d232c0467dd36cf9fbcf
5
5
  SHA512:
6
- metadata.gz: c800d0d9a2dbcdc4c3959a862a33d56732410f98d302ff5565063086df55516a1bd11f5303375a949002d27b4e53e5017da8281447bcfcdb4d71e04e8d3fef91
7
- data.tar.gz: 1a866b259b60c3c1af755674ccd0dd03171a4ef6b97d6e1d150007e486c48a2cacc69b75245e07272d117abaa29ecade1e23bc91294cf35fded935340d385fe4
6
+ metadata.gz: 2062163299792594a1079e3039a138e98d06efc10b856a111a022e7818c6c3a883d81f0367788976b3a55e9ddf38c2f3e19c09deedd549ca70a507e16bf17930
7
+ data.tar.gz: dc5683b9df6b5b200479c266b90c92861214dd2f6d4bf0f2129936ed8cb7ae456f222dae14cd55de2f9b4436d25b1657f3150b3c8e5c0da153a65fbe30cc533e
@@ -1,5 +1,6 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
  rvm:
4
- - 2.4.1
5
- before_install: gem install bundler -v 1.15.4
4
+ - 2.3
5
+ - 2.4
6
+ before_install: gem install bundler
@@ -1,5 +1,9 @@
1
1
  # The Revision History of grapql_types
2
2
 
3
+ ## v0.2.0 - 2017/09/21
4
+
5
+ * Fix gemspec.homepage url
6
+
3
7
  ## v0.1.0 - 2017/09/21
4
8
 
5
9
  * Initial release!
data/Gemfile CHANGED
@@ -4,11 +4,10 @@ source "https://rubygems.org"
4
4
 
5
5
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
6
 
7
- # Specify your gem's dependencies in graphql_json_type.gemspec
8
7
  gemspec
9
8
 
10
- gem 'bundler'
11
- gem 'minitest'
9
+ gem 'bundler', '>= 1.15'
10
+ gem 'minitest', '>= 5.0'
12
11
  gem 'minitest-power_assert'
13
- gem 'rake'
14
- gem 'rubocop'
12
+ gem 'rake', '>= 12.0'
13
+ gem 'rubocop', '>= 0.50'
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # GraphqlTypes
2
2
 
3
+ [![Build Status](https://travis-ci.org/bitjourney/graphql_types-ruby.svg?branch=master)](https://travis-ci.org/bitjourney/graphql_types-ruby) [![Gem Version](https://badge.fury.io/rb/graphql_types.svg)](https://badge.fury.io/rb/graphql_types)
4
+
5
+
3
6
  This gem provides scalar types that GraphQL core does not have:
4
7
 
5
8
  * `GraphqlTypes::JsonType` as `JSON`
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
 
14
14
  spec.summary = 'Extra types for graphql-ruby'
15
15
  spec.description = 'Extra types for graphql-ruby: JSON, Date, and BigInt'
16
- spec.homepage = "https://github.com/bitjourney/graphql_json_type"
16
+ spec.homepage = "https://github.com/bitjourney/graphql_types-ruby"
17
17
  spec.license = "MIT"
18
18
  spec.required_ruby_version = '>= 2.3'
19
19
 
@@ -7,7 +7,6 @@ require "json"
7
7
  require "time"
8
8
 
9
9
  module GraphqlTypes
10
-
11
10
  # @type [GraphQL::ScalarType]
12
11
  JsonType = GraphQL::ScalarType.define do
13
12
  name "JSON"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GraphqlTypes
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: graphql_types
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - FUJI Goro (gfx)
@@ -44,7 +44,7 @@ files:
44
44
  - graphql_types.gemspec
45
45
  - lib/graphql_types.rb
46
46
  - lib/graphql_types/version.rb
47
- homepage: https://github.com/bitjourney/graphql_json_type
47
+ homepage: https://github.com/bitjourney/graphql_types-ruby
48
48
  licenses:
49
49
  - MIT
50
50
  metadata: