File tree 3 files changed +26
-4
lines changed
3 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ## 2.0.2
6
+
7
+ ### Changed
8
+
9
+ * Remove ActiveAdmin runtime dependency version limit '<2' [ #16 ] by [ @reaper ] [ ]
10
+
5
11
## 2.0.1
6
12
7
13
### Fixed
61
67
[ #8 ] : https://github.com/thambley/activeadmin-xls/issues/8
62
68
[ #11 ] : https://github.com/thambley/activeadmin-xls/pull/11
63
69
[ #13 ] : https://github.com/thambley/activeadmin-xls/issues/13
70
+ [ #16 ] : https://github.com/thambley/activeadmin-xls/pull/16
64
71
65
72
[ @rewritten ] : https://github.com/rewritten
66
73
[ @ejaypcanaria ] : https://github.com/ejaypcanaria
67
- [ @cpunion ] : https://github.com/cpunion
74
+ [ @cpunion ] : https://github.com/cpunion
75
+ [ @reaper ] : https://github.com/reaper
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following to your Gemfile. All resource index views will now include a l
22
22
gem ' activeadmin-xls' , ' ~>2.0.0'
23
23
```
24
24
25
- For Active Admin 1.0, you will also have to update config/initializers/active_admin.rb. Update the download\_ links setting to include xls:
25
+ For Active Admin 1.0 and above , you will also have to update config/initializers/active_admin.rb. Update the download\_ links setting to include xls:
26
26
27
27
``` ruby
28
28
config.download_links = %i[csv xml json xls]
@@ -160,6 +160,20 @@ BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake setup
160
160
BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake
161
161
```
162
162
163
+ ### Rails 6.0
164
+
165
+ ``` text
166
+ bundle install --gemfile=gemfiles/rails_60.gemfile
167
+ ```
168
+
169
+ ``` text
170
+ BUNDLE_GEMFILE=gemfiles/rails_60.gemfile bundle exec rake setup
171
+ ```
172
+
173
+ ``` text
174
+ BUNDLE_GEMFILE=gemfiles/rails_60.gemfile bundle exec rake
175
+ ```
176
+
163
177
[ Active Admin ] :https://www.activeadmin.info/
164
178
[ activeadmin-axlsx ] :https://github.com/randym/activeadmin-axlsx
165
179
[ to_xls ] :https://github.com/splendeo/to_xls
@@ -174,4 +188,4 @@ BUNDLE_GEMFILE=gemfiles/rails_52.gemfile bundle exec rake
174
188
[ codecov_badge ] : https://codecov.io/gh/thambley/activeadmin-xls/branch/master/graph/badge.svg
175
189
[ codecov ] : https://codecov.io/gh/thambley/activeadmin-xls
176
190
[ inch_badge ] : http://inch-ci.org/github/thambley/activeadmin-xls.svg?branch=master
177
- [ inch ] : http://inch-ci.org/github/thambley/activeadmin-xls
191
+ [ inch ] : http://inch-ci.org/github/thambley/activeadmin-xls
Original file line number Diff line number Diff line change 1
1
module ActiveAdmin
2
2
module Xls
3
3
# ActiveAdmin XLS gem version
4
- VERSION = '2.0.1 ' . freeze
4
+ VERSION = '2.0.2 ' . freeze
5
5
end
6
6
end
You can’t perform that action at this time.
0 commit comments