# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'business_catalyst/version' Gem::Specification.new do |spec| spec.name = "business_catalyst" spec.version = BusinessCatalyst::VERSION spec.authors = ["William Makley"] spec.email = ["support@tortus.com"] spec.description = %q{Tools for creating CSV's for the Adobe Business Catalyst e-commerce platform in Ruby. Use a Ruby DSL to turn your data into CSV's that can be imported in the BC admin. Supports product and catalog CSV's, and splitting large CSV's (over 10k products) into multiple files.} spec.summary = "business_catalyst-#{BusinessCatalyst::VERSION}" spec.homepage = "https://github.com/tortus/business_catalyst" spec.license = "MIT" spec.required_ruby_version = '>= 1.8.7' spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", ">= 1.3" spec.add_development_dependency "rake", "< 11.0" spec.add_development_dependency "rspec", "~> 2.14" spec.add_development_dependency "rdoc" end