easy_reports 0.0.15 → 0.0.16

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: db77e87a0cdcd96658f8ebd696a39b9f8976fa98
4
- data.tar.gz: 6e441bebeae2ac49b37c11be26ba1b9e74f0ef62
3
+ metadata.gz: 9f755aa0ef6a519a6e57a2b05c34d77c89c2021b
4
+ data.tar.gz: 4c340c5a88b9e9e88ce4e18281089f4ef63680d6
5
5
  SHA512:
6
- metadata.gz: 2974f8998035ca3c2b57213511f6e9f3f5ec58000deef2f2012437dfb45e7e3f1baaef772b3bb16518fad3a0bff2dca9facc396e75f9618f5f7cc0ae429afc62
7
- data.tar.gz: d3215d1b5a6238d7283f46cad521e6002ec28b829d58e9e2fd4eac41503fb67dc8aa1fc7c90ebe1212fc5c2873b57f2024e4ef36cb43ec7fe8b23db9227fe7c0
6
+ metadata.gz: 26aa8c12a751b9c6ced441f95b6dec19d7caba3b4992e386344df34b44c83281eac3da3f2fc9fbbae9160d6285ea91689114333dc5279181ae931958947d8cb3
7
+ data.tar.gz: c3e02f6da92bd832df671d4e5afe6151cdd2724102ec0935c8eb39a878f60cfd6ff738d1143bf0dde9c01957d24b3a79500118356c627a8120877b1c58fe6629
@@ -0,0 +1,10 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+ //= require jquery
8
+ //= require jquery_ujs
9
+ //= require twitter/bootstrap
10
+ //= require_tree .
@@ -0,0 +1,4 @@
1
+ jQuery(function() {
2
+ $("a[rel~=popover], .has-popover").popover();
3
+ $("a[rel~=tooltip], .has-tooltip").tooltip();
4
+ });
@@ -0,0 +1,7 @@
1
+ /*
2
+ * This is a manifest file that'll automatically include all the stylesheets available in this directory
3
+ * and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
4
+ * the top of the compiled file, but it's generally better to create a new file per style scope.
5
+ *= require_self
6
+ *= require_tree .
7
+ */
@@ -0,0 +1,29 @@
1
+ @import "twitter/bootstrap/bootstrap";
2
+
3
+ // Set the correct sprite paths
4
+ @iconSpritePath: image-url("twitter/bootstrap/glyphicons-halflings.png");
5
+ @iconWhiteSpritePath: image-url("twitter/bootstrap/glyphicons-halflings-white.png");
6
+
7
+ // Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines)
8
+ @fontAwesomeEotPath: font-url("fontawesome-webfont.eot");
9
+ @fontAwesomeEotPath_iefix: font-url("fontawesome-webfont.eot?#iefix");
10
+ @fontAwesomeWoffPath: font-url("fontawesome-webfont.woff");
11
+ @fontAwesomeTtfPath: font-url("fontawesome-webfont.ttf");
12
+ @fontAwesomeSvgPath: font-url("fontawesome-webfont.svg#fontawesomeregular");
13
+
14
+ // Font Awesome
15
+ @import "fontawesome/font-awesome";
16
+
17
+ // Glyphicons
18
+ //@import "twitter/bootstrap/glyphicons.less";
19
+
20
+ // Your custom LESS stylesheets goes here
21
+ //
22
+ // Since bootstrap was imported above you have access to its mixins which
23
+ // you may use and inherit here
24
+ //
25
+ // If you'd like to override bootstrap's own variables, you can do so here as well
26
+ // See http://twitter.github.com/bootstrap/customize.html#variables for their names and documentation
27
+ //
28
+ // Example:
29
+ // @link-color: #ff0000;
@@ -9,6 +9,7 @@ table
9
9
  th Username
10
10
  th Password
11
11
  th Host
12
+ th Port
12
13
  th Database name
13
14
  th
14
15
  th
@@ -23,6 +24,7 @@ table
23
24
  td = database_config.username
24
25
  td = database_config.password
25
26
  td = database_config.host
27
+ td = database_config.port
26
28
  td = database_config.database_name
27
29
  td = link_to 'Show', database_config
28
30
  td = link_to 'Edit', edit_database_config_path(database_config)
@@ -0,0 +1,23 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ breadcrumbs:
6
+ application:
7
+ root: "Index"
8
+ pages:
9
+ pages: "Pages"
10
+ helpers:
11
+ actions: "Actions"
12
+ links:
13
+ back: "Back"
14
+ cancel: "Cancel"
15
+ confirm: "Are you sure?"
16
+ destroy: "Delete"
17
+ new: "New"
18
+ edit: "Edit"
19
+ titles:
20
+ edit: "Edit %{model}"
21
+ save: "Save %{model}"
22
+ new: "New %{model}"
23
+ delete: "Delete %{model}"
@@ -27,5 +27,6 @@ Gem::Specification.new do |spec|
27
27
  spec.add_development_dependency "rake", "~> 10.0"
28
28
  spec.add_dependency "slim"
29
29
  spec.add_dependency "pg"
30
+ spec.add_dependency 'twitter-bootstrap-rails'
30
31
  spec.add_dependency "sequel"
31
32
  end
@@ -1,3 +1,3 @@
1
1
  module EasyReports
2
- VERSION = "0.0.15"
2
+ VERSION = "0.0.16"
3
3
  end
@@ -1,11 +1,12 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- easy_reports (0.0.14)
4
+ easy_reports (0.0.15)
5
5
  pg
6
6
  rails (~> 4.1.8)
7
7
  sequel
8
8
  slim
9
+ twitter-bootstrap-rails
9
10
 
10
11
  GEM
11
12
  remote: https://rubygems.org/
@@ -41,6 +42,7 @@ GEM
41
42
  daemons (1.1.9)
42
43
  erubis (2.7.0)
43
44
  eventmachine (1.0.3)
45
+ execjs (2.2.2)
44
46
  hike (1.2.3)
45
47
  i18n (0.6.11)
46
48
  json (1.8.1)
@@ -91,6 +93,11 @@ GEM
91
93
  thor (0.19.1)
92
94
  thread_safe (0.3.4)
93
95
  tilt (1.4.1)
96
+ twitter-bootstrap-rails (3.2.0)
97
+ actionpack (~> 4.1)
98
+ execjs (~> 2.2)
99
+ rails (~> 4.1)
100
+ railties (~> 4.1)
94
101
  tzinfo (1.2.2)
95
102
  thread_safe (~> 0.1)
96
103
 
@@ -0,0 +1,4 @@
1
+ jQuery(function() {
2
+ $("a[rel~=popover], .has-popover").popover();
3
+ $("a[rel~=tooltip], .has-tooltip").tooltip();
4
+ });
@@ -0,0 +1,29 @@
1
+ @import "twitter/bootstrap/bootstrap";
2
+
3
+ // Set the correct sprite paths
4
+ @iconSpritePath: image-url("twitter/bootstrap/glyphicons-halflings.png");
5
+ @iconWhiteSpritePath: image-url("twitter/bootstrap/glyphicons-halflings-white.png");
6
+
7
+ // Set the Font Awesome (Font Awesome is default. You can disable by commenting below lines)
8
+ @fontAwesomeEotPath: font-url("fontawesome-webfont.eot");
9
+ @fontAwesomeEotPath_iefix: font-url("fontawesome-webfont.eot?#iefix");
10
+ @fontAwesomeWoffPath: font-url("fontawesome-webfont.woff");
11
+ @fontAwesomeTtfPath: font-url("fontawesome-webfont.ttf");
12
+ @fontAwesomeSvgPath: font-url("fontawesome-webfont.svg#fontawesomeregular");
13
+
14
+ // Font Awesome
15
+ @import "fontawesome/font-awesome";
16
+
17
+ // Glyphicons
18
+ //@import "twitter/bootstrap/glyphicons.less";
19
+
20
+ // Your custom LESS stylesheets goes here
21
+ //
22
+ // Since bootstrap was imported above you have access to its mixins which
23
+ // you may use and inherit here
24
+ //
25
+ // If you'd like to override bootstrap's own variables, you can do so here as well
26
+ // See http://twitter.github.com/bootstrap/customize.html#variables for their names and documentation
27
+ //
28
+ // Example:
29
+ // @link-color: #ff0000;
@@ -0,0 +1,23 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ breadcrumbs:
6
+ application:
7
+ root: "Index"
8
+ pages:
9
+ pages: "Pages"
10
+ helpers:
11
+ actions: "Actions"
12
+ links:
13
+ back: "Back"
14
+ cancel: "Cancel"
15
+ confirm: "Are you sure?"
16
+ destroy: "Delete"
17
+ new: "New"
18
+ edit: "Edit"
19
+ titles:
20
+ edit: "Edit %{model}"
21
+ save: "Save %{model}"
22
+ new: "New %{model}"
23
+ delete: "Delete %{model}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_reports
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davydenkov Mihail
@@ -80,6 +80,20 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: twitter-bootstrap-rails
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'
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: sequel
85
99
  requirement: !ruby/object:Gem::Requirement
@@ -108,9 +122,13 @@ files:
108
122
  - README.md
109
123
  - Rakefile
110
124
  - app/assets/images/easy_reports/.keep
125
+ - app/assets/javascripts/application.js
126
+ - app/assets/javascripts/bootstrap.js
111
127
  - app/assets/javascripts/easy_reports/application.js
112
128
  - app/assets/javascripts/easy_reports/database_configs.js
113
129
  - app/assets/javascripts/easy_reports/reports.js
130
+ - app/assets/stylesheets/application.css
131
+ - app/assets/stylesheets/bootstrap_and_overrides.css.less
114
132
  - app/assets/stylesheets/easy_reports/application.css
115
133
  - app/assets/stylesheets/easy_reports/database_configs.css
116
134
  - app/assets/stylesheets/easy_reports/reports.css
@@ -136,6 +154,7 @@ files:
136
154
  - app/views/easy_reports/reports/show.html.slim
137
155
  - app/views/layouts/easy_reports/application.html.erb
138
156
  - bin/rails
157
+ - config/locales/en.bootstrap.yml
139
158
  - config/routes.rb
140
159
  - db/migrate/20141207141745_create_easy_reports_reports.rb
141
160
  - db/migrate/20141213173509_create_easy_reports_database_configs.rb
@@ -151,7 +170,9 @@ files:
151
170
  - test/dummy/Rakefile
152
171
  - test/dummy/app/assets/images/.keep
153
172
  - test/dummy/app/assets/javascripts/application.js
173
+ - test/dummy/app/assets/javascripts/bootstrap.js
154
174
  - test/dummy/app/assets/stylesheets/application.css
175
+ - test/dummy/app/assets/stylesheets/bootstrap_and_overrides.css.less
155
176
  - test/dummy/app/controllers/application_controller.rb
156
177
  - test/dummy/app/controllers/concerns/.keep
157
178
  - test/dummy/app/helpers/application_helper.rb
@@ -178,6 +199,7 @@ files:
178
199
  - test/dummy/config/initializers/mime_types.rb
179
200
  - test/dummy/config/initializers/session_store.rb
180
201
  - test/dummy/config/initializers/wrap_parameters.rb
202
+ - test/dummy/config/locales/en.bootstrap.yml
181
203
  - test/dummy/config/locales/en.yml
182
204
  - test/dummy/config/routes.rb
183
205
  - test/dummy/config/secrets.yml
@@ -228,7 +250,9 @@ test_files:
228
250
  - test/dummy/Rakefile
229
251
  - test/dummy/app/assets/images/.keep
230
252
  - test/dummy/app/assets/javascripts/application.js
253
+ - test/dummy/app/assets/javascripts/bootstrap.js
231
254
  - test/dummy/app/assets/stylesheets/application.css
255
+ - test/dummy/app/assets/stylesheets/bootstrap_and_overrides.css.less
232
256
  - test/dummy/app/controllers/application_controller.rb
233
257
  - test/dummy/app/controllers/concerns/.keep
234
258
  - test/dummy/app/helpers/application_helper.rb
@@ -255,6 +279,7 @@ test_files:
255
279
  - test/dummy/config/initializers/mime_types.rb
256
280
  - test/dummy/config/initializers/session_store.rb
257
281
  - test/dummy/config/initializers/wrap_parameters.rb
282
+ - test/dummy/config/locales/en.bootstrap.yml
258
283
  - test/dummy/config/locales/en.yml
259
284
  - test/dummy/config/routes.rb
260
285
  - test/dummy/config/secrets.yml