mcfly 0.0.20 → 0.0.21

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: 653de3547c41c9f073883dec130bb219ef3d19bf
4
- data.tar.gz: 9f85fa1fec81d8e4375ad67e262c0bc8618e8aa8
3
+ metadata.gz: b97eea293a94d0623193f3979b1d77f7c4f4f0d8
4
+ data.tar.gz: 55baf38824d3588389fbdb7149c00608d77ad15d
5
5
  SHA512:
6
- metadata.gz: ca1cce82ec4f03030bf1655b196562ad62ccc08de0664dd6056997976df8f35f9b0e975c1fca33f5beeedee6418fbddf9b00132db331564781343e5e2be1f926
7
- data.tar.gz: ee9b6717861484123dab28fd587d5bd74afb6abb0c593d4efbde3c29c91f75d4239003d47a1869eeac2c0524da03a9f1d680971bd6b31c00b8b3bdecfb24e1dd
6
+ metadata.gz: 4f9ceaaea66e7b85b5b7a51faf456f0937f4eb04547ba5389eac0fd10e99ab3954bd21fab72f248d6bcbe9b4367dd15c4ce30d33604bacdc3b78b3e327318a18
7
+ data.tar.gz: 6a55e480a6c1cce4b55637091dc16ab6fde2bef7c0b31ab72d199243f1bfcb88381bb816a621438dfafa5baf2b0604f4901a6c2e3c6f483875015da0b81d073b
data/Gemfile CHANGED
@@ -1,4 +1,8 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in delorean.gemspec
3
+ # Specify your gem's dependencies in mcfly.gemspec
4
4
  gemspec
5
+
6
+ group :development, :test do
7
+ gem 'rspec-instafail', require: false
8
+ end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mcfly (0.0.20)
4
+ mcfly (0.0.21)
5
5
  delorean_lang (~> 0.1)
6
6
  pg (~> 0.17)
7
7
 
@@ -36,7 +36,7 @@ GEM
36
36
  builder (3.2.3)
37
37
  concurrent-ruby (1.0.5)
38
38
  crass (1.0.3)
39
- delorean_lang (0.3.34)
39
+ delorean_lang (0.5.1)
40
40
  activerecord (>= 3.2)
41
41
  treetop (~> 1.5)
42
42
  diff-lcs (1.3)
@@ -68,11 +68,17 @@ GEM
68
68
  rake (>= 0.8.7)
69
69
  thor (>= 0.18.1, < 2.0)
70
70
  rake (12.3.0)
71
+ rspec (3.7.0)
72
+ rspec-core (~> 3.7.0)
73
+ rspec-expectations (~> 3.7.0)
74
+ rspec-mocks (~> 3.7.0)
71
75
  rspec-core (3.7.1)
72
76
  rspec-support (~> 3.7.0)
73
77
  rspec-expectations (3.7.0)
74
78
  diff-lcs (>= 1.2.0, < 2.0)
75
79
  rspec-support (~> 3.7.0)
80
+ rspec-instafail (1.0.0)
81
+ rspec
76
82
  rspec-mocks (3.7.0)
77
83
  diff-lcs (>= 1.2.0, < 2.0)
78
84
  rspec-support (~> 3.7.0)
@@ -87,7 +93,7 @@ GEM
87
93
  rspec-support (3.7.0)
88
94
  thor (0.20.0)
89
95
  thread_safe (0.3.6)
90
- treetop (1.6.9)
96
+ treetop (1.6.10)
91
97
  polyglot (~> 0.3)
92
98
  tzinfo (1.2.4)
93
99
  thread_safe (~> 0.1)
@@ -97,7 +103,8 @@ PLATFORMS
97
103
 
98
104
  DEPENDENCIES
99
105
  mcfly!
106
+ rspec-instafail
100
107
  rspec-rails (~> 3.0)
101
108
 
102
109
  BUNDLED WITH
103
- 1.16.1
110
+ 2.0.1
@@ -20,7 +20,7 @@ BEGIN
20
20
  END IF;
21
21
 
22
22
  -- new_id is a new primary key that we'll use for the obsoleted row.
23
- SELECT nextval('"' || TG_TABLE_NAME || '_id_seq"') INTO new_id;
23
+ SELECT nextval(pg_get_serial_sequence(TG_TABLE_NAME, 'id')) INTO new_id;
24
24
 
25
25
  OLD.id = new_id;
26
26
  OLD.group_id = NEW.id;
@@ -1,3 +1,3 @@
1
1
  module Mcfly
2
- VERSION = "0.0.20"
2
+ VERSION = "0.0.21"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mcfly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.0.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arman Bostani
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-21 00:00:00.000000000 Z
11
+ date: 2019-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg