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/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', '~> 0.8'
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"
@@ -0,0 +1,16 @@
1
+ *.gem
2
+ *.rbc
3
+ .DS_Store
4
+ .bundle
5
+ .rvmrc
6
+ .yardoc
7
+ .rake_tasks~
8
+ Gemfile.lock
9
+ coverage/*
10
+ doc/*
11
+ log/*
12
+ pkg/*
13
+ .idea/*
14
+ pg*
15
+ .bundle*
16
+ *.log
@@ -52,12 +52,3 @@ DETAIL: There is 1 other session using the database.
52
52
  SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
53
53
   (7.0ms) 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
   (3.2ms) CREATE 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) 
55
-  (5053.2ms) DROP DATABASE IF EXISTS "dummy_test"
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
-  (133.4ms) DROP DATABASE IF EXISTS "dummy_test"
60
-  (404.9ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
61
- SQL (1.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
62
-  (7.5ms) 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
-  (3.6ms) CREATE 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)