vertica_history 0.0.1 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/application.js +18 -0
- data/app/assets/javascripts/vertica_history/application.js +1 -1
- data/app/assets/stylesheets/application.css.scss +69 -0
- data/app/assets/stylesheets/vertica_history/application.css.scss +68 -0
- data/app/views/vertica_history/vertica_history/index.html.erb +1 -1
- data/app/views/vertica_history/vertica_history/view_history.html.erb +16 -7
- data/config/routes.rb +2 -2
- data/lib/rails_admin/config/actions/vertica_history.rb +25 -25
- data/lib/vertica_history/engine.rb +1 -0
- data/lib/vertica_history/version.rb +1 -1
- data/lib/vertica_history.rb +4 -1
- data/test/dummy/config/initializers/assets.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +16 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4 -0
- data/test/dummy/log/test.log +16 -0
- metadata +197 -3
- data/app/assets/stylesheets/vertica_history/application.css +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 158ae810e8ce7360ad772ab002e675d317cfaa6a
|
4
|
+
data.tar.gz: 999e5f2c99e552c007b55a3e75172ea68cdd3254
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03a9191bc3aa10407e99a6667c75ee77982a64650ecbd570ba70aae48f181ce92ff372b72abe0fff64177f255f81b85c77d37c9be94edf053aad9c2c3e7e70dd
|
7
|
+
data.tar.gz: 19b9a81f8da6ca22bfe3527edf815c6c07aa41b74abbcc92310ea126081ec325973f7b3b45e27719eda05a9c4fda255a5cf42f5ebbb026796c3056f471bdefd0
|
@@ -0,0 +1,18 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require bootstrap-sprockets
|
15
|
+
//= require jquery_ujs
|
16
|
+
//= require turbolinks
|
17
|
+
//= require vertica_history/application
|
18
|
+
//= require_tree .
|
@@ -0,0 +1,69 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*/
|
11
|
+
|
12
|
+
@import "compass";
|
13
|
+
@import "compass/css3/border-radius";
|
14
|
+
@import "compass/typography/text/ellipsis";
|
15
|
+
@import "compass/css3/opacity";
|
16
|
+
|
17
|
+
|
18
|
+
@import "colors";
|
19
|
+
@import "bootstrap-overrides";
|
20
|
+
|
21
|
+
@import "compass/reset";
|
22
|
+
@import "bootstrap";
|
23
|
+
@import "bootstrap/mixins";
|
24
|
+
@import "bootstrap/popovers";
|
25
|
+
|
26
|
+
@import "scaffolds";
|
27
|
+
@import "compass/utilities/sprites";
|
28
|
+
@import "components";
|
29
|
+
@import "helpers";
|
30
|
+
@import "vertica_history/application";
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
$popover-arrow-color: #e6e6e6;
|
35
|
+
$popover-arrow-outer-color: $button-border-gray;
|
36
|
+
|
37
|
+
.key-placeholders {
|
38
|
+
text-transform: uppercase;
|
39
|
+
|
40
|
+
&.placeholder {
|
41
|
+
text-transform: none;
|
42
|
+
}
|
43
|
+
|
44
|
+
&::-webkit-input-placeholder {
|
45
|
+
text-transform: none;
|
46
|
+
}
|
47
|
+
&:-moz-placeholder {
|
48
|
+
// old firefox versions 4-18
|
49
|
+
text-transform: none;
|
50
|
+
}
|
51
|
+
&::-moz-placeholder {
|
52
|
+
text-transform: none;
|
53
|
+
}
|
54
|
+
&:-ms-input-placeholder {
|
55
|
+
text-transform: none;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
.clear {
|
60
|
+
clear: both;
|
61
|
+
}
|
62
|
+
|
63
|
+
.ellipsis {
|
64
|
+
@include ellipsis;
|
65
|
+
}
|
66
|
+
|
67
|
+
.errors {
|
68
|
+
color: $error-red;
|
69
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*/
|
11
|
+
|
12
|
+
@import "compass";
|
13
|
+
@import "compass/css3/border-radius";
|
14
|
+
@import "compass/typography/text/ellipsis";
|
15
|
+
@import "compass/css3/opacity";
|
16
|
+
|
17
|
+
|
18
|
+
@import "colors";
|
19
|
+
@import "bootstrap-overrides";
|
20
|
+
|
21
|
+
@import "compass/reset";
|
22
|
+
@import "bootstrap";
|
23
|
+
@import "bootstrap/mixins";
|
24
|
+
@import "bootstrap/popovers";
|
25
|
+
|
26
|
+
@import "scaffolds";
|
27
|
+
@import "compass/utilities/sprites";
|
28
|
+
@import "components";
|
29
|
+
@import "helpers";
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
$popover-arrow-color: #e6e6e6;
|
34
|
+
$popover-arrow-outer-color: $button-border-gray;
|
35
|
+
|
36
|
+
.key-placeholders {
|
37
|
+
text-transform: uppercase;
|
38
|
+
|
39
|
+
&.placeholder {
|
40
|
+
text-transform: none;
|
41
|
+
}
|
42
|
+
|
43
|
+
&::-webkit-input-placeholder {
|
44
|
+
text-transform: none;
|
45
|
+
}
|
46
|
+
&:-moz-placeholder {
|
47
|
+
// old firefox versions 4-18
|
48
|
+
text-transform: none;
|
49
|
+
}
|
50
|
+
&::-moz-placeholder {
|
51
|
+
text-transform: none;
|
52
|
+
}
|
53
|
+
&:-ms-input-placeholder {
|
54
|
+
text-transform: none;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
.clear {
|
59
|
+
clear: both;
|
60
|
+
}
|
61
|
+
|
62
|
+
.ellipsis {
|
63
|
+
@include ellipsis;
|
64
|
+
}
|
65
|
+
|
66
|
+
.errors {
|
67
|
+
color: $error-red;
|
68
|
+
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<h1>Select Attributes for Vertica History for <%= @model %> <%= @id %></h1>
|
2
2
|
<div>Select Attributes you want to see in the table for the history of the records in vertica</div>
|
3
3
|
|
4
|
-
<%= form_for(@model.to_s.to_sym, url:{:controller=>'
|
4
|
+
<%= form_for(@model.to_s.to_sym, url:{:controller=>'/vertica_history/vertica_history', :action=>'view_history'}, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
|
5
5
|
|
6
6
|
<% @columns.each do |key| %>
|
7
7
|
<div id=<%= key %>>
|
@@ -1,10 +1,19 @@
|
|
1
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
1
2
|
<script>
|
2
3
|
$(document).ready(function() {
|
3
|
-
$('#
|
4
|
+
$('#backToRecord').click(function() {
|
4
5
|
window.location.href = '/rails_admin/' + '<%= @model %>' + '/' + '<%= @id %>';
|
5
6
|
})
|
6
7
|
})
|
7
8
|
</script>
|
9
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
10
|
+
<script>
|
11
|
+
$(document).ready(function() {
|
12
|
+
$('#backToModel').click(function() {
|
13
|
+
window.location.href = '/rails_admin/' + '<%= @model %>';
|
14
|
+
})
|
15
|
+
})
|
16
|
+
</script>
|
8
17
|
<style>
|
9
18
|
th {
|
10
19
|
width: 10px;
|
@@ -16,10 +25,10 @@
|
|
16
25
|
<h1>Vertica History for <%= @model %> <%= @id %> - Total: <%= @total_records %> records found</h1>
|
17
26
|
|
18
27
|
<FORM style="padding-bottom: 20px">
|
19
|
-
<INPUT Type="button" VALUE="Back to Model View" id='backToModel'></FORM>
|
28
|
+
<INPUT Type="button" VALUE="Back to Model View" id='backToModel'> <INPUT Type="button" VALUE="Back to Record View" id='backToRecord'></FORM>
|
20
29
|
|
21
30
|
<div>Select New Attributes you want to see in the table for the history of the records in vertica</div>
|
22
|
-
<%= form_for(@model.to_s.to_sym, url: { :controller => '
|
31
|
+
<%= form_for(@model.to_s.to_sym, url: { :controller => '/vertica_history/vertica_history', :action => 'view_history' }, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
|
23
32
|
|
24
33
|
<% @all_columns.each do |key| %>
|
25
34
|
<div id=<%= key %>>
|
@@ -37,7 +46,7 @@
|
|
37
46
|
<% end %>
|
38
47
|
<p></p>
|
39
48
|
|
40
|
-
<%= form_for(@model.to_s.to_sym, url: { :controller => '
|
49
|
+
<%= form_for(@model.to_s.to_sym, url: { :controller => '/vertica_history/vertica_history', :action => 'view_history' }, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
|
41
50
|
|
42
51
|
<h3>Filters</h3>
|
43
52
|
<%= text_field_tag :filter_column, nil, placeholder: 'Enter filter value...' %>
|
@@ -52,7 +61,7 @@
|
|
52
61
|
<p><%= col %> = <%= val %></p>
|
53
62
|
<% end %>
|
54
63
|
|
55
|
-
<%= form_for(@model.to_s.to_sym, url: { :controller => '
|
64
|
+
<%= form_for(@model.to_s.to_sym, url: { :controller => '/vertica_history/vertica_history', :action => 'view_history' }, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
|
56
65
|
<%= f.submit('Clear Filters', class: 'btn btn-primary') %>
|
57
66
|
<% end %>
|
58
67
|
<% end %>
|
@@ -67,8 +76,8 @@
|
|
67
76
|
<table class="table table-striped table-bordered table-condensed text-center">
|
68
77
|
<tr>
|
69
78
|
<% @columns.each do |col| %>
|
70
|
-
<th> <%= col.camelize %> <%= link_to '⇑'.html_safe,
|
71
|
-
<%= link_to '⇓'.html_safe,
|
79
|
+
<th> <%= col.camelize %> <%= link_to '⇑'.html_safe, vertica_history_view_history_path(order_by: (col + ' asc'), columns: @columns) %>
|
80
|
+
<%= link_to '⇓'.html_safe, vertica_history_view_history_path(order_by: (col + ' desc'), columns: @columns) %></th>
|
72
81
|
<% end %>
|
73
82
|
</tr>
|
74
83
|
<% @history.each do |data| %>
|
data/config/routes.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
VerticaHistory::Engine.routes.draw do
|
2
|
-
get '
|
3
|
-
get '
|
2
|
+
get ':class_name/:id' => 'vertica_history#index', as: 'vertica_history_index'
|
3
|
+
get ':class_name/:id/history' => 'vertica_history#view_history', as: 'vertica_history_view_history'
|
4
4
|
end
|
@@ -1,25 +1,25 @@
|
|
1
|
-
require 'rails_admin/config/actions'
|
2
|
-
require 'rails_admin/config/actions/base'
|
3
|
-
|
4
|
-
module RailsAdmin
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
end
|
1
|
+
# require 'rails_admin/config/actions'
|
2
|
+
# require 'rails_admin/config/actions/base'
|
3
|
+
#
|
4
|
+
# module RailsAdmin
|
5
|
+
# module Config
|
6
|
+
# module Actions
|
7
|
+
# class VerticaHistory < RailsAdmin::Config::Actions::Base
|
8
|
+
# RailsAdmin::Config::Actions.register(self)
|
9
|
+
#
|
10
|
+
# register_instance_option(:member) { true }
|
11
|
+
# register_instance_option(:pjax) { false }
|
12
|
+
#
|
13
|
+
# register_instance_option :controller do
|
14
|
+
# Proc.new do
|
15
|
+
# redirect_to "#{params['model_name'].underscore.downcase.to_param}/#{params['id']}"
|
16
|
+
# end
|
17
|
+
# end
|
18
|
+
#
|
19
|
+
# register_instance_option :link_icon do
|
20
|
+
# 'icon-time'
|
21
|
+
# end
|
22
|
+
# end
|
23
|
+
# end
|
24
|
+
# end
|
25
|
+
# end
|
data/lib/vertica_history.rb
CHANGED
@@ -7,5 +7,5 @@ Rails.application.config.assets.version = '1.0'
|
|
7
7
|
# Rails.application.config.assets.paths << Emoji.images_path
|
8
8
|
|
9
9
|
# Precompile additional assets.
|
10
|
-
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
|
10
|
+
# application.js, application.css.scss, and all non-JS/CSS in app/assets folder are already added.
|
11
11
|
# Rails.application.config.assets.precompile += %w( search.js )
|
Binary file
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
5
|
+
#
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
7
|
+
# database schema. If you need to create the application database on another
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
11
|
+
#
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
13
|
+
|
14
|
+
ActiveRecord::Schema.define(version: 0) do
|
15
|
+
|
16
|
+
end
|
Binary file
|
@@ -0,0 +1,4 @@
|
|
1
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
3
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
@@ -0,0 +1,16 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
------------------------------
|
3
|
+
VerticaHistoryTest: test_truth
|
4
|
+
------------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
7
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
8
|
+
[1m[36m (0.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
9
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
10
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
11
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
12
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13
|
+
------------------------------
|
14
|
+
VerticaHistoryTest: test_truth
|
15
|
+
------------------------------
|
16
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vertica_history
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Taylor
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -38,6 +38,188 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: sprockets
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: sass-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bootstrap-sass
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: coffee-script
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: sass
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.2'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.2'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: jquery-rails
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: sprockets-rails
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: uglifier
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: yui-compressor
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: compass-rails
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: handlebars_assets
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: autoprefixer-rails
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: turbolinks
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :runtime
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
41
223
|
- !ruby/object:Gem::Dependency
|
42
224
|
name: sqlite3
|
43
225
|
requirement: !ruby/object:Gem::Requirement
|
@@ -60,8 +242,10 @@ extensions: []
|
|
60
242
|
extra_rdoc_files: []
|
61
243
|
files:
|
62
244
|
- Rakefile
|
245
|
+
- app/assets/javascripts/application.js
|
63
246
|
- app/assets/javascripts/vertica_history/application.js
|
64
|
-
- app/assets/stylesheets/
|
247
|
+
- app/assets/stylesheets/application.css.scss
|
248
|
+
- app/assets/stylesheets/vertica_history/application.css.scss
|
65
249
|
- app/controllers/vertica_history/application_controller.rb
|
66
250
|
- app/controllers/vertica_history/vertica_history_controller.rb
|
67
251
|
- app/helpers/vertica_history/application_helper.rb
|
@@ -104,6 +288,11 @@ files:
|
|
104
288
|
- test/dummy/config/locales/en.yml
|
105
289
|
- test/dummy/config/routes.rb
|
106
290
|
- test/dummy/config/secrets.yml
|
291
|
+
- test/dummy/db/development.sqlite3
|
292
|
+
- test/dummy/db/schema.rb
|
293
|
+
- test/dummy/db/test.sqlite3
|
294
|
+
- test/dummy/log/development.log
|
295
|
+
- test/dummy/log/test.log
|
107
296
|
- test/dummy/public/404.html
|
108
297
|
- test/dummy/public/422.html
|
109
298
|
- test/dummy/public/500.html
|
@@ -167,8 +356,13 @@ test_files:
|
|
167
356
|
- test/dummy/bin/setup
|
168
357
|
- test/dummy/bin/bundle
|
169
358
|
- test/dummy/bin/rails
|
359
|
+
- test/dummy/db/development.sqlite3
|
360
|
+
- test/dummy/db/test.sqlite3
|
361
|
+
- test/dummy/db/schema.rb
|
170
362
|
- test/dummy/config.ru
|
171
363
|
- test/dummy/README.rdoc
|
172
364
|
- test/dummy/Rakefile
|
365
|
+
- test/dummy/log/development.log
|
366
|
+
- test/dummy/log/test.log
|
173
367
|
- test/vertica_history_test.rb
|
174
368
|
- test/test_helper.rb
|
@@ -1,15 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
-
* listed below.
|
4
|
-
*
|
5
|
-
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
-
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
-
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
-
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
-
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
-
* file per style scope.
|
12
|
-
*
|
13
|
-
*= require_tree .
|
14
|
-
*= require_self
|
15
|
-
*/
|