localtower 0.1.6 → 0.1.7
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.md +4 -4
- data/app/controllers/localtower/application_controller.rb +5 -0
- data/app/views/layouts/localtower/application.html.erb +1 -1
- data/lib/localtower/version.rb +1 -1
- data/public/js/app.js +6 -0
- data/public/{1_schema.png → screenshots/v0.1.1/1_schema.png} +0 -0
- data/public/{2_models_1.png → screenshots/v0.1.1/2_models_1.png} +0 -0
- data/public/{2_models_2.png → screenshots/v0.1.1/2_models_2.png} +0 -0
- data/public/{3_relations.png → screenshots/v0.1.1/3_relations.png} +0 -0
- data/public/{4_migrations.png → screenshots/v0.1.1/4_migrations.png} +0 -0
- data/public/screenshots/v0.1.6/1_schema.png +0 -0
- data/public/screenshots/v0.1.6/2_models_1.png +0 -0
- data/public/screenshots/v0.1.6/3_relations.png +0 -0
- data/public/screenshots/v0.1.6/4_migrations.png +0 -0
- data/spec/dummy/Gemfile.lock +1 -1
- data/spec/dummy/log/development.log +687 -0
- data/spec/dummy/log/localtower.log +575 -0
- data/spec/dummy/log/test.log +513 -0
- metadata +11 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5f998e6e6a73708425db8efea41a2dd1693a8b11
|
|
4
|
+
data.tar.gz: f07cdd274b9ba4d12e1de6e9818d1c9c369cf15e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cb6d243f49d3d8176d4e944f990c09638b1a24304d3c483e476c069bc2185d431bdef9dd79309ea5a99fc056e7ef3ab4fd9225bad9fecf313fb6e0d2e163759
|
|
7
|
+
data.tar.gz: 236bdf5ba3972e6f6ecb2b7501e56dce7499d997d2573cfcc9311e3c5ef3ddf3600055a6342313ea6d103949f6bdff4b339c2c2a9984b730d7213c5636141daf
|
data/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
# Localtower
|
|
2
2
|
|
|
3
3
|
### See the schema
|
|
4
|
-

|
|
4
|
+

|
|
5
5
|
|
|
6
6
|
### Create a model
|
|
7
|
-

|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
### Create a many to many relation
|
|
10
|
-

|
|
10
|
+

|
|
11
11
|
|
|
12
12
|
### Create a migration
|
|
13
|
-

|
|
13
|
+

|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
## INSTALL
|
data/lib/localtower/version.rb
CHANGED
data/public/js/app.js
CHANGED
|
@@ -19,7 +19,13 @@ MainApp = {
|
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
MainApp.whenActionOnElement("click", "submit", function(e) {
|
|
22
|
+
var current = $(e.currentTarget);
|
|
22
23
|
$(".full-message").show();
|
|
24
|
+
|
|
25
|
+
if (current.val() === "false") {
|
|
26
|
+
$(".full-message-migrate").show();
|
|
27
|
+
}
|
|
28
|
+
|
|
23
29
|
});
|
|
24
30
|
|
|
25
31
|
MainApp.whenActionOnElement("change", "action", function(e) {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|