homesteading_publisher 0.0.11 → 0.1.0

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: db59f2f606b82cd65e8dd857fb4983b657282fd2
4
- data.tar.gz: 66b35c0df2d7f86ab88917f81703c53691ece838
3
+ metadata.gz: a878983dc671a39a788a194b206cf656eabf60d0
4
+ data.tar.gz: 64790cd829f4f135e0e0946d31eb71fe0f073b66
5
5
  SHA512:
6
- metadata.gz: 060928cb947630275cef03fe51503a44fd13da56b77ac2cafdc4ca9b600ca42e12e3dd808ca358fd8759bf738e781c6d8d7a3fc0b883454531679fe8bcc690e4
7
- data.tar.gz: fdbbb3eb8ba87e37f0bb3a9d732956f685ba565940000ae39cdc3863de6da5e18f6f620ee78abc9ac488783df5adda1710ac88daca772deefb70d60114bee665
6
+ metadata.gz: 5d1150a6a03b3124fef176709dea9c74914b002a95d9a24b36d154d42fb8b62b7925b51a8134d31153c8002e17c5be722670ac1c8596f142be7350df5918f87b
7
+ data.tar.gz: 271e009a572b8d96fba146247acee25667429536214ad7ae461c567c2d614ef806134307a4c9f05620f8f36581490634de42a9c31456bf910dd1f4b829e42a8b
data/README.md CHANGED
@@ -10,7 +10,7 @@ A generic Rails Engine that all HS-* post type publisher apps build on top of.
10
10
 
11
11
  ## Current Version
12
12
 
13
- 0.0.10
13
+ 0.1.0
14
14
 
15
15
 
16
16
  ## Installation
@@ -11,11 +11,7 @@ class CreatePosts < ActiveRecord::Migration
11
11
  :location_name,
12
12
  :location_latitude,
13
13
  :location_longitude,
14
- :location_altitude,
15
- :wordpress_url,
16
- :tumblr_url,
17
- :medium_url,
18
- :facebook_url
14
+ :location_altitude
19
15
 
20
16
  t.string :year,
21
17
  :month,
@@ -1,3 +1,3 @@
1
1
  module HomesteadingPublisher
2
- VERSION = "0.0.11"
2
+ VERSION = "0.1.0"
3
3
  end
Binary file
@@ -0,0 +1,58 @@
1
+  (8.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.9ms) 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 CreatePosts (20150107224535)
6
+  (0.1ms) begin transaction
7
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" text, "subtitle" text, "content" text, "in_reply_to" text, "tags" text, "syndication" text, "slug" text, "location_name" text, "location_latitude" text, "location_longitude" text, "location_altitude" text, "wordpress_url" text, "tumblr_url" text, "medium_url" text, "facebook_url" text, "year" varchar, "month" varchar, "day" varchar, "hour" varchar, "minute" varchar, "second" varchar, "private" boolean, "published_at" datetime, "created_at" datetime, "updated_at" datetime)
8
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150107224535"]]
9
+  (0.9ms) commit transaction
10
+ Migrating to CreateSettings (20150108001754)
11
+  (0.1ms) begin transaction
12
+  (0.3ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "key" varchar, "content" text, "editable" boolean DEFAULT 't', "created_at" datetime, "updated_at" datetime)
13
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150108001754"]]
14
+  (0.7ms) commit transaction
15
+ Migrating to CreateLicenses (20150108001809)
16
+  (0.1ms) begin transaction
17
+  (0.3ms) CREATE TABLE "licenses" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "short_code" varchar, "description" text, "url" text, "created_at" datetime, "updated_at" datetime)
18
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150108001809"]]
19
+  (0.7ms) commit transaction
20
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+  (0.1ms) begin transaction
24
+  (0.1ms) SAVEPOINT active_record_1
25
+ SQL (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at", "published_at", "year", "month", "day", "hour", "minute", "second", "slug") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "Post Test"], ["created_at", "2015-01-08 04:49:01.944099"], ["updated_at", "2015-01-08 04:49:01.944099"], ["published_at", "2015-01-08 04:49:01.944431"], ["year", "2015"], ["month", "01"], ["day", "08"], ["hour", "04"], ["minute", "49"], ["second", "01"], ["slug", "post-test"]]
26
+  (0.0ms) RELEASE SAVEPOINT active_record_1
27
+  (8.4ms) rollback transaction
28
+  (0.3ms) begin transaction
29
+  (0.1ms) SAVEPOINT active_record_1
30
+ SQL (0.6ms) INSERT INTO "licenses" ("name", "short_code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "License Name"], ["short_code", "LN"], ["created_at", "2015-01-08 04:49:01.970505"], ["updated_at", "2015-01-08 04:49:01.970505"]]
31
+  (0.1ms) RELEASE SAVEPOINT active_record_1
32
+ License Load (0.2ms) SELECT "licenses".* FROM "licenses"
33
+  (1.0ms) rollback transaction
34
+  (0.1ms) begin transaction
35
+  (0.1ms) SAVEPOINT active_record_1
36
+ SQL (0.4ms) INSERT INTO "settings" ("name", "content", "created_at", "updated_at", "key") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["content", "t"], ["created_at", "2015-01-08 04:49:01.984152"], ["updated_at", "2015-01-08 04:49:01.984152"], ["key", "test"]]
37
+  (0.1ms) RELEASE SAVEPOINT active_record_1
38
+  (0.4ms) rollback transaction
39
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
43
+  (0.1ms) begin transaction
44
+  (0.1ms) SAVEPOINT active_record_1
45
+ SQL (0.4ms) INSERT INTO "settings" ("name", "content", "created_at", "updated_at", "key") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["content", "t"], ["created_at", "2015-01-08 04:49:08.161553"], ["updated_at", "2015-01-08 04:49:08.161553"], ["key", "test"]]
46
+  (0.1ms) RELEASE SAVEPOINT active_record_1
47
+  (8.5ms) rollback transaction
48
+  (0.2ms) begin transaction
49
+  (0.1ms) SAVEPOINT active_record_1
50
+ SQL (0.4ms) INSERT INTO "posts" ("title", "created_at", "updated_at", "published_at", "year", "month", "day", "hour", "minute", "second", "slug") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["title", "Post Test"], ["created_at", "2015-01-08 04:49:08.219117"], ["updated_at", "2015-01-08 04:49:08.219117"], ["published_at", "2015-01-08 04:49:08.219395"], ["year", "2015"], ["month", "01"], ["day", "08"], ["hour", "04"], ["minute", "49"], ["second", "08"], ["slug", "post-test"]]
51
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52
+  (0.5ms) rollback transaction
53
+  (0.2ms) begin transaction
54
+  (0.1ms) SAVEPOINT active_record_1
55
+ SQL (0.3ms) INSERT INTO "licenses" ("name", "short_code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "License Name"], ["short_code", "LN"], ["created_at", "2015-01-08 04:49:08.234529"], ["updated_at", "2015-01-08 04:49:08.234529"]]
56
+  (0.1ms) RELEASE SAVEPOINT active_record_1
57
+ License Load (0.1ms) SELECT "licenses".* FROM "licenses"
58
+  (0.5ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: homesteading_publisher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shane Becker
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-01-09 00:00:00.000000000 Z
12
+ date: 2015-01-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -153,6 +153,8 @@ files:
153
153
  - spec/dummy/config/routes.rb
154
154
  - spec/dummy/config/secrets.yml
155
155
  - spec/dummy/db/schema.rb
156
+ - spec/dummy/db/test.sqlite3
157
+ - spec/dummy/log/test.log
156
158
  - spec/dummy/public/404.html
157
159
  - spec/dummy/public/422.html
158
160
  - spec/dummy/public/500.html
@@ -219,6 +221,8 @@ test_files:
219
221
  - spec/dummy/config/secrets.yml
220
222
  - spec/dummy/config.ru
221
223
  - spec/dummy/db/schema.rb
224
+ - spec/dummy/db/test.sqlite3
225
+ - spec/dummy/log/test.log
222
226
  - spec/dummy/public/404.html
223
227
  - spec/dummy/public/422.html
224
228
  - spec/dummy/public/500.html