fx 0.4.0 → 0.5.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
  SHA256:
3
- metadata.gz: 4b2ed07756db1d26e35994559994635b2e5bc1e807eda6eb4b132442a3b561ea
4
- data.tar.gz: c5d60d5200347b5fc5cdf5b18d232b0662b2f92926cfb816f4bb4a36206c9bb3
3
+ metadata.gz: 0f93c422563a987d0fe73c448281d14f34380b5eb8fd90b1673083f72497746f
4
+ data.tar.gz: 0ef187b03d6dc9fd3930744adff67f8b7275cc9a75b0d13195c190d4050821fd
5
5
  SHA512:
6
- metadata.gz: ac363c781155605fc98eac9649d5e49fc3e5a0412ef50f4195e8fa37dcf7bf58d9ac89625e7dd8e482e4ebafc0fbcdc447f7a3d5c97cb2813c6d1a60727e2f1a
7
- data.tar.gz: db5c222c9de3b758dbdd21f725cd5740b8ecfe1571ee761de7385cb4e73ec77f8f02284c95b2b115dbf62906d2fa2d6613c6f39535cdef3e62cf1d3419c36765
6
+ metadata.gz: 720481484ebb0d87e0b1f18d95a0eb73aa3675b847f302218c942433d8c037170fd2f3ca7c5b32336d3ef4c284faf1d768b7a0064eed7918d3b130b08bb6c2e7
7
+ data.tar.gz: 84e37e4a184a75b62d332b882bb759c9561938a8988fe5375581562c258a85e23c1b94c128265757e7010a5ecbc2b2dad1e10cd9e0eb8ae4c4184523cb4fb85e
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  /.bundle/
2
+ /gemfiles/*.gemfile.lock
2
3
  /.yardoc
3
4
  /Gemfile.lock
4
5
  /_yardoc/
@@ -15,18 +15,20 @@ language:
15
15
  notifications:
16
16
  email: false
17
17
  rvm:
18
- - 2.3.1
19
- - 2.2.6
20
- - 2.1.10
18
+ - 2.6
19
+ - 2.5
20
+ - 2.4
21
21
  gemfile:
22
- - gemfiles/rails40.gemfile
23
- - gemfiles/rails41.gemfile
24
22
  - gemfiles/rails42.gemfile
25
23
  - gemfiles/rails50.gemfile
24
+ - gemfiles/rails51.gemfile
25
+ - gemfiles/rails52.gemfile
26
26
  - gemfiles/rails_edge.gemfile
27
27
  matrix:
28
28
  allow_failures:
29
29
  - gemfile: gemfiles/rails_edge.gemfile
30
+ - gemfile: gemfiles/rails40.gemfile
31
+ - gemfile: gemfiles/rails41.gemfile
30
32
  exclude:
31
- - rvm: 2.1.10
32
- gemfile: gemfiles/rails50.gemfile
33
+ - rvm: 2.4
34
+ gemfile: gemfiles/rails_edge.gemfile
data/Appraisals CHANGED
@@ -1,16 +1,7 @@
1
- appraise "rails40" do
2
- gem "activerecord", "~> 4.0.0"
3
- gem "railties", "~> 4.0.0"
4
- end
5
-
6
- appraise "rails41" do
7
- gem "activerecord", "~> 4.1.0"
8
- gem "railties", "~> 4.1.0"
9
- end
10
-
11
1
  appraise "rails42" do
12
2
  gem "activerecord", "~> 4.2.0"
13
3
  gem "railties", "~> 4.2.0"
4
+ gem "pg", "~> 0.15"
14
5
  end
15
6
 
16
7
  if RUBY_VERSION > "2.2.0"
@@ -19,6 +10,16 @@ if RUBY_VERSION > "2.2.0"
19
10
  gem "railties", "~> 5.0"
20
11
  end
21
12
 
13
+ appraise "rails51" do
14
+ gem "activerecord", "~> 5.1"
15
+ gem "railties", "~> 5.1"
16
+ end
17
+
18
+ appraise "rails52" do
19
+ gem "activerecord", "~> 5.2"
20
+ gem "railties", "~> 5.2"
21
+ end
22
+
22
23
  appraise "rails-edge" do
23
24
  gem "rails", github: "rails/rails"
24
25
  gem "arel", :github => "rails/arel"
@@ -4,5 +4,6 @@ source "https://rubygems.org"
4
4
 
5
5
  gem "activerecord", "~> 4.2.0"
6
6
  gem "railties", "~> 4.2.0"
7
+ gem "pg", "~> 0.15"
7
8
 
8
9
  gemspec path: "../"
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "~> 4.0.0"
6
- gem "railties", "~> 4.0.0"
5
+ gem "activerecord", "~> 5.1"
6
+ gem "railties", "~> 5.1"
7
7
 
8
8
  gemspec path: "../"
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "activerecord", "~> 4.1.0"
6
- gem "railties", "~> 4.1.0"
5
+ gem "activerecord", "~> 5.2"
6
+ gem "railties", "~> 5.2"
7
7
 
8
8
  gemspec path: "../"
@@ -1,4 +1,4 @@
1
1
  module Fx
2
2
  # @api private
3
- VERSION = "0.4.0"
3
+ VERSION = "0.5.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Teo Ljungberg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-24 00:00:00.000000000 Z
11
+ date: 2019-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appraisal
@@ -205,16 +205,11 @@ files:
205
205
  - bin/setup
206
206
  - bin/yard
207
207
  - fx.gemspec
208
- - gemfiles/rails40.gemfile
209
- - gemfiles/rails40.gemfile.lock
210
- - gemfiles/rails41.gemfile
211
- - gemfiles/rails41.gemfile.lock
212
208
  - gemfiles/rails42.gemfile
213
- - gemfiles/rails42.gemfile.lock
214
209
  - gemfiles/rails50.gemfile
215
- - gemfiles/rails50.gemfile.lock
210
+ - gemfiles/rails51.gemfile
211
+ - gemfiles/rails52.gemfile
216
212
  - gemfiles/rails_edge.gemfile
217
- - gemfiles/rails_edge.gemfile.lock
218
213
  - lib/fx.rb
219
214
  - lib/fx/adapters/postgres.rb
220
215
  - lib/fx/adapters/postgres/connection.rb
@@ -1,111 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- fx (0.4.0)
5
- activerecord (>= 4.0.0)
6
- railties (>= 4.0.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (4.0.13)
12
- activesupport (= 4.0.13)
13
- builder (~> 3.1.0)
14
- erubis (~> 2.7.0)
15
- rack (~> 1.5.2)
16
- rack-test (~> 0.6.2)
17
- activemodel (4.0.13)
18
- activesupport (= 4.0.13)
19
- builder (~> 3.1.0)
20
- activerecord (4.0.13)
21
- activemodel (= 4.0.13)
22
- activerecord-deprecated_finders (~> 1.0.2)
23
- activesupport (= 4.0.13)
24
- arel (~> 4.0.0)
25
- activerecord-deprecated_finders (1.0.4)
26
- activesupport (4.0.13)
27
- i18n (~> 0.6, >= 0.6.9)
28
- minitest (~> 4.2)
29
- multi_json (~> 1.3)
30
- thread_safe (~> 0.1)
31
- tzinfo (~> 0.3.37)
32
- ammeter (1.1.4)
33
- activesupport (>= 3.0)
34
- railties (>= 3.0)
35
- rspec-rails (>= 2.2)
36
- appraisal (2.1.0)
37
- bundler
38
- rake
39
- thor (>= 0.14.0)
40
- arel (4.0.2)
41
- builder (3.1.4)
42
- coderay (1.1.1)
43
- database_cleaner (1.5.3)
44
- diff-lcs (1.3)
45
- erubis (2.7.0)
46
- i18n (0.7.0)
47
- method_source (0.8.2)
48
- minitest (4.7.5)
49
- multi_json (1.12.1)
50
- pg (0.19.0)
51
- pry (0.10.4)
52
- coderay (~> 1.1.0)
53
- method_source (~> 0.8.1)
54
- slop (~> 3.4)
55
- rack (1.5.5)
56
- rack-test (0.6.3)
57
- rack (>= 1.0)
58
- railties (4.0.13)
59
- actionpack (= 4.0.13)
60
- activesupport (= 4.0.13)
61
- rake (>= 0.8.7)
62
- thor (>= 0.18.1, < 2.0)
63
- rake (12.0.0)
64
- redcarpet (3.4.0)
65
- rspec (3.5.0)
66
- rspec-core (~> 3.5.0)
67
- rspec-expectations (~> 3.5.0)
68
- rspec-mocks (~> 3.5.0)
69
- rspec-core (3.5.4)
70
- rspec-support (~> 3.5.0)
71
- rspec-expectations (3.5.0)
72
- diff-lcs (>= 1.2.0, < 2.0)
73
- rspec-support (~> 3.5.0)
74
- rspec-mocks (3.5.0)
75
- diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.5.0)
77
- rspec-rails (3.5.2)
78
- actionpack (>= 3.0)
79
- activesupport (>= 3.0)
80
- railties (>= 3.0)
81
- rspec-core (~> 3.5.0)
82
- rspec-expectations (~> 3.5.0)
83
- rspec-mocks (~> 3.5.0)
84
- rspec-support (~> 3.5.0)
85
- rspec-support (3.5.0)
86
- slop (3.6.0)
87
- thor (0.19.4)
88
- thread_safe (0.3.5)
89
- tzinfo (0.3.52)
90
- yard (0.9.8)
91
-
92
- PLATFORMS
93
- ruby
94
-
95
- DEPENDENCIES
96
- activerecord (~> 4.0.0)
97
- ammeter (>= 1.1.3)
98
- appraisal
99
- bundler (>= 1.5)
100
- database_cleaner
101
- fx!
102
- pg
103
- pry
104
- railties (~> 4.0.0)
105
- rake
106
- redcarpet
107
- rspec (>= 3.3)
108
- yard
109
-
110
- BUNDLED WITH
111
- 1.17.3
@@ -1,113 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- fx (0.4.0)
5
- activerecord (>= 4.0.0)
6
- railties (>= 4.0.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (4.1.16)
12
- actionview (= 4.1.16)
13
- activesupport (= 4.1.16)
14
- rack (~> 1.5.2)
15
- rack-test (~> 0.6.2)
16
- actionview (4.1.16)
17
- activesupport (= 4.1.16)
18
- builder (~> 3.1)
19
- erubis (~> 2.7.0)
20
- activemodel (4.1.16)
21
- activesupport (= 4.1.16)
22
- builder (~> 3.1)
23
- activerecord (4.1.16)
24
- activemodel (= 4.1.16)
25
- activesupport (= 4.1.16)
26
- arel (~> 5.0.0)
27
- activesupport (4.1.16)
28
- i18n (~> 0.6, >= 0.6.9)
29
- json (~> 1.7, >= 1.7.7)
30
- minitest (~> 5.1)
31
- thread_safe (~> 0.1)
32
- tzinfo (~> 1.1)
33
- ammeter (1.1.4)
34
- activesupport (>= 3.0)
35
- railties (>= 3.0)
36
- rspec-rails (>= 2.2)
37
- appraisal (2.1.0)
38
- bundler
39
- rake
40
- thor (>= 0.14.0)
41
- arel (5.0.1.20140414130214)
42
- builder (3.2.3)
43
- coderay (1.1.1)
44
- database_cleaner (1.5.3)
45
- diff-lcs (1.3)
46
- erubis (2.7.0)
47
- i18n (0.7.0)
48
- json (1.8.6)
49
- method_source (0.8.2)
50
- minitest (5.10.1)
51
- pg (0.19.0)
52
- pry (0.10.4)
53
- coderay (~> 1.1.0)
54
- method_source (~> 0.8.1)
55
- slop (~> 3.4)
56
- rack (1.5.5)
57
- rack-test (0.6.3)
58
- rack (>= 1.0)
59
- railties (4.1.16)
60
- actionpack (= 4.1.16)
61
- activesupport (= 4.1.16)
62
- rake (>= 0.8.7)
63
- thor (>= 0.18.1, < 2.0)
64
- rake (12.0.0)
65
- redcarpet (3.4.0)
66
- rspec (3.5.0)
67
- rspec-core (~> 3.5.0)
68
- rspec-expectations (~> 3.5.0)
69
- rspec-mocks (~> 3.5.0)
70
- rspec-core (3.5.4)
71
- rspec-support (~> 3.5.0)
72
- rspec-expectations (3.5.0)
73
- diff-lcs (>= 1.2.0, < 2.0)
74
- rspec-support (~> 3.5.0)
75
- rspec-mocks (3.5.0)
76
- diff-lcs (>= 1.2.0, < 2.0)
77
- rspec-support (~> 3.5.0)
78
- rspec-rails (3.5.2)
79
- actionpack (>= 3.0)
80
- activesupport (>= 3.0)
81
- railties (>= 3.0)
82
- rspec-core (~> 3.5.0)
83
- rspec-expectations (~> 3.5.0)
84
- rspec-mocks (~> 3.5.0)
85
- rspec-support (~> 3.5.0)
86
- rspec-support (3.5.0)
87
- slop (3.6.0)
88
- thor (0.19.4)
89
- thread_safe (0.3.5)
90
- tzinfo (1.2.2)
91
- thread_safe (~> 0.1)
92
- yard (0.9.8)
93
-
94
- PLATFORMS
95
- ruby
96
-
97
- DEPENDENCIES
98
- activerecord (~> 4.1.0)
99
- ammeter (>= 1.1.3)
100
- appraisal
101
- bundler (>= 1.5)
102
- database_cleaner
103
- fx!
104
- pg
105
- pry
106
- railties (~> 4.1.0)
107
- rake
108
- redcarpet
109
- rspec (>= 3.3)
110
- yard
111
-
112
- BUNDLED WITH
113
- 1.17.3
@@ -1,130 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- fx (0.4.0)
5
- activerecord (>= 4.0.0)
6
- railties (>= 4.0.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (4.2.7.1)
12
- actionview (= 4.2.7.1)
13
- activesupport (= 4.2.7.1)
14
- rack (~> 1.6)
15
- rack-test (~> 0.6.2)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
- actionview (4.2.7.1)
19
- activesupport (= 4.2.7.1)
20
- builder (~> 3.1)
21
- erubis (~> 2.7.0)
22
- rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- activemodel (4.2.7.1)
25
- activesupport (= 4.2.7.1)
26
- builder (~> 3.1)
27
- activerecord (4.2.7.1)
28
- activemodel (= 4.2.7.1)
29
- activesupport (= 4.2.7.1)
30
- arel (~> 6.0)
31
- activesupport (4.2.7.1)
32
- i18n (~> 0.7)
33
- json (~> 1.7, >= 1.7.7)
34
- minitest (~> 5.1)
35
- thread_safe (~> 0.3, >= 0.3.4)
36
- tzinfo (~> 1.1)
37
- ammeter (1.1.4)
38
- activesupport (>= 3.0)
39
- railties (>= 3.0)
40
- rspec-rails (>= 2.2)
41
- appraisal (2.1.0)
42
- bundler
43
- rake
44
- thor (>= 0.14.0)
45
- arel (6.0.4)
46
- builder (3.2.3)
47
- coderay (1.1.1)
48
- database_cleaner (1.5.3)
49
- diff-lcs (1.3)
50
- erubis (2.7.0)
51
- i18n (0.7.0)
52
- json (1.8.6)
53
- loofah (2.0.3)
54
- nokogiri (>= 1.5.9)
55
- method_source (0.8.2)
56
- mini_portile2 (2.1.0)
57
- minitest (5.10.1)
58
- nokogiri (1.7.0.1)
59
- mini_portile2 (~> 2.1.0)
60
- pg (0.19.0)
61
- pry (0.10.4)
62
- coderay (~> 1.1.0)
63
- method_source (~> 0.8.1)
64
- slop (~> 3.4)
65
- rack (1.6.5)
66
- rack-test (0.6.3)
67
- rack (>= 1.0)
68
- rails-deprecated_sanitizer (1.0.3)
69
- activesupport (>= 4.2.0.alpha)
70
- rails-dom-testing (1.0.8)
71
- activesupport (>= 4.2.0.beta, < 5.0)
72
- nokogiri (~> 1.6)
73
- rails-deprecated_sanitizer (>= 1.0.1)
74
- rails-html-sanitizer (1.0.3)
75
- loofah (~> 2.0)
76
- railties (4.2.7.1)
77
- actionpack (= 4.2.7.1)
78
- activesupport (= 4.2.7.1)
79
- rake (>= 0.8.7)
80
- thor (>= 0.18.1, < 2.0)
81
- rake (12.0.0)
82
- redcarpet (3.4.0)
83
- rspec (3.5.0)
84
- rspec-core (~> 3.5.0)
85
- rspec-expectations (~> 3.5.0)
86
- rspec-mocks (~> 3.5.0)
87
- rspec-core (3.5.4)
88
- rspec-support (~> 3.5.0)
89
- rspec-expectations (3.5.0)
90
- diff-lcs (>= 1.2.0, < 2.0)
91
- rspec-support (~> 3.5.0)
92
- rspec-mocks (3.5.0)
93
- diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.5.0)
95
- rspec-rails (3.5.2)
96
- actionpack (>= 3.0)
97
- activesupport (>= 3.0)
98
- railties (>= 3.0)
99
- rspec-core (~> 3.5.0)
100
- rspec-expectations (~> 3.5.0)
101
- rspec-mocks (~> 3.5.0)
102
- rspec-support (~> 3.5.0)
103
- rspec-support (3.5.0)
104
- slop (3.6.0)
105
- thor (0.19.4)
106
- thread_safe (0.3.5)
107
- tzinfo (1.2.2)
108
- thread_safe (~> 0.1)
109
- yard (0.9.8)
110
-
111
- PLATFORMS
112
- ruby
113
-
114
- DEPENDENCIES
115
- activerecord (~> 4.2.0)
116
- ammeter (>= 1.1.3)
117
- appraisal
118
- bundler (>= 1.5)
119
- database_cleaner
120
- fx!
121
- pg
122
- pry
123
- railties (~> 4.2.0)
124
- rake
125
- redcarpet
126
- rspec (>= 3.3)
127
- yard
128
-
129
- BUNDLED WITH
130
- 1.17.3
@@ -1,126 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- fx (0.4.0)
5
- activerecord (>= 4.0.0)
6
- railties (>= 4.0.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionpack (5.0.1)
12
- actionview (= 5.0.1)
13
- activesupport (= 5.0.1)
14
- rack (~> 2.0)
15
- rack-test (~> 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
18
- actionview (5.0.1)
19
- activesupport (= 5.0.1)
20
- builder (~> 3.1)
21
- erubis (~> 2.7.0)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- activemodel (5.0.1)
25
- activesupport (= 5.0.1)
26
- activerecord (5.0.1)
27
- activemodel (= 5.0.1)
28
- activesupport (= 5.0.1)
29
- arel (~> 7.0)
30
- activesupport (5.0.1)
31
- concurrent-ruby (~> 1.0, >= 1.0.2)
32
- i18n (~> 0.7)
33
- minitest (~> 5.1)
34
- tzinfo (~> 1.1)
35
- ammeter (1.1.4)
36
- activesupport (>= 3.0)
37
- railties (>= 3.0)
38
- rspec-rails (>= 2.2)
39
- appraisal (2.1.0)
40
- bundler
41
- rake
42
- thor (>= 0.14.0)
43
- arel (7.1.4)
44
- builder (3.2.3)
45
- coderay (1.1.1)
46
- concurrent-ruby (1.0.4)
47
- database_cleaner (1.5.3)
48
- diff-lcs (1.3)
49
- erubis (2.7.0)
50
- i18n (0.7.0)
51
- loofah (2.0.3)
52
- nokogiri (>= 1.5.9)
53
- method_source (0.8.2)
54
- mini_portile2 (2.1.0)
55
- minitest (5.10.1)
56
- nokogiri (1.7.0.1)
57
- mini_portile2 (~> 2.1.0)
58
- pg (0.19.0)
59
- pry (0.10.4)
60
- coderay (~> 1.1.0)
61
- method_source (~> 0.8.1)
62
- slop (~> 3.4)
63
- rack (2.0.1)
64
- rack-test (0.6.3)
65
- rack (>= 1.0)
66
- rails-dom-testing (2.0.2)
67
- activesupport (>= 4.2.0, < 6.0)
68
- nokogiri (~> 1.6)
69
- rails-html-sanitizer (1.0.3)
70
- loofah (~> 2.0)
71
- railties (5.0.1)
72
- actionpack (= 5.0.1)
73
- activesupport (= 5.0.1)
74
- method_source
75
- rake (>= 0.8.7)
76
- thor (>= 0.18.1, < 2.0)
77
- rake (12.0.0)
78
- redcarpet (3.4.0)
79
- rspec (3.5.0)
80
- rspec-core (~> 3.5.0)
81
- rspec-expectations (~> 3.5.0)
82
- rspec-mocks (~> 3.5.0)
83
- rspec-core (3.5.4)
84
- rspec-support (~> 3.5.0)
85
- rspec-expectations (3.5.0)
86
- diff-lcs (>= 1.2.0, < 2.0)
87
- rspec-support (~> 3.5.0)
88
- rspec-mocks (3.5.0)
89
- diff-lcs (>= 1.2.0, < 2.0)
90
- rspec-support (~> 3.5.0)
91
- rspec-rails (3.5.2)
92
- actionpack (>= 3.0)
93
- activesupport (>= 3.0)
94
- railties (>= 3.0)
95
- rspec-core (~> 3.5.0)
96
- rspec-expectations (~> 3.5.0)
97
- rspec-mocks (~> 3.5.0)
98
- rspec-support (~> 3.5.0)
99
- rspec-support (3.5.0)
100
- slop (3.6.0)
101
- thor (0.19.4)
102
- thread_safe (0.3.5)
103
- tzinfo (1.2.2)
104
- thread_safe (~> 0.1)
105
- yard (0.9.8)
106
-
107
- PLATFORMS
108
- ruby
109
-
110
- DEPENDENCIES
111
- activerecord (~> 5.0)
112
- ammeter (>= 1.1.3)
113
- appraisal
114
- bundler (>= 1.5)
115
- database_cleaner
116
- fx!
117
- pg
118
- pry
119
- railties (~> 5.0)
120
- rake
121
- redcarpet
122
- rspec (>= 3.3)
123
- yard
124
-
125
- BUNDLED WITH
126
- 1.17.3
@@ -1,179 +0,0 @@
1
- GIT
2
- remote: git://github.com/rails/arel.git
3
- revision: f5f81be73df89011fe9bc89915b99d81e0c9a67f
4
- specs:
5
- arel (8.0.0)
6
-
7
- GIT
8
- remote: git://github.com/rails/rails.git
9
- revision: 6a1c0218df1fcffaac97e7288db07934bfef277f
10
- specs:
11
- actioncable (5.1.0.alpha)
12
- actionpack (= 5.1.0.alpha)
13
- nio4r (~> 2.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.0.alpha)
16
- actionpack (= 5.1.0.alpha)
17
- actionview (= 5.1.0.alpha)
18
- activejob (= 5.1.0.alpha)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.1.0.alpha)
22
- actionview (= 5.1.0.alpha)
23
- activesupport (= 5.1.0.alpha)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.0.alpha)
29
- activesupport (= 5.1.0.alpha)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.0.alpha)
35
- activesupport (= 5.1.0.alpha)
36
- globalid (>= 0.3.6)
37
- activemodel (5.1.0.alpha)
38
- activesupport (= 5.1.0.alpha)
39
- activerecord (5.1.0.alpha)
40
- activemodel (= 5.1.0.alpha)
41
- activesupport (= 5.1.0.alpha)
42
- arel (~> 8.0)
43
- activesupport (5.1.0.alpha)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- rails (5.1.0.alpha)
49
- actioncable (= 5.1.0.alpha)
50
- actionmailer (= 5.1.0.alpha)
51
- actionpack (= 5.1.0.alpha)
52
- actionview (= 5.1.0.alpha)
53
- activejob (= 5.1.0.alpha)
54
- activemodel (= 5.1.0.alpha)
55
- activerecord (= 5.1.0.alpha)
56
- activesupport (= 5.1.0.alpha)
57
- bundler (>= 1.3.0, < 2.0)
58
- railties (= 5.1.0.alpha)
59
- sprockets-rails (>= 2.0.0)
60
- railties (5.1.0.alpha)
61
- actionpack (= 5.1.0.alpha)
62
- activesupport (= 5.1.0.alpha)
63
- method_source
64
- rake (>= 0.8.7)
65
- thor (>= 0.18.1, < 2.0)
66
-
67
- PATH
68
- remote: ..
69
- specs:
70
- fx (0.4.0)
71
- activerecord (>= 4.0.0)
72
- railties (>= 4.0.0)
73
-
74
- GEM
75
- remote: https://rubygems.org/
76
- specs:
77
- ammeter (1.1.4)
78
- activesupport (>= 3.0)
79
- railties (>= 3.0)
80
- rspec-rails (>= 2.2)
81
- appraisal (2.1.0)
82
- bundler
83
- rake
84
- thor (>= 0.14.0)
85
- builder (3.2.3)
86
- coderay (1.1.1)
87
- concurrent-ruby (1.0.4)
88
- database_cleaner (1.5.3)
89
- diff-lcs (1.3)
90
- erubi (1.5.0)
91
- globalid (0.3.7)
92
- activesupport (>= 4.1.0)
93
- i18n (0.7.0)
94
- loofah (2.0.3)
95
- nokogiri (>= 1.5.9)
96
- mail (2.6.4)
97
- mime-types (>= 1.16, < 4)
98
- method_source (0.8.2)
99
- mime-types (3.1)
100
- mime-types-data (~> 3.2015)
101
- mime-types-data (3.2016.0521)
102
- mini_portile2 (2.1.0)
103
- minitest (5.10.1)
104
- nio4r (2.0.0)
105
- nokogiri (1.7.0.1)
106
- mini_portile2 (~> 2.1.0)
107
- pg (0.19.0)
108
- pry (0.10.4)
109
- coderay (~> 1.1.0)
110
- method_source (~> 0.8.1)
111
- slop (~> 3.4)
112
- rack (2.0.1)
113
- rack-test (0.6.3)
114
- rack (>= 1.0)
115
- rails-dom-testing (2.0.2)
116
- activesupport (>= 4.2.0, < 6.0)
117
- nokogiri (~> 1.6)
118
- rails-html-sanitizer (1.0.3)
119
- loofah (~> 2.0)
120
- rake (12.0.0)
121
- redcarpet (3.4.0)
122
- rspec (3.5.0)
123
- rspec-core (~> 3.5.0)
124
- rspec-expectations (~> 3.5.0)
125
- rspec-mocks (~> 3.5.0)
126
- rspec-core (3.5.4)
127
- rspec-support (~> 3.5.0)
128
- rspec-expectations (3.5.0)
129
- diff-lcs (>= 1.2.0, < 2.0)
130
- rspec-support (~> 3.5.0)
131
- rspec-mocks (3.5.0)
132
- diff-lcs (>= 1.2.0, < 2.0)
133
- rspec-support (~> 3.5.0)
134
- rspec-rails (3.5.2)
135
- actionpack (>= 3.0)
136
- activesupport (>= 3.0)
137
- railties (>= 3.0)
138
- rspec-core (~> 3.5.0)
139
- rspec-expectations (~> 3.5.0)
140
- rspec-mocks (~> 3.5.0)
141
- rspec-support (~> 3.5.0)
142
- rspec-support (3.5.0)
143
- slop (3.6.0)
144
- sprockets (3.7.1)
145
- concurrent-ruby (~> 1.0)
146
- rack (> 1, < 3)
147
- sprockets-rails (3.2.0)
148
- actionpack (>= 4.0)
149
- activesupport (>= 4.0)
150
- sprockets (>= 3.0.0)
151
- thor (0.19.4)
152
- thread_safe (0.3.5)
153
- tzinfo (1.2.2)
154
- thread_safe (~> 0.1)
155
- websocket-driver (0.6.5)
156
- websocket-extensions (>= 0.1.0)
157
- websocket-extensions (0.1.2)
158
- yard (0.9.8)
159
-
160
- PLATFORMS
161
- ruby
162
-
163
- DEPENDENCIES
164
- ammeter (>= 1.1.3)
165
- appraisal
166
- arel!
167
- bundler (>= 1.5)
168
- database_cleaner
169
- fx!
170
- pg
171
- pry
172
- rails!
173
- rake
174
- redcarpet
175
- rspec (>= 3.3)
176
- yard
177
-
178
- BUNDLED WITH
179
- 1.17.3