taps2 0.5.4 → 0.5.5

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
  SHA1:
3
- metadata.gz: dce1227f756b552e4cde86a7f19416ec8690c61b
4
- data.tar.gz: 9765d247e72acd77174bb190aa6b4e740e2908e1
3
+ metadata.gz: 33670f0428acea1fd1b319fa7709121d06e1ca44
4
+ data.tar.gz: 62f305882ef883472629bf9f72ed41f8efcf11ab
5
5
  SHA512:
6
- metadata.gz: a79deee12261997841c4321381f07301b4a7032e350f3fee55469683f676726a2e82fbdcb21a8a6c678fe8d6e537aaaf77aec1018a080bd1ac8851b34ae4ec88
7
- data.tar.gz: 0c0be8926a1172f27fa461b679adb02e5ce7c16e5e38be98496f54a70ad0376659c61683098e1f791d1dd3796a5b8c0f4a30d2e474e4ae946622f3ff7764676a
6
+ metadata.gz: a6f3f8eeea90f1da98a93213866b1549464cb3058accade4528cb6130854b1634e25a2a4501d64ac3633c1eb9a8f857791db57c6bf7b59a404c03fe28f66248e
7
+ data.tar.gz: 36ae8502a3165c24d1bd85cc3e80eebe89a14f77cf6d75deba118e565727c79da28296ae23eb489c87b9765d8dd3f3879351880b88ccefe70c1548e228eb5b4a
data/README.rdoc CHANGED
@@ -29,6 +29,8 @@ By default, Taps will create a SQLite3 database.
29
29
 
30
30
  The `TAPS_LOGIN` and `TAPS_PASSWORD` variables are used for default Basic Authentication.
31
31
 
32
+ The `TAPS_YAML_ENGINE` variable lets you specify a YAML engine such as "psych".
33
+
32
34
  The `NO_DEFAULT_DATABASE_URL` variable allows you to require a database URI be sent in the `body` of the request that initiates a Taps session. (Default behavior will use the database URI specified when starting the server.)
33
35
 
34
36
  The `NO_DUMP_MARSHAL_ERRORS` variable allows you to disable dumping of marshalled data that caused an error.
@@ -74,7 +76,8 @@ or when you want to transfer tables that start with a word
74
76
  * Indexes may drop the "order" (https://github.com/ricardochimal/taps/issues/111)
75
77
  * String fields with only numbers may get parsed as a number and lose leading zeros or add decimals (https://github.com/ricardochimal/taps/issues/106)
76
78
  * Tables without primary keys will be incredibly slow to transfer. This is due to it being inefficient having large offset values in queries.
77
- * Multiple schemas are currently not supported
79
+ * Multiple schemas are currently not supported (https://github.com/ricardochimal/taps/issues/97)
80
+ * Taps does not drop tables when overwriting database (https://github.com/ricardochimal/taps/issues/94)
78
81
 
79
82
  == Feature Requests
80
83
 
data/VERSION.yml CHANGED
@@ -2,4 +2,4 @@
2
2
  :build:
3
3
  :major: 0
4
4
  :minor: 5
5
- :patch: 4
5
+ :patch: 5
data/lib/taps/config.rb CHANGED
@@ -5,6 +5,8 @@ Sequel.datetime_class = DateTime
5
5
  Sequel.extension :core_extensions
6
6
  Sequel.extension :schema_dumper
7
7
 
8
+ YAML::ENGINE.yamler = ENV['TAPS_YAML_ENGINE'] if ENV['TAPS_YAML_ENGINE']
9
+
8
10
  module Taps
9
11
  def self.exiting=(val)
10
12
  @@exiting = val
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taps2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ricardo Chimal, Jr.