bootstrap_form_extensions 1.1.1 → 1.1.2

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap_form_extensions
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jesús Dugarte
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-23 00:00:00.000000000 Z
11
+ date: 2016-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap_form
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.4'
33
+ version: 1.4.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.4'
40
+ version: 1.4.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rails
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -165,7 +165,6 @@ files:
165
165
  - test/dummy/config/locales/en.yml
166
166
  - test/dummy/config/routes.rb
167
167
  - test/dummy/config/secrets.yml
168
- - test/dummy/db/development.sqlite3
169
168
  - test/dummy/db/migrate/20150918185031_create_things.rb
170
169
  - test/dummy/db/migrate/20150924203053_add_timespan.rb
171
170
  - test/dummy/db/migrate/20150929213249_add_arrayed_field.rb
@@ -177,7 +176,6 @@ files:
177
176
  - test/dummy/db/migrate/20151119160842_add_duration.rb
178
177
  - test/dummy/db/schema.rb
179
178
  - test/dummy/db/test.sqlite3
180
- - test/dummy/log/development.log
181
179
  - test/dummy/log/test.log
182
180
  - test/dummy/public/404.html
183
181
  - test/dummy/public/422.html
@@ -223,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
223
221
  version: '0'
224
222
  requirements: []
225
223
  rubyforge_project:
226
- rubygems_version: 2.2.3
224
+ rubygems_version: 2.2.2
227
225
  signing_key:
228
226
  specification_version: 4
229
227
  summary: Specialized controls added to the bootstrap_form gem
@@ -261,7 +259,6 @@ test_files:
261
259
  - test/dummy/config/routes.rb
262
260
  - test/dummy/config/secrets.yml
263
261
  - test/dummy/config.ru
264
- - test/dummy/db/development.sqlite3
265
262
  - test/dummy/db/migrate/20150918185031_create_things.rb
266
263
  - test/dummy/db/migrate/20150924203053_add_timespan.rb
267
264
  - test/dummy/db/migrate/20150929213249_add_arrayed_field.rb
@@ -273,7 +270,6 @@ test_files:
273
270
  - test/dummy/db/migrate/20151119160842_add_duration.rb
274
271
  - test/dummy/db/schema.rb
275
272
  - test/dummy/db/test.sqlite3
276
- - test/dummy/log/development.log
277
273
  - test/dummy/log/test.log
278
274
  - test/dummy/public/404.html
279
275
  - test/dummy/public/422.html
Binary file
@@ -1,51 +0,0 @@
1
-  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
-  (0.1ms) select sqlite_version(*)
3
-  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to CreateThings (20150918185031)
6
-  (0.1ms) begin transaction
7
-  (0.4ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
8
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150918185031"]]
9
-  (1.6ms) commit transaction
10
- Migrating to AddTimespan (20150924203053)
11
-  (0.1ms) begin transaction
12
-  (0.7ms) ALTER TABLE "things" ADD "duration_in_seconds" integer
13
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150924203053"]]
14
-  (1.2ms) commit transaction
15
- Migrating to AddArrayedField (20150929213249)
16
-  (0.1ms) begin transaction
17
-  (0.4ms) ALTER TABLE "things" ADD "urls" text
18
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150929213249"]]
19
-  (1.3ms) commit transaction
20
- Migrating to AddAnotherArrayedField (20151006171627)
21
-  (0.1ms) begin transaction
22
-  (0.6ms) ALTER TABLE "things" ADD "list" text
23
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151006171627"]]
24
-  (1.2ms) commit transaction
25
- Migrating to AddJsonField (20151006181943)
26
-  (0.2ms) begin transaction
27
-  (0.6ms) ALTER TABLE "things" ADD "variables" text
28
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151006181943"]]
29
-  (1.1ms) commit transaction
30
- Migrating to AddSchedulerField (20151007213131)
31
-  (0.1ms) begin transaction
32
-  (0.4ms) ALTER TABLE "things" ADD "schedule" text
33
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151007213131"]]
34
-  (1.3ms) commit transaction
35
- Migrating to AddDateTime (20151030194330)
36
-  (0.1ms) begin transaction
37
-  (0.4ms) ALTER TABLE "things" ADD "start_at" datetime
38
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151030194330"]]
39
-  (1.2ms) commit transaction
40
- Migrating to AddCategory (20151106165522)
41
-  (0.0ms) begin transaction
42
-  (0.3ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar)
43
-  (0.2ms) ALTER TABLE "things" ADD "category_id" integer
44
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151106165522"]]
45
-  (1.2ms) commit transaction
46
- Migrating to AddDuration (20151119160842)
47
-  (0.1ms) begin transaction
48
-  (0.3ms) ALTER TABLE "things" ADD "duration_in_seconds2" float
49
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151119160842"]]
50
-  (1.0ms) commit transaction
51
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"