business_catalyst 0.1.0 → 0.1.1

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
  SHA1:
3
- metadata.gz: 3417d7cd299af29d9ef7c26b7fd7f4b6667c2ed5
4
- data.tar.gz: 5574296fb9838e4fcbf76c4a89b2319866fb0b75
3
+ metadata.gz: ebd523e90badcb23d6f42231fff79aa330fc1aba
4
+ data.tar.gz: 338d09a05a59a264e99f3fef3cd99a5172e4b394
5
5
  SHA512:
6
- metadata.gz: c83fe2e411426b7ab1fb19ed55a10265f33e66f264d75bbe33e821161bfb1896fbfb4ccb74541e34e11e8c36a6452dc68c69df500f6878bdca209b42e417c41a
7
- data.tar.gz: 814db6e8948d5dde147520763164662b78dae8fed2e8dae662b1739e6641c5d4f225744856125c1dd9bad25d45f46d3827019ed6888d64af98ba83375396d5e9
6
+ metadata.gz: 49ae8e6de8384791115ec8ed422880f1cbef57fe32e5ee83dd673f2615fd8c42d52a4de9c4656e3ceb71e8f43c285e1658e9eab1e68ec36abb482f59d08e8261
7
+ data.tar.gz: 13f7cf5e67f510372cb4e6b02a3efa4b54f0f2bb33b28ae0002f33f8f2b7dd2bc29293c465b7675731431c9633b6ab10b3b81ae6614ac4c596ce9707ac19a13d
data/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # BusinessCatalyst
2
2
 
3
- Tools for building CSV's for Adobe Business Catalyst e-commerce platform in Ruby.
3
+ Tools for building CSV's for 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.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
- gem 'business_catalyst', '~> 0.1.0'
9
+ gem 'business_catalyst', '~> 0.1.1'
10
10
 
11
11
  And then execute:
12
12
 
@@ -97,7 +97,7 @@ See the class definition for all available options.
97
97
  3. Run tests:
98
98
 
99
99
  $ bundle install
100
- $ bundle exec rspec
100
+ $ bundle exec rspec spec
101
101
 
102
102
  4. Commit your changes (`git commit -am 'Add some feature'`)
103
103
  5. Push to the branch (`git push origin my-new-feature`)
@@ -8,10 +8,11 @@ Gem::Specification.new do |spec|
8
8
  spec.version = BusinessCatalyst::VERSION
9
9
  spec.authors = ["Tortus Tek, Inc."]
10
10
  spec.email = ["support@tortus.com"]
11
- spec.description = %q{Libraries to help with exporting product data to BC.}
11
+ 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.}
12
12
  spec.summary = "business_catalyst-#{BusinessCatalyst::VERSION}"
13
13
  spec.homepage = "https://github.com/tortus/business_catalyst"
14
14
  spec.license = "MIT"
15
+ spec.required_ruby_version = '>= 1.8.7'
15
16
 
16
17
  spec.files = `git ls-files`.split($/)
17
18
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
@@ -1,3 +1,3 @@
1
1
  module BusinessCatalyst
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: business_catalyst
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tortus Tek, Inc.
@@ -52,7 +52,10 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.14'
55
- description: Libraries to help with exporting product data to BC.
55
+ description: Tools for creating CSV's for the Adobe Business Catalyst e-commerce platform
56
+ in Ruby. Use a Ruby DSL to turn your data into CSV's that can be imported in the
57
+ BC admin. Supports product and catalog CSV's, and splitting large CSV's (over 10k
58
+ products) into multiple files.
56
59
  email:
57
60
  - support@tortus.com
58
61
  executables: []
@@ -111,7 +114,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
111
114
  requirements:
112
115
  - - ">="
113
116
  - !ruby/object:Gem::Version
114
- version: '0'
117
+ version: 1.8.7
115
118
  required_rubygems_version: !ruby/object:Gem::Requirement
116
119
  requirements:
117
120
  - - ">="
@@ -122,7 +125,7 @@ rubyforge_project:
122
125
  rubygems_version: 2.4.5.1
123
126
  signing_key:
124
127
  specification_version: 4
125
- summary: business_catalyst-0.1.0
128
+ summary: business_catalyst-0.1.1
126
129
  test_files:
127
130
  - spec/lib/business_catalyst/business_catalyst_spec.rb
128
131
  - spec/lib/business_catalyst/csv/catalog_row_spec.rb