acts_as_xlsx 1.0.2 → 1.0.3

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.
data/Gemfile DELETED
@@ -1,8 +0,0 @@
1
- source "http://rubygems.org"
2
- gem 'axlsx', '>= 1.0.10'
3
- gem 'activerecord', '>= 2.3.9'
4
- gem 'i18n', '>= 0.6.0'
5
- gem 'rake', '>= 0.9.2'
6
- gem 'yard'
7
- gem 'rdiscount'
8
- gem 'sqlite3'
@@ -1,44 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- activemodel (3.1.3)
5
- activesupport (= 3.1.3)
6
- builder (~> 3.0.0)
7
- i18n (~> 0.6)
8
- activerecord (3.1.3)
9
- activemodel (= 3.1.3)
10
- activesupport (= 3.1.3)
11
- arel (~> 2.2.1)
12
- tzinfo (~> 0.3.29)
13
- activesupport (3.1.3)
14
- multi_json (~> 1.0)
15
- arel (2.2.1)
16
- axlsx (1.0.10)
17
- activesupport (>= 2.3.9)
18
- i18n (>= 0.6.0)
19
- nokogiri (>= 1.4.1)
20
- rmagick (>= 2.12.2)
21
- zip (>= 2.0.2)
22
- builder (3.0.0)
23
- i18n (0.6.0)
24
- multi_json (1.0.4)
25
- nokogiri (1.5.0)
26
- rake (0.9.2.2)
27
- rdiscount (1.6.8)
28
- rmagick (2.13.1)
29
- sqlite3 (1.3.4)
30
- tzinfo (0.3.31)
31
- yard (0.7.3)
32
- zip (2.0.2)
33
-
34
- PLATFORMS
35
- ruby
36
-
37
- DEPENDENCIES
38
- activerecord (>= 2.3.9)
39
- axlsx (>= 1.0.10)
40
- i18n (>= 0.6.0)
41
- rake (>= 0.9.2)
42
- rdiscount
43
- sqlite3
44
- yard
@@ -1,34 +0,0 @@
1
- require 'rake'
2
- acts_as_xlsx_version = "1.0.2"
3
- Gem::Specification.new do |s|
4
- s.name = 'acts_as_xlsx'
5
- s.version = acts_as_xlsx_version
6
- s.author = "Randy Morgan"
7
- s.email = 'digital.ipseity@gmail.com'
8
- s.homepage = 'https://github.com/randym/acts_as_xlsx'
9
- s.platform = Gem::Platform::RUBY
10
- s.date = Time.now.strftime('%Y-%m-%d')
11
- s.summary = "ActiveRecord support for Axlsx"
12
- s.has_rdoc = 'acts_as_xlsx'
13
- s.description = <<-eof
14
- acts_as_xlsx lets you turn any ActiveRecord::Base inheriting class into an excel spreadsheet.
15
- eof
16
- # s.files = Dir.glob("{doc,lib,test,schema,examples}/**/*") + %w{ LICENSE README.md Rakefile CHANGELOG.md }
17
-
18
- s.files = FileList.new('*', 'lib/**/*', 'doc/**/*', 'test/**/*', 'examples/**/*') do |fl|
19
- fl.exclude("*.*~")
20
- fl.exclude(".*")
21
- fl.exclude("todo")
22
- fl.exclude("*.gem")
23
- fl.exclude("*.xlsx")
24
- end
25
-
26
- s.add_runtime_dependency 'axlsx', '>= 1.0.10'
27
- s.add_runtime_dependency 'activerecord', '>= 2.3.9'
28
- s.add_runtime_dependency 'i18n', '>=0.6.0'
29
-
30
- # required for running tests
31
- s.add_development_dependency 'sqlite3'
32
- s.add_development_dependency 'rake', '>= 0.9.2'
33
-
34
- end