pg_graph 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9bbbf1239ad74e0ccf7709ce4bd1ccf77d6e319c390836aa749000a0ce3360ef
4
- data.tar.gz: 4c433919870bb792e153105cf23ea4f9c969cb8c1251da5671793c5941ebc084
3
+ metadata.gz: b24d838b20ef999a63391e330fa9a35b8888a46a20128ea8f41ffaf5c64e4c2f
4
+ data.tar.gz: ee8a549def41b47989472d7cdb757ceef10a98b758d7e2f89aa65b603ae6baea
5
5
  SHA512:
6
- metadata.gz: 26f90ddc3c0302bb0584013ab7abeb2236d3d663541a63adc51f9b7d05baa063477efdac183c52ae998fbe14b91da9ebda0f659b8112c35e2fba125254ebbf0b
7
- data.tar.gz: a1bd282fd15b758251bab23adf20585b05f2ec58e1ffa39dc91350430bf06f5e8b1c7dda061015376bc42441a9137c52d0d9b30e171b3c2d0a17235c8d1efb9e
6
+ metadata.gz: 457085837cc06237a3eeabca20e568ebc239e05c4a20467cb1ed08288c6df889fce9cb55c4d27a4c5ad0bc5947cf8a74e869c892b7ff6d43def318e3da92d406
7
+ data.tar.gz: 9c4ee15fb96f547ac544d2f7608eca0af7eb05a82743440d6c9bb3b335ef362485cbe80716427774a00db8ce9354457b35705278dc8b157b15ba866785e591bf
@@ -84,7 +84,7 @@ module PgGraph
84
84
  # Types are both native postgres type and types from the information_schema
85
85
  def postgres_type2ruby_class(name)
86
86
  case name
87
- when "character varying", "varchar", "text", "uuid"; String
87
+ when "character varying", "varchar", "text", "uuid", "xml"; String
88
88
  when "smallint", "integer", "int4", "int2"; Integer
89
89
  when "double precision", "real", "float8"; Float
90
90
  when "numeric", "decimal"; BigDecimal
@@ -1,3 +1,3 @@
1
1
  module PgGraph
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claus Rasmussen