-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanlas_import.gemspec
More file actions
28 lines (22 loc) · 925 Bytes
/
anlas_import.gemspec
File metadata and controls
28 lines (22 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "anlas_import/version"
Gem::Specification.new do |s|
s.name = 'anlas_import'
s.version = AnlasImport::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['redfield', 'Tyralion']
s.email = ['info@dancingbytes.ru']
s.homepage = 'https://github.com/dancingbytes/anlas_import'
s.summary = 'Import from 1c (xml) to mongodb.'
s.description = 'Import from 1c (xml) to mongodb.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.extra_rdoc_files = ['README.md']
s.require_paths = ['lib']
s.licenses = ['BSD']
s.add_dependency 'railties'
s.add_dependency 'nokogiri', '~> 1.6.0'
s.add_dependency 'rubyzip', '1.1.7'
s.add_dependency 'logger'
end