themes_on_rails 0.2.0 → 0.2.1
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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/Rakefile +2 -2
- data/lib/themes_on_rails/railtie.rb +4 -4
- data/lib/themes_on_rails/version.rb +1 -1
- data/spec/dummy/log/test.log +615 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/0cfcea8e64323f692964ade04baf71bf +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1b2584b22e1970da0ea00056c0149492 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/301390a2f715e632e51eaceadc864bd8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3059f09ecb35a9d6a17cc629cf142cad +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/3773504c128301fa4ae43322c265863c +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/8b1b55ee928fcc1ca79651b5a54d12b1 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/97b428fb2be48bdef1c2edc6895007e6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a144f874a0fbcfbf57e914e54950b2b8 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a6505a19f1ef24ad643489939529b237 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/aea240771414d6f51f0eeffa97de34c0 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c6062fc388a3fcd36f0407b7de58b073 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/fbce05c1fbdc18388ed134c8e4100ac8 +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 779986993ad572714a2cdbaba67ed21868709691
|
|
4
|
+
data.tar.gz: 62d54684e350a2fd08a3c5b217892d6d96f3ad75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4d05ff8297cc2977622e70f26297d9bb1971ad7bb0d4201ac034dcc73d9fca4ae99f0dcb70d0dd71dd6aecf3047bd21ca3e5ca1b0db900069a98404bc4b42d7
|
|
7
|
+
data.tar.gz: a0c34ebbc5df1784c5f9bd0c110968153cdd14f3242c0c9dda9bea4d4ff21de117d1c9b96b8712d3857ffe86f4ad8ba369d29ebb312f9ecce738c9688231d8d9
|
data/README.md
CHANGED
|
@@ -111,11 +111,11 @@ With this declaration, the **basic** theme would be used for everything but the
|
|
|
111
111
|
|
|
112
112
|
## Asset Pipeline
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
If you are using version `0.1.0`, add this to your staging.rb or production.rb:
|
|
115
115
|
|
|
116
116
|
```ruby
|
|
117
117
|
config.assets.precompile += [ Proc.new { |path, fn| fn =~ /app\/themes/ && !%w(.js .css).include?(File.extname(path)) } ]
|
|
118
|
-
config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.
|
|
118
|
+
config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.js" }
|
|
119
119
|
config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.css" }
|
|
120
120
|
```
|
|
121
121
|
|
data/Rakefile
CHANGED
|
@@ -42,7 +42,7 @@ end
|
|
|
42
42
|
task :default => "spec:all"
|
|
43
43
|
|
|
44
44
|
namespace :spec do
|
|
45
|
-
%w(rails_40 rails_32).each do |gemfile|
|
|
45
|
+
%w(rails_41 rails_40 rails_32).each do |gemfile|
|
|
46
46
|
desc "Run Tests against #{gemfile}"
|
|
47
47
|
task gemfile do
|
|
48
48
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle --quiet"
|
|
@@ -52,7 +52,7 @@ namespace :spec do
|
|
|
52
52
|
|
|
53
53
|
desc "Run Tests against rails versions"
|
|
54
54
|
task :all do
|
|
55
|
-
%w(rails_40 rails_32).each do |gemfile|
|
|
55
|
+
%w(rails_41 rails_40 rails_32).each do |gemfile|
|
|
56
56
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle --quiet"
|
|
57
57
|
sh "BUNDLE_GEMFILE='gemfiles/#{gemfile}.gemfile' bundle exec rake spec"
|
|
58
58
|
end
|
|
@@ -13,11 +13,11 @@ module ThemesOnRails
|
|
|
13
13
|
end
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
-
if Rails.env.
|
|
16
|
+
if !Rails.env.development? && !Rails.env.test?
|
|
17
17
|
initializer "themes_on_rails.precompile" do |app|
|
|
18
|
-
config.assets.precompile += [ Proc.new { |path, fn| fn =~ /app\/themes/ && !%w(.js .css).include?(File.extname(path)) } ]
|
|
19
|
-
config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.js" }
|
|
20
|
-
config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.css" }
|
|
18
|
+
app.config.assets.precompile += [ Proc.new { |path, fn| fn =~ /app\/themes/ && !%w(.js .css).include?(File.extname(path)) } ]
|
|
19
|
+
app.config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.js" }
|
|
20
|
+
app.config.assets.precompile += Dir["app/themes/*"].map { |path| "#{path.split('/').last}/all.css" }
|
|
21
21
|
end
|
|
22
22
|
end
|
|
23
23
|
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -4404,3 +4404,618 @@ Processing by PostsController#new as HTML
|
|
|
4404
4404
|
Parameters: {"theme"=>"basic_blue"}
|
|
4405
4405
|
Rendered posts/_form.html.erb (1.7ms)
|
|
4406
4406
|
Completed 200 OK in 3.2ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
4407
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4408
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4409
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4410
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4411
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4412
|
+
Processing by PostsController#index as HTML
|
|
4413
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4414
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4415
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
|
|
4416
|
+
Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 1.0ms)
|
|
4417
|
+
Processing by PostsController#index as HTML
|
|
4418
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4419
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4420
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
|
4421
|
+
Processing by PostsController#index as HTML
|
|
4422
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4423
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4424
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms)
|
|
4425
|
+
Processing by PostsController#index as HTML
|
|
4426
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4427
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4428
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.2ms)
|
|
4429
|
+
Processing by PostsController#new as HTML
|
|
4430
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4431
|
+
Rendered posts/_form.html.erb (20.2ms)
|
|
4432
|
+
Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.3ms)
|
|
4433
|
+
Processing by PostsController#new as HTML
|
|
4434
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4435
|
+
Rendered posts/_form.html.erb (1.7ms)
|
|
4436
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
4437
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4438
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4439
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4440
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4441
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4442
|
+
Processing by PostsController#index as HTML
|
|
4443
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4444
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4445
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.0ms)
|
|
4446
|
+
Completed 200 OK in 29ms (Views: 26.4ms | ActiveRecord: 1.2ms)
|
|
4447
|
+
Processing by PostsController#index as HTML
|
|
4448
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4449
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4450
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
|
4451
|
+
Processing by PostsController#index as HTML
|
|
4452
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4453
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4454
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.1ms)
|
|
4455
|
+
Processing by PostsController#index as HTML
|
|
4456
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4457
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4458
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
4459
|
+
Processing by PostsController#new as HTML
|
|
4460
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4461
|
+
Rendered posts/_form.html.erb (20.7ms)
|
|
4462
|
+
Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.3ms)
|
|
4463
|
+
Processing by PostsController#new as HTML
|
|
4464
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4465
|
+
Rendered posts/_form.html.erb (1.7ms)
|
|
4466
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
4467
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4468
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4469
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
|
4470
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
4471
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4472
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
|
4473
|
+
Processing by PostsController#index as HTML
|
|
4474
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4475
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4476
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (6.2ms)
|
|
4477
|
+
Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 1.1ms)
|
|
4478
|
+
Processing by PostsController#index as HTML
|
|
4479
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4480
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4481
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
|
|
4482
|
+
Processing by PostsController#index as HTML
|
|
4483
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4484
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4485
|
+
Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.1ms)
|
|
4486
|
+
Processing by PostsController#index as HTML
|
|
4487
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4488
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4489
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
4490
|
+
Processing by PostsController#new as HTML
|
|
4491
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4492
|
+
Rendered posts/_form.html.erb (20.4ms)
|
|
4493
|
+
Completed 200 OK in 43ms (Views: 41.8ms | ActiveRecord: 0.2ms)
|
|
4494
|
+
Processing by PostsController#new as HTML
|
|
4495
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4496
|
+
Rendered posts/_form.html.erb (1.9ms)
|
|
4497
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
4498
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4499
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4500
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4501
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4502
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4503
|
+
Processing by PostsController#index as HTML
|
|
4504
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4505
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4506
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.8ms)
|
|
4507
|
+
Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 1.2ms)
|
|
4508
|
+
Processing by PostsController#index as HTML
|
|
4509
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4510
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4511
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
|
4512
|
+
Processing by PostsController#index as HTML
|
|
4513
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4514
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4515
|
+
Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms)
|
|
4516
|
+
Processing by PostsController#index as HTML
|
|
4517
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4518
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4519
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
|
4520
|
+
Processing by PostsController#new as HTML
|
|
4521
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4522
|
+
Rendered posts/_form.html.erb (16.5ms)
|
|
4523
|
+
Completed 200 OK in 39ms (Views: 37.4ms | ActiveRecord: 0.3ms)
|
|
4524
|
+
Processing by PostsController#new as HTML
|
|
4525
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4526
|
+
Rendered posts/_form.html.erb (1.7ms)
|
|
4527
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
4528
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4529
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4530
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
4531
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
4532
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4533
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
|
4534
|
+
Processing by PostsController#index as HTML
|
|
4535
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4536
|
+
[1m[36mPost Load (1.9ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4537
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (7.6ms)
|
|
4538
|
+
Completed 200 OK in 30ms (Views: 25.9ms | ActiveRecord: 1.9ms)
|
|
4539
|
+
Processing by PostsController#index as HTML
|
|
4540
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4541
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4542
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
|
4543
|
+
Processing by PostsController#index as HTML
|
|
4544
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4545
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4546
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
|
4547
|
+
Processing by PostsController#index as HTML
|
|
4548
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4549
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4550
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
|
4551
|
+
Processing by PostsController#new as HTML
|
|
4552
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4553
|
+
Rendered posts/_form.html.erb (19.2ms)
|
|
4554
|
+
Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.2ms)
|
|
4555
|
+
Processing by PostsController#new as HTML
|
|
4556
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4557
|
+
Rendered posts/_form.html.erb (2.0ms)
|
|
4558
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
4559
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4560
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4561
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4562
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4563
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4564
|
+
Processing by PostsController#index as HTML
|
|
4565
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4566
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4567
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.0ms)
|
|
4568
|
+
Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 1.1ms)
|
|
4569
|
+
Processing by PostsController#index as HTML
|
|
4570
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4571
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4572
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
|
4573
|
+
Processing by PostsController#index as HTML
|
|
4574
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4575
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4576
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.1ms)
|
|
4577
|
+
Processing by PostsController#index as HTML
|
|
4578
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4579
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4580
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
4581
|
+
Processing by PostsController#new as HTML
|
|
4582
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4583
|
+
Rendered posts/_form.html.erb (16.1ms)
|
|
4584
|
+
Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.3ms)
|
|
4585
|
+
Processing by PostsController#new as HTML
|
|
4586
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4587
|
+
Rendered posts/_form.html.erb (1.9ms)
|
|
4588
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
4589
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4590
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4591
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4592
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4593
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4594
|
+
Processing by PostsController#index as HTML
|
|
4595
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4596
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4597
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.9ms)
|
|
4598
|
+
Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 1.1ms)
|
|
4599
|
+
Processing by PostsController#index as HTML
|
|
4600
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4601
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4602
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
|
4603
|
+
Processing by PostsController#index as HTML
|
|
4604
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4605
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4606
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
|
4607
|
+
Processing by PostsController#index as HTML
|
|
4608
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4609
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4610
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
|
4611
|
+
Processing by PostsController#new as HTML
|
|
4612
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4613
|
+
Rendered posts/_form.html.erb (16.9ms)
|
|
4614
|
+
Completed 200 OK in 38ms (Views: 37.0ms | ActiveRecord: 0.3ms)
|
|
4615
|
+
Processing by PostsController#new as HTML
|
|
4616
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4617
|
+
Rendered posts/_form.html.erb (1.7ms)
|
|
4618
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
4619
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4620
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4621
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
4622
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
4623
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4624
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
|
4625
|
+
Processing by PostsController#index as HTML
|
|
4626
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4627
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4628
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (6.2ms)
|
|
4629
|
+
Completed 200 OK in 35ms (Views: 32.3ms | ActiveRecord: 1.2ms)
|
|
4630
|
+
Processing by PostsController#index as HTML
|
|
4631
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4632
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4633
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.2ms)
|
|
4634
|
+
Processing by PostsController#index as HTML
|
|
4635
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4636
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4637
|
+
Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms)
|
|
4638
|
+
Processing by PostsController#index as HTML
|
|
4639
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4640
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4641
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
|
4642
|
+
Processing by PostsController#new as HTML
|
|
4643
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4644
|
+
Rendered posts/_form.html.erb (17.2ms)
|
|
4645
|
+
Completed 200 OK in 44ms (Views: 42.4ms | ActiveRecord: 0.3ms)
|
|
4646
|
+
Processing by PostsController#new as HTML
|
|
4647
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4648
|
+
Rendered posts/_form.html.erb (2.2ms)
|
|
4649
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
|
4650
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4651
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4652
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4653
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4654
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4655
|
+
Processing by PostsController#index as HTML
|
|
4656
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4657
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4658
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.3ms)
|
|
4659
|
+
Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 1.1ms)
|
|
4660
|
+
Processing by PostsController#index as HTML
|
|
4661
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4662
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4663
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
|
|
4664
|
+
Processing by PostsController#index as HTML
|
|
4665
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4666
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4667
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms)
|
|
4668
|
+
Processing by PostsController#index as HTML
|
|
4669
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4670
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4671
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
|
4672
|
+
Processing by PostsController#new as HTML
|
|
4673
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4674
|
+
Rendered posts/_form.html.erb (20.7ms)
|
|
4675
|
+
Completed 200 OK in 44ms (Views: 41.7ms | ActiveRecord: 0.5ms)
|
|
4676
|
+
Processing by PostsController#new as HTML
|
|
4677
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4678
|
+
Rendered posts/_form.html.erb (2.0ms)
|
|
4679
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
4680
|
+
Connecting to database specified by database.yml
|
|
4681
|
+
Connecting to database specified by database.yml
|
|
4682
|
+
Connecting to database specified by database.yml
|
|
4683
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
4684
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
4685
|
+
[1m[36m (1.1ms)[0m [1mDROP TABLE "posts"[0m
|
|
4686
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
|
4687
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4688
|
+
Connecting to database specified by database.yml
|
|
4689
|
+
Processing by PostsController#index as HTML
|
|
4690
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4691
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
4692
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.2ms)
|
|
4693
|
+
Completed 200 OK in 20.2ms (Views: 18.9ms | ActiveRecord: 0.1ms)
|
|
4694
|
+
Processing by PostsController#index as HTML
|
|
4695
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4696
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4697
|
+
Completed 200 OK in 4.7ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
|
4698
|
+
Processing by PostsController#index as HTML
|
|
4699
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4700
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
4701
|
+
Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
|
4702
|
+
Processing by PostsController#index as HTML
|
|
4703
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4704
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4705
|
+
Completed 200 OK in 3.9ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
|
4706
|
+
Processing by PostsController#new as HTML
|
|
4707
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4708
|
+
Rendered posts/_form.html.erb (12.0ms)
|
|
4709
|
+
Completed 200 OK in 21.8ms (Views: 18.4ms | ActiveRecord: 0.0ms)
|
|
4710
|
+
Processing by PostsController#new as HTML
|
|
4711
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4712
|
+
Rendered posts/_form.html.erb (1.9ms)
|
|
4713
|
+
Completed 200 OK in 3.4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
|
4714
|
+
Connecting to database specified by database.yml
|
|
4715
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
4716
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
4717
|
+
[1m[36m (2.7ms)[0m [1mDROP TABLE "posts"[0m
|
|
4718
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
|
4719
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4720
|
+
Connecting to database specified by database.yml
|
|
4721
|
+
Processing by PostsController#index as HTML
|
|
4722
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4723
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
4724
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.4ms)
|
|
4725
|
+
Completed 200 OK in 10.1ms (Views: 8.8ms | ActiveRecord: 0.1ms)
|
|
4726
|
+
Processing by PostsController#index as HTML
|
|
4727
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4728
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4729
|
+
Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
|
4730
|
+
Processing by PostsController#index as HTML
|
|
4731
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4732
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
4733
|
+
Completed 200 OK in 4.8ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
|
4734
|
+
Processing by PostsController#index as HTML
|
|
4735
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4736
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4737
|
+
Completed 200 OK in 4.4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
|
4738
|
+
Processing by PostsController#new as HTML
|
|
4739
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4740
|
+
Rendered posts/_form.html.erb (9.9ms)
|
|
4741
|
+
Completed 200 OK in 18.4ms (Views: 14.7ms | ActiveRecord: 0.0ms)
|
|
4742
|
+
Processing by PostsController#new as HTML
|
|
4743
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4744
|
+
Rendered posts/_form.html.erb (1.6ms)
|
|
4745
|
+
Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
|
4746
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4747
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4748
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4749
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4750
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4751
|
+
Processing by PostsController#index as HTML
|
|
4752
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4753
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4754
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.3ms)
|
|
4755
|
+
Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 1.2ms)
|
|
4756
|
+
Processing by PostsController#index as HTML
|
|
4757
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4758
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4759
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
|
4760
|
+
Processing by PostsController#index as HTML
|
|
4761
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4762
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4763
|
+
Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.2ms)
|
|
4764
|
+
Processing by PostsController#index as HTML
|
|
4765
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4766
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4767
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
4768
|
+
Processing by PostsController#new as HTML
|
|
4769
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4770
|
+
Rendered posts/_form.html.erb (16.3ms)
|
|
4771
|
+
Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.3ms)
|
|
4772
|
+
Processing by PostsController#new as HTML
|
|
4773
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4774
|
+
Rendered posts/_form.html.erb (1.8ms)
|
|
4775
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
4776
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4777
|
+
[1m[35m (5.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4778
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
4779
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
4780
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4781
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
|
4782
|
+
Processing by PostsController#index as HTML
|
|
4783
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4784
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4785
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (6.1ms)
|
|
4786
|
+
Completed 200 OK in 36ms (Views: 33.0ms | ActiveRecord: 1.2ms)
|
|
4787
|
+
Processing by PostsController#index as HTML
|
|
4788
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4789
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4790
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
|
4791
|
+
Processing by PostsController#index as HTML
|
|
4792
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4793
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4794
|
+
Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.1ms)
|
|
4795
|
+
Processing by PostsController#index as HTML
|
|
4796
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4797
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4798
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
|
4799
|
+
Processing by PostsController#new as HTML
|
|
4800
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4801
|
+
Rendered posts/_form.html.erb (16.9ms)
|
|
4802
|
+
Completed 200 OK in 45ms (Views: 43.5ms | ActiveRecord: 0.3ms)
|
|
4803
|
+
Processing by PostsController#new as HTML
|
|
4804
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4805
|
+
Rendered posts/_form.html.erb (1.9ms)
|
|
4806
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
4807
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4808
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4809
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4810
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4811
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4812
|
+
Processing by PostsController#index as HTML
|
|
4813
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4814
|
+
[1m[36mPost Load (1.2ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4815
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.3ms)
|
|
4816
|
+
Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 1.2ms)
|
|
4817
|
+
Processing by PostsController#index as HTML
|
|
4818
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4819
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4820
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
|
|
4821
|
+
Processing by PostsController#index as HTML
|
|
4822
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4823
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4824
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms)
|
|
4825
|
+
Processing by PostsController#index as HTML
|
|
4826
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4827
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4828
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
|
4829
|
+
Processing by PostsController#new as HTML
|
|
4830
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4831
|
+
Rendered posts/_form.html.erb (16.7ms)
|
|
4832
|
+
Completed 200 OK in 30ms (Views: 29.0ms | ActiveRecord: 0.2ms)
|
|
4833
|
+
Processing by PostsController#new as HTML
|
|
4834
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4835
|
+
Rendered posts/_form.html.erb (2.0ms)
|
|
4836
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
4837
|
+
Connecting to database specified by database.yml
|
|
4838
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
4839
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
4840
|
+
[1m[36m (0.9ms)[0m [1mDROP TABLE "posts"[0m
|
|
4841
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
|
4842
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4843
|
+
Connecting to database specified by database.yml
|
|
4844
|
+
Processing by PostsController#index as HTML
|
|
4845
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4846
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
4847
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
|
|
4848
|
+
Completed 200 OK in 13.3ms (Views: 12.0ms | ActiveRecord: 0.1ms)
|
|
4849
|
+
Processing by PostsController#index as HTML
|
|
4850
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4851
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4852
|
+
Completed 200 OK in 4.8ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
|
4853
|
+
Processing by PostsController#index as HTML
|
|
4854
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4855
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
4856
|
+
Completed 200 OK in 4.6ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
|
4857
|
+
Processing by PostsController#index as HTML
|
|
4858
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4859
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4860
|
+
Completed 200 OK in 4.4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
|
4861
|
+
Processing by PostsController#new as HTML
|
|
4862
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4863
|
+
Rendered posts/_form.html.erb (13.2ms)
|
|
4864
|
+
Completed 200 OK in 23.0ms (Views: 19.3ms | ActiveRecord: 0.0ms)
|
|
4865
|
+
Processing by PostsController#new as HTML
|
|
4866
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4867
|
+
Rendered posts/_form.html.erb (1.6ms)
|
|
4868
|
+
Completed 200 OK in 3.0ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
4869
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4870
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4871
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4872
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4873
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4874
|
+
Processing by PostsController#index as HTML
|
|
4875
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4876
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4877
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.6ms)
|
|
4878
|
+
Completed 200 OK in 25ms (Views: 22.6ms | ActiveRecord: 1.0ms)
|
|
4879
|
+
Processing by PostsController#index as HTML
|
|
4880
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4881
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4882
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
|
4883
|
+
Processing by PostsController#index as HTML
|
|
4884
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4885
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4886
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms)
|
|
4887
|
+
Processing by PostsController#index as HTML
|
|
4888
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4889
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4890
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
4891
|
+
Processing by PostsController#new as HTML
|
|
4892
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4893
|
+
Rendered posts/_form.html.erb (18.6ms)
|
|
4894
|
+
Completed 200 OK in 40ms (Views: 38.7ms | ActiveRecord: 0.3ms)
|
|
4895
|
+
Processing by PostsController#new as HTML
|
|
4896
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4897
|
+
Rendered posts/_form.html.erb (1.7ms)
|
|
4898
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
|
4899
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4900
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4901
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4902
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4903
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4904
|
+
Processing by PostsController#index as HTML
|
|
4905
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4906
|
+
[1m[36mPost Load (1.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4907
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (9.7ms)
|
|
4908
|
+
Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 1.1ms)
|
|
4909
|
+
Processing by PostsController#index as HTML
|
|
4910
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4911
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4912
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
|
4913
|
+
Processing by PostsController#index as HTML
|
|
4914
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4915
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4916
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.1ms)
|
|
4917
|
+
Processing by PostsController#index as HTML
|
|
4918
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4919
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4920
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
|
4921
|
+
Processing by PostsController#new as HTML
|
|
4922
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4923
|
+
Rendered posts/_form.html.erb (12.8ms)
|
|
4924
|
+
Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.3ms)
|
|
4925
|
+
Processing by PostsController#new as HTML
|
|
4926
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4927
|
+
Rendered posts/_form.html.erb (1.6ms)
|
|
4928
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
4929
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4930
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4931
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
|
4932
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
4933
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4934
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
|
|
4935
|
+
Processing by PostsController#index as HTML
|
|
4936
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4937
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4938
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.2ms)
|
|
4939
|
+
Completed 200 OK in 23ms (Views: 19.7ms | ActiveRecord: 1.0ms)
|
|
4940
|
+
Processing by PostsController#index as HTML
|
|
4941
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4942
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4943
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.2ms)
|
|
4944
|
+
Processing by PostsController#index as HTML
|
|
4945
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4946
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4947
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)
|
|
4948
|
+
Processing by PostsController#index as HTML
|
|
4949
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4950
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4951
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
|
4952
|
+
Processing by PostsController#new as HTML
|
|
4953
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4954
|
+
Rendered posts/_form.html.erb (12.4ms)
|
|
4955
|
+
Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.3ms)
|
|
4956
|
+
Processing by PostsController#new as HTML
|
|
4957
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4958
|
+
Rendered posts/_form.html.erb (1.9ms)
|
|
4959
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
4960
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) [0m
|
|
4961
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
4962
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4963
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
4964
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20131120082307')[0m
|
|
4965
|
+
Processing by PostsController#index as HTML
|
|
4966
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4967
|
+
[1m[36mPost Load (1.0ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4968
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.2ms)
|
|
4969
|
+
Completed 200 OK in 34ms (Views: 23.6ms | ActiveRecord: 1.0ms)
|
|
4970
|
+
Processing by PostsController#index as HTML
|
|
4971
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4972
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts"
|
|
4973
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
|
4974
|
+
Processing by PostsController#index as HTML
|
|
4975
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4976
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts"[0m
|
|
4977
|
+
Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.1ms)
|
|
4978
|
+
Processing by PostsController#index as HTML
|
|
4979
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4980
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
4981
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
4982
|
+
Processing by PostsController#new as HTML
|
|
4983
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4984
|
+
Rendered posts/_form.html.erb (20.7ms)
|
|
4985
|
+
Completed 200 OK in 42ms (Views: 41.1ms | ActiveRecord: 0.2ms)
|
|
4986
|
+
Processing by PostsController#new as HTML
|
|
4987
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
4988
|
+
Rendered posts/_form.html.erb (1.9ms)
|
|
4989
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
4990
|
+
Connecting to database specified by database.yml
|
|
4991
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
4992
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
4993
|
+
[1m[36m (1.3ms)[0m [1mDROP TABLE "posts"[0m
|
|
4994
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
|
|
4995
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
4996
|
+
Connecting to database specified by database.yml
|
|
4997
|
+
Processing by PostsController#index as HTML
|
|
4998
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
4999
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
5000
|
+
Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
|
|
5001
|
+
Completed 200 OK in 13.4ms (Views: 11.9ms | ActiveRecord: 0.1ms)
|
|
5002
|
+
Processing by PostsController#index as HTML
|
|
5003
|
+
Parameters: {"theme"=>"professional_blue"}
|
|
5004
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
5005
|
+
Completed 200 OK in 4.9ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
|
5006
|
+
Processing by PostsController#index as HTML
|
|
5007
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
5008
|
+
[1m[36mPost Load (0.1ms)[0m [1mSELECT "posts".* FROM "posts" [0m
|
|
5009
|
+
Completed 200 OK in 4.5ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
|
5010
|
+
Processing by PostsController#index as HTML
|
|
5011
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
5012
|
+
[1m[35mPost Load (0.1ms)[0m SELECT "posts".* FROM "posts"
|
|
5013
|
+
Completed 200 OK in 4.2ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
|
5014
|
+
Processing by PostsController#new as HTML
|
|
5015
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
5016
|
+
Rendered posts/_form.html.erb (8.4ms)
|
|
5017
|
+
Completed 200 OK in 21.6ms (Views: 18.1ms | ActiveRecord: 0.0ms)
|
|
5018
|
+
Processing by PostsController#new as HTML
|
|
5019
|
+
Parameters: {"theme"=>"basic_blue"}
|
|
5020
|
+
Rendered posts/_form.html.erb (7.9ms)
|
|
5021
|
+
Completed 200 OK in 9.6ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: themes_on_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chamnap Chhorn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|