taps2 0.5.4 → 0.5.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/README.rdoc +4 -1
- data/VERSION.yml +1 -1
- data/lib/taps/config.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33670f0428acea1fd1b319fa7709121d06e1ca44
|
|
4
|
+
data.tar.gz: 62f305882ef883472629bf9f72ed41f8efcf11ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/lib/taps/config.rb
CHANGED