dalliance 0.5.1 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Appraisals +4 -12
- data/dalliance.gemspec +1 -1
- data/gemfiles/rails_4.2.gemfile.lock +89 -92
- data/gemfiles/rails_5.0.gemfile.lock +47 -47
- data/gemfiles/rails_5.1.gemfile.lock +83 -83
- data/gemfiles/{rails_4.0.gemfile → rails_5.2.gemfile} +1 -1
- data/gemfiles/rails_5.2.gemfile.lock +182 -0
- data/lib/dalliance/version.rb +2 -2
- metadata +9 -15
- data/gemfiles/rails_3.1.gemfile +0 -12
- data/gemfiles/rails_3.1.gemfile.lock +0 -149
- data/gemfiles/rails_3.2.gemfile +0 -12
- data/gemfiles/rails_3.2.gemfile.lock +0 -146
- data/gemfiles/rails_4.0.gemfile.lock +0 -134
- data/gemfiles/rails_4.1.gemfile +0 -12
- data/gemfiles/rails_4.1.gemfile.lock +0 -140
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 33f7433a3391650bd85c64aa0168d2ba9c47a58623fb939241f5d379f9fd621e
|
4
|
+
data.tar.gz: f0cd58c87d0c512592ca19ea3f25d572569302a1e2c2fb4c8a0864ac2827a9d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6882e52916979a54c75a589ead81bb4a20b2639129ae18751afc11c45ccd6e1ddd2c2eee0ecb43ed9901c0ebd9d4e194621321c7d8e2474ec69c804d4e6c7884
|
7
|
+
data.tar.gz: c1e5741fdcfcb3914d8b729476a7e12c64305125abb94a10687dd79693ef5499d0c61467b466e387dc3a60fd62e56354e97e17ce1f7f38d63cdc94ba76d69aa0
|
data/Appraisals
CHANGED
@@ -1,15 +1,3 @@
|
|
1
|
-
appraise "rails-3.2" do
|
2
|
-
gem "rails", "~> 3.2.0"
|
3
|
-
end
|
4
|
-
|
5
|
-
appraise "rails-4.0" do
|
6
|
-
gem "rails", "~> 4.0.0"
|
7
|
-
end
|
8
|
-
|
9
|
-
appraise "rails-4.1" do
|
10
|
-
gem "rails", "~> 4.1.0"
|
11
|
-
end
|
12
|
-
|
13
1
|
appraise "rails-4.2" do
|
14
2
|
gem "rails", "~> 4.2.0"
|
15
3
|
end
|
@@ -20,4 +8,8 @@ end
|
|
20
8
|
|
21
9
|
appraise "rails-5.1" do
|
22
10
|
gem "rails", "~> 5.1.0"
|
11
|
+
end
|
12
|
+
|
13
|
+
appraise "rails-5.2" do
|
14
|
+
gem "rails", "~> 5.2.2"
|
23
15
|
end
|
data/dalliance.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
19
|
s.require_paths = ["lib"]
|
20
20
|
|
21
|
-
s.add_dependency('rails', '>=
|
21
|
+
s.add_dependency('rails', '>= 4.2', "< 5.3")
|
22
22
|
|
23
23
|
s.add_dependency('state_machine')
|
24
24
|
|
@@ -1,151 +1,148 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
dalliance (0.
|
5
|
-
rails (>= 3.2,
|
4
|
+
dalliance (0.5.1)
|
5
|
+
rails (>= 3.2, < 5.3)
|
6
6
|
state_machine
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (4.2.
|
12
|
-
actionpack (= 4.2.
|
13
|
-
actionview (= 4.2.
|
14
|
-
activejob (= 4.2.
|
11
|
+
actionmailer (4.2.9)
|
12
|
+
actionpack (= 4.2.9)
|
13
|
+
actionview (= 4.2.9)
|
14
|
+
activejob (= 4.2.9)
|
15
15
|
mail (~> 2.5, >= 2.5.4)
|
16
16
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
17
|
-
actionpack (4.2.
|
18
|
-
actionview (= 4.2.
|
19
|
-
activesupport (= 4.2.
|
17
|
+
actionpack (4.2.9)
|
18
|
+
actionview (= 4.2.9)
|
19
|
+
activesupport (= 4.2.9)
|
20
20
|
rack (~> 1.6)
|
21
21
|
rack-test (~> 0.6.2)
|
22
22
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
23
23
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
24
|
-
actionview (4.2.
|
25
|
-
activesupport (= 4.2.
|
24
|
+
actionview (4.2.9)
|
25
|
+
activesupport (= 4.2.9)
|
26
26
|
builder (~> 3.1)
|
27
27
|
erubis (~> 2.7.0)
|
28
28
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
29
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.
|
30
|
-
activejob (4.2.
|
31
|
-
activesupport (= 4.2.
|
29
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
30
|
+
activejob (4.2.9)
|
31
|
+
activesupport (= 4.2.9)
|
32
32
|
globalid (>= 0.3.0)
|
33
|
-
activemodel (4.2.
|
34
|
-
activesupport (= 4.2.
|
33
|
+
activemodel (4.2.9)
|
34
|
+
activesupport (= 4.2.9)
|
35
35
|
builder (~> 3.1)
|
36
|
-
activerecord (4.2.
|
37
|
-
activemodel (= 4.2.
|
38
|
-
activesupport (= 4.2.
|
36
|
+
activerecord (4.2.9)
|
37
|
+
activemodel (= 4.2.9)
|
38
|
+
activesupport (= 4.2.9)
|
39
39
|
arel (~> 6.0)
|
40
|
-
activesupport (4.2.
|
40
|
+
activesupport (4.2.9)
|
41
41
|
i18n (~> 0.7)
|
42
|
-
json (~> 1.7, >= 1.7.7)
|
43
42
|
minitest (~> 5.1)
|
44
43
|
thread_safe (~> 0.3, >= 0.3.4)
|
45
44
|
tzinfo (~> 1.1)
|
46
|
-
appraisal (2.
|
45
|
+
appraisal (2.2.0)
|
47
46
|
bundler
|
48
47
|
rake
|
49
48
|
thor (>= 0.14.0)
|
50
|
-
arel (6.0.
|
51
|
-
builder (3.2.
|
52
|
-
byebug (
|
53
|
-
concurrent-ruby (1.
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
49
|
+
arel (6.0.4)
|
50
|
+
builder (3.2.3)
|
51
|
+
byebug (10.0.2)
|
52
|
+
concurrent-ruby (1.1.5)
|
53
|
+
crass (1.0.4)
|
54
|
+
delayed_job (4.1.5)
|
55
|
+
activesupport (>= 3.0, < 5.3)
|
56
|
+
delayed_job_active_record (4.1.3)
|
57
|
+
activerecord (>= 3.0, < 5.3)
|
58
58
|
delayed_job (>= 3.0, < 5)
|
59
|
-
diff-lcs (1.
|
59
|
+
diff-lcs (1.3)
|
60
60
|
erubis (2.7.0)
|
61
|
-
globalid (0.
|
62
|
-
activesupport (>= 4.
|
63
|
-
i18n (0.
|
64
|
-
|
65
|
-
loofah (2.
|
61
|
+
globalid (0.4.2)
|
62
|
+
activesupport (>= 4.2.0)
|
63
|
+
i18n (0.9.5)
|
64
|
+
concurrent-ruby (~> 1.0)
|
65
|
+
loofah (2.2.3)
|
66
|
+
crass (~> 1.0.2)
|
66
67
|
nokogiri (>= 1.5.9)
|
67
|
-
mail (2.
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
mini_portile2 (2.1.0)
|
73
|
-
minitest (5.9.0)
|
68
|
+
mail (2.7.1)
|
69
|
+
mini_mime (>= 0.1.1)
|
70
|
+
mini_mime (1.0.1)
|
71
|
+
mini_portile2 (2.4.0)
|
72
|
+
minitest (5.11.3)
|
74
73
|
mono_logger (1.1.0)
|
75
|
-
multi_json (1.
|
76
|
-
nokogiri (1.
|
77
|
-
mini_portile2 (~> 2.
|
78
|
-
|
79
|
-
pkg-config (1.1.7)
|
80
|
-
rack (1.6.4)
|
74
|
+
multi_json (1.13.1)
|
75
|
+
nokogiri (1.10.3)
|
76
|
+
mini_portile2 (~> 2.4.0)
|
77
|
+
rack (1.6.8)
|
81
78
|
rack-protection (1.5.3)
|
82
79
|
rack
|
83
80
|
rack-test (0.6.3)
|
84
81
|
rack (>= 1.0)
|
85
|
-
rails (4.2.
|
86
|
-
actionmailer (= 4.2.
|
87
|
-
actionpack (= 4.2.
|
88
|
-
actionview (= 4.2.
|
89
|
-
activejob (= 4.2.
|
90
|
-
activemodel (= 4.2.
|
91
|
-
activerecord (= 4.2.
|
92
|
-
activesupport (= 4.2.
|
82
|
+
rails (4.2.9)
|
83
|
+
actionmailer (= 4.2.9)
|
84
|
+
actionpack (= 4.2.9)
|
85
|
+
actionview (= 4.2.9)
|
86
|
+
activejob (= 4.2.9)
|
87
|
+
activemodel (= 4.2.9)
|
88
|
+
activerecord (= 4.2.9)
|
89
|
+
activesupport (= 4.2.9)
|
93
90
|
bundler (>= 1.3.0, < 2.0)
|
94
|
-
railties (= 4.2.
|
91
|
+
railties (= 4.2.9)
|
95
92
|
sprockets-rails
|
96
93
|
rails-deprecated_sanitizer (1.0.3)
|
97
94
|
activesupport (>= 4.2.0.alpha)
|
98
|
-
rails-dom-testing (1.0.
|
99
|
-
activesupport (>= 4.2.0
|
100
|
-
nokogiri (~> 1.6
|
95
|
+
rails-dom-testing (1.0.9)
|
96
|
+
activesupport (>= 4.2.0, < 5.0)
|
97
|
+
nokogiri (~> 1.6)
|
101
98
|
rails-deprecated_sanitizer (>= 1.0.1)
|
102
|
-
rails-html-sanitizer (1.0.
|
103
|
-
loofah (~> 2.
|
104
|
-
railties (4.2.
|
105
|
-
actionpack (= 4.2.
|
106
|
-
activesupport (= 4.2.
|
99
|
+
rails-html-sanitizer (1.0.4)
|
100
|
+
loofah (~> 2.2, >= 2.2.2)
|
101
|
+
railties (4.2.9)
|
102
|
+
actionpack (= 4.2.9)
|
103
|
+
activesupport (= 4.2.9)
|
107
104
|
rake (>= 0.8.7)
|
108
105
|
thor (>= 0.18.1, < 2.0)
|
109
|
-
rake (
|
110
|
-
redis (
|
111
|
-
redis-namespace (1.
|
112
|
-
redis (
|
113
|
-
resque (
|
106
|
+
rake (12.3.2)
|
107
|
+
redis (4.1.0)
|
108
|
+
redis-namespace (1.6.0)
|
109
|
+
redis (>= 3.0.4)
|
110
|
+
resque (2.0.0)
|
114
111
|
mono_logger (~> 1.0)
|
115
112
|
multi_json (~> 1.0)
|
116
|
-
redis-namespace (~> 1.
|
113
|
+
redis-namespace (~> 1.6)
|
117
114
|
sinatra (>= 0.9.2)
|
118
115
|
vegas (~> 0.1.2)
|
119
|
-
rspec (3.
|
120
|
-
rspec-core (~> 3.
|
121
|
-
rspec-expectations (~> 3.
|
122
|
-
rspec-mocks (~> 3.
|
123
|
-
rspec-core (3.
|
124
|
-
rspec-support (~> 3.
|
125
|
-
rspec-expectations (3.
|
116
|
+
rspec (3.8.0)
|
117
|
+
rspec-core (~> 3.8.0)
|
118
|
+
rspec-expectations (~> 3.8.0)
|
119
|
+
rspec-mocks (~> 3.8.0)
|
120
|
+
rspec-core (3.8.0)
|
121
|
+
rspec-support (~> 3.8.0)
|
122
|
+
rspec-expectations (3.8.2)
|
126
123
|
diff-lcs (>= 1.2.0, < 2.0)
|
127
|
-
rspec-support (~> 3.
|
128
|
-
rspec-mocks (3.
|
124
|
+
rspec-support (~> 3.8.0)
|
125
|
+
rspec-mocks (3.8.0)
|
129
126
|
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
-
rspec-support (~> 3.
|
131
|
-
rspec-support (3.
|
132
|
-
sinatra (1.4.
|
127
|
+
rspec-support (~> 3.8.0)
|
128
|
+
rspec-support (3.8.0)
|
129
|
+
sinatra (1.4.8)
|
133
130
|
rack (~> 1.5)
|
134
131
|
rack-protection (~> 1.4)
|
135
132
|
tilt (>= 1.3, < 3)
|
136
|
-
sprockets (3.7.
|
133
|
+
sprockets (3.7.2)
|
137
134
|
concurrent-ruby (~> 1.0)
|
138
135
|
rack (> 1, < 3)
|
139
|
-
sprockets-rails (3.2.
|
136
|
+
sprockets-rails (3.2.1)
|
140
137
|
actionpack (>= 4.0)
|
141
138
|
activesupport (>= 4.0)
|
142
139
|
sprockets (>= 3.0.0)
|
143
|
-
sqlite3 (1.3.
|
140
|
+
sqlite3 (1.3.13)
|
144
141
|
state_machine (1.2.0)
|
145
|
-
thor (0.
|
146
|
-
thread_safe (0.3.
|
147
|
-
tilt (2.0.
|
148
|
-
tzinfo (1.2.
|
142
|
+
thor (0.20.3)
|
143
|
+
thread_safe (0.3.6)
|
144
|
+
tilt (2.0.9)
|
145
|
+
tzinfo (1.2.5)
|
149
146
|
thread_safe (~> 0.1)
|
150
147
|
vegas (0.1.11)
|
151
148
|
rack (>= 1.0.0)
|
@@ -165,4 +162,4 @@ DEPENDENCIES
|
|
165
162
|
sqlite3
|
166
163
|
|
167
164
|
BUNDLED WITH
|
168
|
-
1.
|
165
|
+
1.17.3
|
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
dalliance (0.
|
5
|
-
rails (>= 3.2,
|
4
|
+
dalliance (0.5.1)
|
5
|
+
rails (>= 3.2, < 5.3)
|
6
6
|
state_machine
|
7
7
|
|
8
8
|
GEM
|
@@ -51,37 +51,37 @@ GEM
|
|
51
51
|
thor (>= 0.14.0)
|
52
52
|
arel (7.1.4)
|
53
53
|
builder (3.2.3)
|
54
|
-
byebug (
|
55
|
-
concurrent-ruby (1.
|
56
|
-
crass (1.0.
|
57
|
-
delayed_job (4.1.
|
58
|
-
activesupport (>= 3.0, < 5.
|
59
|
-
delayed_job_active_record (4.1.
|
60
|
-
activerecord (>= 3.0, < 5.
|
54
|
+
byebug (10.0.2)
|
55
|
+
concurrent-ruby (1.1.5)
|
56
|
+
crass (1.0.4)
|
57
|
+
delayed_job (4.1.5)
|
58
|
+
activesupport (>= 3.0, < 5.3)
|
59
|
+
delayed_job_active_record (4.1.3)
|
60
|
+
activerecord (>= 3.0, < 5.3)
|
61
61
|
delayed_job (>= 3.0, < 5)
|
62
62
|
diff-lcs (1.3)
|
63
63
|
erubis (2.7.0)
|
64
|
-
globalid (0.4.
|
64
|
+
globalid (0.4.2)
|
65
65
|
activesupport (>= 4.2.0)
|
66
|
-
i18n (0.9.
|
66
|
+
i18n (0.9.5)
|
67
67
|
concurrent-ruby (~> 1.0)
|
68
|
-
loofah (2.
|
68
|
+
loofah (2.2.3)
|
69
69
|
crass (~> 1.0.2)
|
70
70
|
nokogiri (>= 1.5.9)
|
71
|
-
mail (2.7.
|
71
|
+
mail (2.7.1)
|
72
72
|
mini_mime (>= 0.1.1)
|
73
|
-
method_source (0.9.
|
74
|
-
mini_mime (1.0.
|
75
|
-
mini_portile2 (2.
|
76
|
-
minitest (5.11.
|
73
|
+
method_source (0.9.2)
|
74
|
+
mini_mime (1.0.1)
|
75
|
+
mini_portile2 (2.4.0)
|
76
|
+
minitest (5.11.3)
|
77
77
|
mono_logger (1.1.0)
|
78
|
-
multi_json (1.
|
79
|
-
mustermann (1.0.
|
78
|
+
multi_json (1.13.1)
|
79
|
+
mustermann (1.0.3)
|
80
80
|
nio4r (1.2.1)
|
81
|
-
nokogiri (1.
|
82
|
-
mini_portile2 (~> 2.
|
83
|
-
rack (2.0.
|
84
|
-
rack-protection (2.0.
|
81
|
+
nokogiri (1.10.3)
|
82
|
+
mini_portile2 (~> 2.4.0)
|
83
|
+
rack (2.0.7)
|
84
|
+
rack-protection (2.0.5)
|
85
85
|
rack
|
86
86
|
rack-test (0.6.3)
|
87
87
|
rack (>= 1.0)
|
@@ -100,43 +100,43 @@ GEM
|
|
100
100
|
rails-dom-testing (2.0.3)
|
101
101
|
activesupport (>= 4.2.0)
|
102
102
|
nokogiri (>= 1.6)
|
103
|
-
rails-html-sanitizer (1.0.
|
104
|
-
loofah (~> 2.
|
103
|
+
rails-html-sanitizer (1.0.4)
|
104
|
+
loofah (~> 2.2, >= 2.2.2)
|
105
105
|
railties (5.0.0)
|
106
106
|
actionpack (= 5.0.0)
|
107
107
|
activesupport (= 5.0.0)
|
108
108
|
method_source
|
109
109
|
rake (>= 0.8.7)
|
110
110
|
thor (>= 0.18.1, < 2.0)
|
111
|
-
rake (12.3.
|
112
|
-
redis (4.0
|
111
|
+
rake (12.3.2)
|
112
|
+
redis (4.1.0)
|
113
113
|
redis-namespace (1.6.0)
|
114
114
|
redis (>= 3.0.4)
|
115
|
-
resque (
|
115
|
+
resque (2.0.0)
|
116
116
|
mono_logger (~> 1.0)
|
117
117
|
multi_json (~> 1.0)
|
118
|
-
redis-namespace (~> 1.
|
118
|
+
redis-namespace (~> 1.6)
|
119
119
|
sinatra (>= 0.9.2)
|
120
120
|
vegas (~> 0.1.2)
|
121
|
-
rspec (3.
|
122
|
-
rspec-core (~> 3.
|
123
|
-
rspec-expectations (~> 3.
|
124
|
-
rspec-mocks (~> 3.
|
125
|
-
rspec-core (3.
|
126
|
-
rspec-support (~> 3.
|
127
|
-
rspec-expectations (3.
|
121
|
+
rspec (3.8.0)
|
122
|
+
rspec-core (~> 3.8.0)
|
123
|
+
rspec-expectations (~> 3.8.0)
|
124
|
+
rspec-mocks (~> 3.8.0)
|
125
|
+
rspec-core (3.8.0)
|
126
|
+
rspec-support (~> 3.8.0)
|
127
|
+
rspec-expectations (3.8.2)
|
128
128
|
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
-
rspec-support (~> 3.
|
130
|
-
rspec-mocks (3.
|
129
|
+
rspec-support (~> 3.8.0)
|
130
|
+
rspec-mocks (3.8.0)
|
131
131
|
diff-lcs (>= 1.2.0, < 2.0)
|
132
|
-
rspec-support (~> 3.
|
133
|
-
rspec-support (3.
|
134
|
-
sinatra (2.0.
|
132
|
+
rspec-support (~> 3.8.0)
|
133
|
+
rspec-support (3.8.0)
|
134
|
+
sinatra (2.0.5)
|
135
135
|
mustermann (~> 1.0)
|
136
136
|
rack (~> 2.0)
|
137
|
-
rack-protection (= 2.0.
|
137
|
+
rack-protection (= 2.0.5)
|
138
138
|
tilt (~> 2.0)
|
139
|
-
sprockets (3.7.
|
139
|
+
sprockets (3.7.2)
|
140
140
|
concurrent-ruby (~> 1.0)
|
141
141
|
rack (> 1, < 3)
|
142
142
|
sprockets-rails (3.2.1)
|
@@ -145,10 +145,10 @@ GEM
|
|
145
145
|
sprockets (>= 3.0.0)
|
146
146
|
sqlite3 (1.3.13)
|
147
147
|
state_machine (1.2.0)
|
148
|
-
thor (0.20.
|
148
|
+
thor (0.20.3)
|
149
149
|
thread_safe (0.3.6)
|
150
|
-
tilt (2.0.
|
151
|
-
tzinfo (1.2.
|
150
|
+
tilt (2.0.9)
|
151
|
+
tzinfo (1.2.5)
|
152
152
|
thread_safe (~> 0.1)
|
153
153
|
vegas (0.1.11)
|
154
154
|
rack (>= 1.0.0)
|
@@ -171,4 +171,4 @@ DEPENDENCIES
|
|
171
171
|
sqlite3
|
172
172
|
|
173
173
|
BUNDLED WITH
|
174
|
-
1.
|
174
|
+
1.17.3
|