xlsxtream_rails 0.4.0 → 0.5.0

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
  SHA256:
3
- metadata.gz: 5502fc92614bd2379b7af762136ac5d37621264a14a8c95dd0c1675c06f8f8c1
4
- data.tar.gz: cf4eb50326cf589174c1dc941392a12f054d5142c48d2293b210100f37551403
3
+ metadata.gz: 9a54b0cad604244bd9547c4b096192ac193b7e326dc4b013eab909b78edea6c2
4
+ data.tar.gz: e565f309ddb38b134d307c1558dad4a2b0696787688af64853923de4bbbde1d9
5
5
  SHA512:
6
- metadata.gz: 1171bb419c8a365726ed516eb46f53ef6a658462ad1a810629ecec67fb69c040afcbe0c6d41adf785edf7da33161bb41cfd10008d163d5c79ed5ce783c89a81f
7
- data.tar.gz: 70566d1a3ff138d3840a343e6e6a6218fd13636764784a87656149856d702f3aa34d48ad5a409221c2ec9da0297adcdc974f09ae5c88abe65601e86269526e58
6
+ metadata.gz: cac8f0033dd5a7d1b2af96243e011d573da24885a2013ce819d66d806da6b28b88c18d30f6c9cd9bd96d61402df45bdd6081efe57a9ea2b2badcbec67728e66d
7
+ data.tar.gz: 1dfa9fffbdc4092d0ae4641d5311eaa27940fcad75af1b28645f75109622ea4543243ec3ef70fb45172c065359158326647d88b80995098243431f61590e1a7d
@@ -0,0 +1,8 @@
1
+ module XlsxtreamRails
2
+ module ClassMethods
3
+ # TODO
4
+ def to_xlsx
5
+ column_names.map { |x| x.to_sym }
6
+ end
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module XlsxtreamRails
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
@@ -1,11 +1,15 @@
1
1
  require "xlsxtream"
2
+ require "xlsxtream_rails/class_methods"
2
3
  require "xlsxtream_rails/utils"
3
4
  require "xlsxtream_rails/version"
4
5
  require "xlsxtream_rails/railtie"
5
6
 
6
7
  module XlsxtreamRails
8
+ def self.included(base)
9
+ base.send(:extend, ClassMethods)
10
+ end
11
+
7
12
  def xlsx_columns(opts = {})
8
- column_names = self.class.column_names
9
- column_names.map { |x| x.to_sym }
13
+ self.class.to_xlsx
10
14
  end
11
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xlsxtream_rails
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
  - doabit
@@ -51,6 +51,7 @@ files:
51
51
  - lib/tasks/xlsxtream_rails_tasks.rake
52
52
  - lib/xlsxtream_rails.rb
53
53
  - lib/xlsxtream_rails/action_controller.rb
54
+ - lib/xlsxtream_rails/class_methods.rb
54
55
  - lib/xlsxtream_rails/railtie.rb
55
56
  - lib/xlsxtream_rails/utils.rb
56
57
  - lib/xlsxtream_rails/version.rb