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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f9965f4d73109c94beedb553c232c3639d49758f
4
- data.tar.gz: be8b7bbde4b446be5ec1b18c7ac75b88d29e492f
3
+ metadata.gz: 158ae810e8ce7360ad772ab002e675d317cfaa6a
4
+ data.tar.gz: 999e5f2c99e552c007b55a3e75172ea68cdd3254
5
5
  SHA512:
6
- metadata.gz: 01cdfe73b1ead8dc6730cf15adfe283ccb5d8663b1a43ecd34587a6c3fd2451742935ef7240d6df198f95496061248481d6dcca9c5f62c90f3f3b17bf3b17f1d
7
- data.tar.gz: 39926782b8f28f914e5965a48bf8c311291c51333dc0f6ec1246ce5813f753ee05219c6960c393b343517e2e40832a5d6eba19203086778a3406e314da14c10d
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 .
@@ -10,4 +10,4 @@
10
10
  // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
- //= require_tree .
13
+ //= 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=>'admin/vertica_history', :action=>'view_history'}, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
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
- $('#backToModel').click(function() {
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 => 'admin/vertica_history', :action => 'view_history' }, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
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 => 'admin/vertica_history', :action => 'view_history' }, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
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 => 'admin/vertica_history', :action => 'view_history' }, method: 'get', html: { class: 'form-horizontal' }) do |f| %>
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 '&#8657'.html_safe, admin_vertica_history_view_history_path(order_by: (col + ' asc'), columns: @columns) %>
71
- <%= link_to '&#8659'.html_safe, admin_vertica_history_view_history_path(order_by: (col + ' desc'), columns: @columns) %></th>
79
+ <th> <%= col.camelize %> <%= link_to '&#8657'.html_safe, vertica_history_view_history_path(order_by: (col + ' asc'), columns: @columns) %>
80
+ <%= link_to '&#8659'.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 'vertica_history/:class_name/:id' => 'vertica_history#index', as: 'vertica_history_index'
3
- get 'vertica_history/:class_name/:id/history' => 'vertica_history#view_history', as: 'vertica_history_view_history'
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
- 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 "/admin/vertica_history/#{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
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
@@ -1,5 +1,6 @@
1
1
  module VerticaHistory
2
2
  class Engine < ::Rails::Engine
3
+ engine_name "vertica_history"
3
4
  isolate_namespace VerticaHistory
4
5
 
5
6
  config.autoload_paths << File.expand_path("/liib", __FILE__)
@@ -1,3 +1,3 @@
1
1
  module VerticaHistory
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -1,4 +1,7 @@
1
1
  require "vertica_history/engine"
2
-
3
2
  module VerticaHistory
3
+ PROJECT_CONFIG = File.join(__dir__, '..', 'config')
4
4
  end
5
+
6
+ require 'vertica_history/engine'
7
+ require 'rails_admin/config/actions/vertica_history'
@@ -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
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
@@ -0,0 +1,16 @@
1
+  (0.1ms) begin transaction
2
+ ------------------------------
3
+ VerticaHistoryTest: test_truth
4
+ ------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
7
+  (0.0ms) select sqlite_version(*)
8
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+  (0.0ms) SELECT version FROM "schema_migrations"
10
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
11
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+  (0.1ms) begin transaction
13
+ ------------------------------
14
+ VerticaHistoryTest: test_truth
15
+ ------------------------------
16
+  (0.0ms) rollback transaction
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.0.1
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-18 00:00:00.000000000 Z
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/vertica_history/application.css
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
- */