blamescope 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f0301896ebca21df7ef26fb732142ffe3ad8f3d
4
- data.tar.gz: ebbe482c0b14d987baa3e9341eaffdc484c417e8
3
+ metadata.gz: 833c53e084752b18bc3f48372df581c33f2a519c
4
+ data.tar.gz: 7a7fa706f8dc4c4e74e9885d48d4a34bab682147
5
5
  SHA512:
6
- metadata.gz: 387c2232c674bec8635d2cdacedd89f9353b52373f9aeb931c827d6f40962a33d20d949024d31a824c4741f1acd4cd3a9301ad9491eef9b102b4c7f3218ac679
7
- data.tar.gz: 623534cec783f7fd61e99786005566e6cf0beadc52b6d1081a0677ff062a43dea2fe2c5abc0c2fb00c66ce2560b682c4f1447fce7736d31899ccf825142d1260
6
+ metadata.gz: fe47b8e3793db20091bd21fda8769d74f5b0c3cc6b6454bcd6f447e8dfec5f4bf39a2c6c9708457f445231f2d6c1b723a36d38181be2cf4c248a3392c90a0c77
7
+ data.tar.gz: 732dd5d3fe9f8c61742735f9f58ba98c1966b613fd6ffab8c9d31946ac63c59bae9e8b6b02dd48ad24cae2f9de9bfe0db30d4f0b69930446de8095f14a59cc40
@@ -11,7 +11,7 @@ module Blamescope
11
11
  email character varying(255),
12
12
  action character varying(255),
13
13
  model character varying(255),
14
- attributes json,
14
+ attrs json,
15
15
  created_at timestamp without time zone,
16
16
  CONSTRAINT blamescope_pkey PRIMARY KEY (id)
17
17
  );
@@ -72,7 +72,7 @@ module Blamescope
72
72
  params[:port] = config.port if config.port
73
73
  conn = PG.connect(params)
74
74
  conn.exec(TABLE_QUERY)
75
- conn.prepare("insert_event", "INSERT INTO blamescope (email, action, model, attributes, created_at)
75
+ conn.prepare("insert_event", "INSERT INTO blamescope (email, action, model, attrs, created_at)
76
76
  VALUES ($1, $2, $3, $4, $5)")
77
77
  return conn
78
78
  end
@@ -1,3 +1,3 @@
1
1
  module Blamescope
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blamescope
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Volodymyr Ladnik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-21 00:00:00.000000000 Z
11
+ date: 2014-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bunny
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.2.2
158
+ rubygems_version: 2.0.3
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: Track events per user