axlsx_rails 0.2.1 → 0.3.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
  SHA1:
3
- metadata.gz: ed0a20e9c229bff4269b30ed218bc0df3925d883
4
- data.tar.gz: 1594709279eb14b48ad04d5743250288a8b8c1b4
3
+ metadata.gz: 90c9cbafb4e2730bd6a7572316d7d197ee7b65aa
4
+ data.tar.gz: 9bbb1af2c9185d7bd129ce766d67047b569669ba
5
5
  SHA512:
6
- metadata.gz: 7db474030ee2a5d57efd2f9bd1dcf76ae525ddde4cae62edb054ecc3121aea47c14ea231402c53c33ee548299f1a9e5999d4c9436bf23d1bf2376c97b2531f02
7
- data.tar.gz: e85559bfec63ae7a829c61a93d17e8ab1a9596de404730c8e9a891dde43d33319bfb681060e8aa25a7d18148237c4e8e3a295e05e90a7cdcbc9d8cbfabe51653
6
+ metadata.gz: bc0bf19b9bbb26010c72a79f9116bea8061de1e94832df8308b398ecacd4f55ca863f2551c770b49fee759bbe631389d4da3d992403a74eaf0b56ea36cb77323
7
+ data.tar.gz: 7f7fb7483662977fb97737d89bf793389f921fbb250d5d79e5ec2e767af44c9ce72b2c2ebd9517e3d7e7ec655cd06c1294d1009369e910eb6b395a57953f8bb8
@@ -1,5 +1,10 @@
1
1
  # Change log
2
2
 
3
+ **November 20th, 2014**: 0.3.0 release
4
+
5
+ - Support for Rails 4.2.beta4.
6
+ - **Removal of shorthand template syntax** (`render xlsx: 'another/directory'`)
7
+
3
8
  **September 4, 2014**: 0.2.1 release
4
9
 
5
10
  - Rails 4.2.beta1 no longer includes responder. This release checks for the existence of responder before configuring a default responder.
data/Gemfile CHANGED
@@ -13,7 +13,7 @@ when '4.0'
13
13
  when '4.1'
14
14
  gem 'rails', "~> 4.1.0"
15
15
  when '4.2'
16
- gem 'rails', "4.2.0.beta1"
16
+ gem 'rails', "4.2.0.beta4"
17
17
  gem 'responders', '~> 2.0'
18
18
  end
19
19
 
@@ -10,41 +10,41 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- axlsx_rails (0.2.1)
13
+ axlsx_rails (0.3.0)
14
14
  axlsx (>= 2.0.1)
15
15
  rails (>= 3.1)
16
16
 
17
17
  GEM
18
18
  remote: http://rubygems.org/
19
19
  specs:
20
- actionmailer (4.2.0.beta1)
21
- actionpack (= 4.2.0.beta1)
22
- actionview (= 4.2.0.beta1)
20
+ actionmailer (4.2.0.beta4)
21
+ actionpack (= 4.2.0.beta4)
22
+ actionview (= 4.2.0.beta4)
23
23
  mail (~> 2.5, >= 2.5.4)
24
24
  rails-dom-testing (~> 1.0, >= 1.0.2)
25
- actionpack (4.2.0.beta1)
26
- actionview (= 4.2.0.beta1)
27
- activesupport (= 4.2.0.beta1)
25
+ actionpack (4.2.0.beta4)
26
+ actionview (= 4.2.0.beta4)
27
+ activesupport (= 4.2.0.beta4)
28
28
  rack (~> 1.6.0.beta)
29
29
  rack-test (~> 0.6.2)
30
- rails-deprecated_sanitizer (~> 1.0, >= 1.0.2)
31
- rails-dom-testing (~> 1.0, >= 1.0.2)
32
- actionview (4.2.0.beta1)
33
- activesupport (= 4.2.0.beta1)
30
+ rails-dom-testing (~> 1.0, >= 1.0.4)
31
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
32
+ actionview (4.2.0.beta4)
33
+ activesupport (= 4.2.0.beta4)
34
34
  builder (~> 3.1)
35
35
  erubis (~> 2.7.0)
36
- rails-deprecated_sanitizer (~> 1.0, >= 1.0.2)
37
- rails-dom-testing (~> 1.0, >= 1.0.2)
38
- activejob (4.2.0.beta1)
36
+ rails-dom-testing (~> 1.0, >= 1.0.4)
37
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
38
+ activejob (4.2.0.beta4)
39
39
  globalid (>= 0.2.3)
40
- activemodel (4.2.0.beta1)
41
- activesupport (= 4.2.0.beta1)
40
+ activemodel (4.2.0.beta4)
41
+ activesupport (= 4.2.0.beta4)
42
42
  builder (~> 3.1)
43
- activerecord (4.2.0.beta1)
44
- activemodel (= 4.2.0.beta1)
45
- activesupport (= 4.2.0.beta1)
43
+ activerecord (4.2.0.beta4)
44
+ activemodel (= 4.2.0.beta4)
45
+ activesupport (= 4.2.0.beta4)
46
46
  arel (>= 6.0.0.beta1, < 6.1)
47
- activesupport (4.2.0.beta1)
47
+ activesupport (4.2.0.beta4)
48
48
  i18n (>= 0.7.0.beta1, < 0.8)
49
49
  json (~> 1.7, >= 1.7.7)
50
50
  minitest (~> 5.1)
@@ -101,17 +101,19 @@ GEM
101
101
  celluloid (>= 0.15.2)
102
102
  rb-fsevent (>= 0.9.3)
103
103
  rb-inotify (>= 0.9)
104
+ loofah (2.0.1)
105
+ nokogiri (>= 1.5.9)
104
106
  lumberjack (1.0.9)
105
107
  mail (2.6.1)
106
108
  mime-types (>= 1.16, < 3)
107
109
  method_source (0.8.2)
108
110
  mime-types (2.3)
109
- mini_portile (0.6.0)
110
- minitest (5.4.1)
111
+ mini_portile (0.6.1)
112
+ minitest (5.4.3)
111
113
  multi_json (1.10.1)
112
114
  netrc (0.7.7)
113
- nokogiri (1.6.3.1)
114
- mini_portile (= 0.6.0)
115
+ nokogiri (1.6.4.1)
116
+ mini_portile (~> 0.6.0)
115
117
  pry (0.10.1)
116
118
  coderay (~> 1.1.0)
117
119
  method_source (~> 0.8.1)
@@ -121,32 +123,36 @@ GEM
121
123
  rack (1.6.0.beta)
122
124
  rack-test (0.6.2)
123
125
  rack (>= 1.0)
124
- rails (4.2.0.beta1)
125
- actionmailer (= 4.2.0.beta1)
126
- actionpack (= 4.2.0.beta1)
127
- actionview (= 4.2.0.beta1)
128
- activejob (= 4.2.0.beta1)
129
- activemodel (= 4.2.0.beta1)
130
- activerecord (= 4.2.0.beta1)
131
- activesupport (= 4.2.0.beta1)
126
+ rails (4.2.0.beta4)
127
+ actionmailer (= 4.2.0.beta4)
128
+ actionpack (= 4.2.0.beta4)
129
+ actionview (= 4.2.0.beta4)
130
+ activejob (= 4.2.0.beta4)
131
+ activemodel (= 4.2.0.beta4)
132
+ activerecord (= 4.2.0.beta4)
133
+ activesupport (= 4.2.0.beta4)
132
134
  bundler (>= 1.3.0, < 2.0)
133
- railties (= 4.2.0.beta1)
135
+ railties (= 4.2.0.beta4)
134
136
  sprockets-rails (~> 3.0.0.beta1)
135
- rails-deprecated_sanitizer (1.0.2)
137
+ rails-deprecated_sanitizer (1.0.3)
136
138
  activesupport (>= 4.2.0.alpha)
137
- rails-dom-testing (1.0.2)
138
- activesupport
139
+ rails-dom-testing (1.0.4)
140
+ activesupport (>= 4.2.0.beta, < 5.0)
139
141
  nokogiri (~> 1.6.0)
140
142
  rails-deprecated_sanitizer (>= 1.0.1)
141
- railties (4.2.0.beta1)
142
- actionpack (= 4.2.0.beta1)
143
- activesupport (= 4.2.0.beta1)
143
+ rails-html-sanitizer (1.0.1)
144
+ loofah (~> 2.0)
145
+ railties (4.2.0.beta4)
146
+ actionpack (= 4.2.0.beta4)
147
+ activesupport (= 4.2.0.beta4)
144
148
  rake (>= 0.8.7)
145
149
  thor (>= 0.18.1, < 2.0)
146
150
  rake (10.3.2)
147
151
  rb-fsevent (0.9.4)
148
152
  rb-inotify (0.9.5)
149
153
  ffi (>= 0.5.0)
154
+ responders (2.0.2)
155
+ railties (>= 4.2.0.alpha, < 5)
150
156
  rest-client (1.7.2)
151
157
  mime-types (>= 1.16, < 3.0)
152
158
  netrc (~> 0.7)
@@ -224,8 +230,10 @@ DEPENDENCIES
224
230
  jquery-rails
225
231
  pry
226
232
  pry-nav
233
+ rails (= 4.2.0.beta4)
227
234
  rake
228
235
  rb-fsevent
236
+ responders (~> 2.0)
229
237
  roo
230
238
  rspec-rails
231
239
  rubyzip
@@ -0,0 +1,214 @@
1
+ GIT
2
+ remote: git://github.com/straydogstudio/acts_as_xlsx.git
3
+ revision: 74c00b5054ef96ced7bd55753015164f6aaf13ab
4
+ specs:
5
+ acts_as_xlsx (1.0.6)
6
+ activerecord (>= 2.3.9)
7
+ axlsx (>= 1.0.13)
8
+ i18n (>= 0.4.1)
9
+
10
+ PATH
11
+ remote: .
12
+ specs:
13
+ axlsx_rails (0.2.1)
14
+ axlsx (>= 2.0.1)
15
+ rails (>= 3.1)
16
+
17
+ GEM
18
+ remote: http://rubygems.org/
19
+ specs:
20
+ actionmailer (4.0.12)
21
+ actionpack (= 4.0.12)
22
+ mail (~> 2.5, >= 2.5.4)
23
+ actionpack (4.0.12)
24
+ activesupport (= 4.0.12)
25
+ builder (~> 3.1.0)
26
+ erubis (~> 2.7.0)
27
+ rack (~> 1.5.2)
28
+ rack-test (~> 0.6.2)
29
+ activemodel (4.0.12)
30
+ activesupport (= 4.0.12)
31
+ builder (~> 3.1.0)
32
+ activerecord (4.0.12)
33
+ activemodel (= 4.0.12)
34
+ activerecord-deprecated_finders (~> 1.0.2)
35
+ activesupport (= 4.0.12)
36
+ arel (~> 4.0.0)
37
+ activerecord-deprecated_finders (1.0.3)
38
+ activesupport (4.0.12)
39
+ i18n (~> 0.6, >= 0.6.9)
40
+ minitest (~> 4.2)
41
+ multi_json (~> 1.3)
42
+ thread_safe (~> 0.1)
43
+ tzinfo (~> 0.3.37)
44
+ arel (4.0.2)
45
+ axlsx (2.0.1)
46
+ htmlentities (~> 4.3.1)
47
+ nokogiri (>= 1.4.1)
48
+ rubyzip (~> 1.0.0)
49
+ builder (3.1.4)
50
+ capybara (2.4.4)
51
+ mime-types (>= 1.16)
52
+ nokogiri (>= 1.3.3)
53
+ rack (>= 1.0.0)
54
+ rack-test (>= 0.5.4)
55
+ xpath (~> 2.0)
56
+ celluloid (0.16.0)
57
+ timers (~> 4.0.0)
58
+ coderay (1.1.0)
59
+ coveralls (0.7.1)
60
+ multi_json (~> 1.3)
61
+ rest-client
62
+ simplecov (>= 0.7)
63
+ term-ansicolor
64
+ thor
65
+ daemons (1.1.9)
66
+ diff-lcs (1.2.5)
67
+ docile (1.1.5)
68
+ erubis (2.7.0)
69
+ eventmachine (1.0.3)
70
+ ffi (1.9.6)
71
+ formatador (0.2.5)
72
+ growl (1.0.3)
73
+ guard (2.8.2)
74
+ formatador (>= 0.2.4)
75
+ listen (~> 2.7)
76
+ lumberjack (~> 1.0)
77
+ pry (>= 0.9.12)
78
+ thor (>= 0.18.1)
79
+ guard-rspec (4.3.1)
80
+ guard (~> 2.1)
81
+ rspec (>= 2.14, < 4.0)
82
+ hike (1.2.3)
83
+ hitimes (1.2.2)
84
+ htmlentities (4.3.2)
85
+ i18n (0.6.11)
86
+ jquery-rails (3.1.2)
87
+ railties (>= 3.0, < 5.0)
88
+ thor (>= 0.14, < 2.0)
89
+ listen (2.8.0)
90
+ celluloid (>= 0.15.2)
91
+ rb-fsevent (>= 0.9.3)
92
+ rb-inotify (>= 0.9)
93
+ lumberjack (1.0.9)
94
+ mail (2.6.3)
95
+ mime-types (>= 1.16, < 3)
96
+ method_source (0.8.2)
97
+ mime-types (2.4.3)
98
+ mini_portile (0.6.1)
99
+ minitest (4.7.5)
100
+ multi_json (1.10.1)
101
+ netrc (0.8.0)
102
+ nokogiri (1.6.4.1)
103
+ mini_portile (~> 0.6.0)
104
+ pry (0.10.1)
105
+ coderay (~> 1.1.0)
106
+ method_source (~> 0.8.1)
107
+ slop (~> 3.4)
108
+ pry-nav (0.2.4)
109
+ pry (>= 0.9.10, < 0.11.0)
110
+ rack (1.5.2)
111
+ rack-test (0.6.2)
112
+ rack (>= 1.0)
113
+ rails (4.0.12)
114
+ actionmailer (= 4.0.12)
115
+ actionpack (= 4.0.12)
116
+ activerecord (= 4.0.12)
117
+ activesupport (= 4.0.12)
118
+ bundler (>= 1.3.0, < 2.0)
119
+ railties (= 4.0.12)
120
+ sprockets-rails (~> 2.0)
121
+ railties (4.0.12)
122
+ actionpack (= 4.0.12)
123
+ activesupport (= 4.0.12)
124
+ rake (>= 0.8.7)
125
+ thor (>= 0.18.1, < 2.0)
126
+ rake (10.3.2)
127
+ rb-fsevent (0.9.4)
128
+ rb-inotify (0.9.5)
129
+ ffi (>= 0.5.0)
130
+ rest-client (1.7.2)
131
+ mime-types (>= 1.16, < 3.0)
132
+ netrc (~> 0.7)
133
+ roo (1.13.2)
134
+ nokogiri
135
+ rubyzip
136
+ spreadsheet (> 0.6.4)
137
+ rspec (3.1.0)
138
+ rspec-core (~> 3.1.0)
139
+ rspec-expectations (~> 3.1.0)
140
+ rspec-mocks (~> 3.1.0)
141
+ rspec-core (3.1.7)
142
+ rspec-support (~> 3.1.0)
143
+ rspec-expectations (3.1.2)
144
+ diff-lcs (>= 1.2.0, < 2.0)
145
+ rspec-support (~> 3.1.0)
146
+ rspec-mocks (3.1.3)
147
+ rspec-support (~> 3.1.0)
148
+ rspec-rails (3.1.0)
149
+ actionpack (>= 3.0)
150
+ activesupport (>= 3.0)
151
+ railties (>= 3.0)
152
+ rspec-core (~> 3.1.0)
153
+ rspec-expectations (~> 3.1.0)
154
+ rspec-mocks (~> 3.1.0)
155
+ rspec-support (~> 3.1.0)
156
+ rspec-support (3.1.2)
157
+ ruby-ole (1.2.11.7)
158
+ rubyzip (1.0.0)
159
+ simplecov (0.9.1)
160
+ docile (~> 1.1.0)
161
+ multi_json (~> 1.0)
162
+ simplecov-html (~> 0.8.0)
163
+ simplecov-html (0.8.0)
164
+ slop (3.6.0)
165
+ spreadsheet (1.0.0)
166
+ ruby-ole (>= 1.0)
167
+ sprockets (2.12.3)
168
+ hike (~> 1.2)
169
+ multi_json (~> 1.0)
170
+ rack (~> 1.0)
171
+ tilt (~> 1.1, != 1.3.0)
172
+ sprockets-rails (2.2.0)
173
+ actionpack (>= 3.0)
174
+ activesupport (>= 3.0)
175
+ sprockets (>= 2.8, < 4.0)
176
+ sqlite3 (1.3.10)
177
+ term-ansicolor (1.3.0)
178
+ tins (~> 1.0)
179
+ thin (1.6.3)
180
+ daemons (~> 1.0, >= 1.0.9)
181
+ eventmachine (~> 1.0)
182
+ rack (~> 1.0)
183
+ thor (0.19.1)
184
+ thread_safe (0.3.4)
185
+ tilt (1.4.1)
186
+ timers (4.0.1)
187
+ hitimes
188
+ tins (1.3.3)
189
+ tzinfo (0.3.42)
190
+ xpath (2.0.0)
191
+ nokogiri (~> 1.3)
192
+
193
+ PLATFORMS
194
+ ruby
195
+
196
+ DEPENDENCIES
197
+ acts_as_xlsx!
198
+ axlsx_rails!
199
+ bundler
200
+ capybara (~> 2.1)
201
+ coveralls
202
+ growl
203
+ guard-rspec
204
+ jquery-rails
205
+ pry
206
+ pry-nav
207
+ rails (~> 4.0.0)
208
+ rake
209
+ rb-fsevent
210
+ roo
211
+ rspec-rails
212
+ rubyzip
213
+ sqlite3
214
+ thin
@@ -10,41 +10,41 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- axlsx_rails (0.2.1)
13
+ axlsx_rails (0.3.0)
14
14
  axlsx (>= 2.0.1)
15
15
  rails (>= 3.1)
16
16
 
17
17
  GEM
18
18
  remote: http://rubygems.org/
19
19
  specs:
20
- actionmailer (4.2.0.beta1)
21
- actionpack (= 4.2.0.beta1)
22
- actionview (= 4.2.0.beta1)
20
+ actionmailer (4.2.0.beta4)
21
+ actionpack (= 4.2.0.beta4)
22
+ actionview (= 4.2.0.beta4)
23
23
  mail (~> 2.5, >= 2.5.4)
24
24
  rails-dom-testing (~> 1.0, >= 1.0.2)
25
- actionpack (4.2.0.beta1)
26
- actionview (= 4.2.0.beta1)
27
- activesupport (= 4.2.0.beta1)
25
+ actionpack (4.2.0.beta4)
26
+ actionview (= 4.2.0.beta4)
27
+ activesupport (= 4.2.0.beta4)
28
28
  rack (~> 1.6.0.beta)
29
29
  rack-test (~> 0.6.2)
30
- rails-deprecated_sanitizer (~> 1.0, >= 1.0.2)
31
- rails-dom-testing (~> 1.0, >= 1.0.2)
32
- actionview (4.2.0.beta1)
33
- activesupport (= 4.2.0.beta1)
30
+ rails-dom-testing (~> 1.0, >= 1.0.4)
31
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
32
+ actionview (4.2.0.beta4)
33
+ activesupport (= 4.2.0.beta4)
34
34
  builder (~> 3.1)
35
35
  erubis (~> 2.7.0)
36
- rails-deprecated_sanitizer (~> 1.0, >= 1.0.2)
37
- rails-dom-testing (~> 1.0, >= 1.0.2)
38
- activejob (4.2.0.beta1)
36
+ rails-dom-testing (~> 1.0, >= 1.0.4)
37
+ rails-html-sanitizer (~> 1.0, >= 1.0.1)
38
+ activejob (4.2.0.beta4)
39
39
  globalid (>= 0.2.3)
40
- activemodel (4.2.0.beta1)
41
- activesupport (= 4.2.0.beta1)
40
+ activemodel (4.2.0.beta4)
41
+ activesupport (= 4.2.0.beta4)
42
42
  builder (~> 3.1)
43
- activerecord (4.2.0.beta1)
44
- activemodel (= 4.2.0.beta1)
45
- activesupport (= 4.2.0.beta1)
43
+ activerecord (4.2.0.beta4)
44
+ activemodel (= 4.2.0.beta4)
45
+ activesupport (= 4.2.0.beta4)
46
46
  arel (>= 6.0.0.beta1, < 6.1)
47
- activesupport (4.2.0.beta1)
47
+ activesupport (4.2.0.beta4)
48
48
  i18n (>= 0.7.0.beta1, < 0.8)
49
49
  json (~> 1.7, >= 1.7.7)
50
50
  minitest (~> 5.1)
@@ -101,17 +101,19 @@ GEM
101
101
  celluloid (>= 0.15.2)
102
102
  rb-fsevent (>= 0.9.3)
103
103
  rb-inotify (>= 0.9)
104
+ loofah (2.0.1)
105
+ nokogiri (>= 1.5.9)
104
106
  lumberjack (1.0.9)
105
107
  mail (2.6.1)
106
108
  mime-types (>= 1.16, < 3)
107
109
  method_source (0.8.2)
108
110
  mime-types (2.3)
109
- mini_portile (0.6.0)
110
- minitest (5.4.1)
111
+ mini_portile (0.6.1)
112
+ minitest (5.4.3)
111
113
  multi_json (1.10.1)
112
114
  netrc (0.7.7)
113
- nokogiri (1.6.3.1)
114
- mini_portile (= 0.6.0)
115
+ nokogiri (1.6.4.1)
116
+ mini_portile (~> 0.6.0)
115
117
  pry (0.10.1)
116
118
  coderay (~> 1.1.0)
117
119
  method_source (~> 0.8.1)
@@ -121,33 +123,35 @@ GEM
121
123
  rack (1.6.0.beta)
122
124
  rack-test (0.6.2)
123
125
  rack (>= 1.0)
124
- rails (4.2.0.beta1)
125
- actionmailer (= 4.2.0.beta1)
126
- actionpack (= 4.2.0.beta1)
127
- actionview (= 4.2.0.beta1)
128
- activejob (= 4.2.0.beta1)
129
- activemodel (= 4.2.0.beta1)
130
- activerecord (= 4.2.0.beta1)
131
- activesupport (= 4.2.0.beta1)
126
+ rails (4.2.0.beta4)
127
+ actionmailer (= 4.2.0.beta4)
128
+ actionpack (= 4.2.0.beta4)
129
+ actionview (= 4.2.0.beta4)
130
+ activejob (= 4.2.0.beta4)
131
+ activemodel (= 4.2.0.beta4)
132
+ activerecord (= 4.2.0.beta4)
133
+ activesupport (= 4.2.0.beta4)
132
134
  bundler (>= 1.3.0, < 2.0)
133
- railties (= 4.2.0.beta1)
135
+ railties (= 4.2.0.beta4)
134
136
  sprockets-rails (~> 3.0.0.beta1)
135
- rails-deprecated_sanitizer (1.0.2)
137
+ rails-deprecated_sanitizer (1.0.3)
136
138
  activesupport (>= 4.2.0.alpha)
137
- rails-dom-testing (1.0.2)
138
- activesupport
139
+ rails-dom-testing (1.0.4)
140
+ activesupport (>= 4.2.0.beta, < 5.0)
139
141
  nokogiri (~> 1.6.0)
140
142
  rails-deprecated_sanitizer (>= 1.0.1)
141
- railties (4.2.0.beta1)
142
- actionpack (= 4.2.0.beta1)
143
- activesupport (= 4.2.0.beta1)
143
+ rails-html-sanitizer (1.0.1)
144
+ loofah (~> 2.0)
145
+ railties (4.2.0.beta4)
146
+ actionpack (= 4.2.0.beta4)
147
+ activesupport (= 4.2.0.beta4)
144
148
  rake (>= 0.8.7)
145
149
  thor (>= 0.18.1, < 2.0)
146
150
  rake (10.3.2)
147
151
  rb-fsevent (0.9.4)
148
152
  rb-inotify (0.9.5)
149
153
  ffi (>= 0.5.0)
150
- responders (2.0.0)
154
+ responders (2.0.2)
151
155
  railties (>= 4.2.0.alpha, < 5)
152
156
  rest-client (1.7.2)
153
157
  mime-types (>= 1.16, < 3.0)
@@ -226,7 +230,7 @@ DEPENDENCIES
226
230
  jquery-rails
227
231
  pry
228
232
  pry-nav
229
- rails (= 4.2.0.beta1)
233
+ rails (= 4.2.0.beta4)
230
234
  rake
231
235
  rb-fsevent
232
236
  responders (~> 2.0)