bootstrap_toolbelt 0.0.10 → 0.0.11

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: 84da5ddc3802c946173e74428d14d8396d2d3ac7
4
- data.tar.gz: e77587330d6a6e0761d2dc05f5bf0c26bdbc032e
3
+ metadata.gz: aedc63a1f060097398f9aa2bfad0307abf7a0c12
4
+ data.tar.gz: e6991c8e277a5aa08a446a8ec74073801b6d83d8
5
5
  SHA512:
6
- metadata.gz: a00441776e4e768f69f471d48fcec40c79aafadbad95e181dea0a6c5339a6edaa2d6ab14a0738341e5ff1184de46696f40f355b7777a255f51221d1f7029363b
7
- data.tar.gz: 33b6e34a2fc3c32fbb157ab14c431888cae1fe4749f202822ada4529eb5e80141e2a326bfd613f3d6b2b8d597dda9139b91206df8a9ef830e3378363f0b41775
6
+ metadata.gz: c4914430cfee3b59bd6addd97653b9113f10cf35d5bc3333d3691350c9e2c73e368945238db577661d3ef4d617080fcce5a18b52382efe1ccacb45b1744be90d
7
+ data.tar.gz: d6e1ca558bb64093148bead4722879cfc77163797f0c3c218619726fb71b20781fbd8aa6ef04f2d449472fdc91357e68baf22e8447d59d678115bdf353afc3e2
@@ -0,0 +1,6 @@
1
+ module BootstrapHelper
2
+ def grid_helper
3
+ markup = render partial: 'shared/grid_helper'
4
+ markup.html_safe
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ <div class="row">
2
+ <% %w(xs sm md lg).each do |s| -%>
3
+ <div class="col-xs-12 bordered centered visible-<%= s %>-block"><%= s %></div>
4
+ <% end -%>
5
+ </div>
6
+ <div class="row">
7
+ <% (1..12).each do |n| -%>
8
+ <div class="col-xs-1 col-sm-1 col-md-1 col-lg-1 bordered centered"><%= n %></div>
9
+ <% end -%>
10
+ </div>
@@ -1,3 +1,3 @@
1
1
  module BootstrapToolbelt
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
Binary file
@@ -0,0 +1,47 @@
1
+  (1.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
+  (0.1ms) select sqlite_version(*)
4
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT version FROM "schema_migrations"
6
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150302084828')
7
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
+  (0.1ms) begin transaction
9
+ ---------------------------------
10
+ BootstrapToolbeltTest: test_truth
11
+ ---------------------------------
12
+  (0.0ms) rollback transaction
13
+  (0.0ms) begin transaction
14
+ ------------------------------------------
15
+ UsersControllerTest: test_should_show_user
16
+ ------------------------------------------
17
+  (0.1ms) rollback transaction
18
+  (0.1ms) begin transaction
19
+ -----------------------------------------
20
+ UsersControllerTest: test_should_get_edit
21
+ -----------------------------------------
22
+  (0.0ms) rollback transaction
23
+  (0.1ms) begin transaction
24
+ ------------------------------------------
25
+ UsersControllerTest: test_should_get_index
26
+ ------------------------------------------
27
+  (0.0ms) rollback transaction
28
+  (0.2ms) begin transaction
29
+ ---------------------------------------------
30
+ UsersControllerTest: test_should_destroy_user
31
+ ---------------------------------------------
32
+  (0.1ms) rollback transaction
33
+  (0.1ms) begin transaction
34
+ ----------------------------------------
35
+ UsersControllerTest: test_should_get_new
36
+ ----------------------------------------
37
+  (0.1ms) rollback transaction
38
+  (0.0ms) begin transaction
39
+ --------------------------------------------
40
+ UsersControllerTest: test_should_update_user
41
+ --------------------------------------------
42
+  (0.1ms) rollback transaction
43
+  (0.1ms) begin transaction
44
+ --------------------------------------------
45
+ UsersControllerTest: test_should_create_user
46
+ --------------------------------------------
47
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_toolbelt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kristian Rasmussen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-09 00:00:00.000000000 Z
11
+ date: 2015-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -49,11 +49,13 @@ files:
49
49
  - README.rdoc
50
50
  - Rakefile
51
51
  - app/controllers/concerns/flash_messages.rb
52
+ - app/helpers/bootstrap_helper.rb
52
53
  - app/helpers/flash_helper.rb
53
54
  - app/helpers/icon_helper.rb
54
55
  - app/helpers/navigation_helper.rb
55
56
  - app/views/flash_helper/_flash.html.erb
56
57
  - app/views/shared/_flash.html.erb
58
+ - app/views/shared/_grid_helper.html.erb
57
59
  - config/locales/da.yml
58
60
  - config/locales/en.yml
59
61
  - config/routes.rb
@@ -106,7 +108,9 @@ files:
106
108
  - test/dummy/db/development.sqlite3
107
109
  - test/dummy/db/migrate/20150302084828_create_users.rb
108
110
  - test/dummy/db/schema.rb
111
+ - test/dummy/db/test.sqlite3
109
112
  - test/dummy/log/development.log
113
+ - test/dummy/log/test.log
110
114
  - test/dummy/public/404.html
111
115
  - test/dummy/public/422.html
112
116
  - test/dummy/public/500.html
@@ -199,7 +203,9 @@ test_files:
199
203
  - test/dummy/db/development.sqlite3
200
204
  - test/dummy/db/migrate/20150302084828_create_users.rb
201
205
  - test/dummy/db/schema.rb
206
+ - test/dummy/db/test.sqlite3
202
207
  - test/dummy/log/development.log
208
+ - test/dummy/log/test.log
203
209
  - test/dummy/public/404.html
204
210
  - test/dummy/public/422.html
205
211
  - test/dummy/public/500.html
@@ -226,3 +232,4 @@ test_files:
226
232
  - test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655
227
233
  - test/integration/navigation_test.rb
228
234
  - test/test_helper.rb
235
+ has_rdoc: