pliable 0.1.0 → 0.2.0
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.
- data/.bundle/install.log +0 -261
- data/.coveralls.yml +1 -0
- data/.gitignore +17 -0
- data/.travis.yml +3 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +21 -3
- data/README.md +17 -26
- data/lib/pliable/ply.rb +15 -2
- data/lib/pliable/version.rb +1 -1
- data/pliable.gemspec +2 -2
- data/spec/dummy/.gitignore +16 -0
- data/spec/dummy/log/development.log +0 -9
- data/spec/dummy/log/test.log +2540 -71
- data/spec/dummy/spec/pliable_integartion_spec.rb +1 -0
- data/spec/spec_helper.rb +3 -0
- metadata +10 -8
- data/spec/dummy/spec/models/fake_ply_test.rb +0 -12
data/pliable.gemspec
CHANGED
|
@@ -18,10 +18,10 @@ Gem::Specification.new do |gem|
|
|
|
18
18
|
gem.require_paths = ['lib']
|
|
19
19
|
|
|
20
20
|
gem.add_runtime_dependency "rails", ">= 4.0"
|
|
21
|
-
gem.add_runtime_dependency "pg"
|
|
21
|
+
gem.add_runtime_dependency "pg", ">= 0.17"
|
|
22
22
|
|
|
23
23
|
gem.add_development_dependency 'bundler', '~> 1.0'
|
|
24
|
-
gem.add_development_dependency 'rake', '
|
|
24
|
+
gem.add_development_dependency 'rake', '>= 0.8'
|
|
25
25
|
gem.add_development_dependency 'minitest', ">= 4.7.5"
|
|
26
26
|
gem.add_development_dependency 'mocha', "~> 1.0.0"
|
|
27
27
|
gem.add_development_dependency 'pry', "~> 0.9.12"
|
|
@@ -52,12 +52,3 @@ DETAIL: There is 1 other session using the database.
|
|
|
52
52
|
[1m[36mSQL (0.4ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
|
53
53
|
[1m[35m (7.0ms)[0m CREATE TABLE "plies" ("id" serial primary key, "user_id" integer, "oid" character varying(255), "otype" character varying(255), "data" json, "last_modified" timestamp, "last_checked" timestamp, "created_at" timestamp, "updated_at" timestamp)
|
|
54
54
|
[1m[36m (3.2ms)[0m [1mCREATE TABLE "ply_relations" ("id" serial primary key, "parent_id" integer, "parent_type" character varying(255), "child_id" integer, "child_type" character varying(255), "created_at" timestamp, "updated_at" timestamp) [0m
|
|
55
|
-
[1m[36m (5053.2ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
|
56
|
-
PG::ObjectInUse: ERROR: database "dummy_test" is being accessed by other users
|
|
57
|
-
DETAIL: There is 1 other session using the database.
|
|
58
|
-
: DROP DATABASE IF EXISTS "dummy_test"
|
|
59
|
-
[1m[36m (133.4ms)[0m [1mDROP DATABASE IF EXISTS "dummy_test"[0m
|
|
60
|
-
[1m[35m (404.9ms)[0m CREATE DATABASE "dummy_test" ENCODING = 'utf8'
|
|
61
|
-
[1m[36mSQL (1.7ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
|
62
|
-
[1m[35m (7.5ms)[0m CREATE TABLE "plies" ("id" serial primary key, "user_id" integer, "oid" character varying(255), "otype" character varying(255), "data" json, "last_modified" timestamp, "last_checked" timestamp, "created_at" timestamp, "updated_at" timestamp)
|
|
63
|
-
[1m[36m (3.6ms)[0m [1mCREATE TABLE "ply_relations" ("id" serial primary key, "parent_id" integer, "parent_type" character varying(255), "child_id" integer, "child_type" character varying(255), "created_at" timestamp, "updated_at" timestamp) [0m
|