erp_products 3.0.2 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +1,5 @@
1
1
  = ErpProducts
2
2
 
3
+ The Products Engine implements ProductType and ProductInstance, as well as a number of classes
4
+ to support product catalog-type functions and search/shopping scenarios.
5
+
@@ -0,0 +1,9 @@
1
+ class AddInternalIdentifierToProductType < ActiveRecord::Migration
2
+ def self.up
3
+ add_column :product_types, :internal_identifier, :string
4
+ end
5
+
6
+ def self.down
7
+ remove_column :product_types, :internal_identifier
8
+ end
9
+ end
@@ -2,7 +2,7 @@ module ErpProducts
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erp_products
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-25 00:00:00.000000000 Z
12
+ date: 2012-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: erp_app
16
- requirement: &2153107000 !ruby/object:Gem::Requirement
16
+ requirement: &70179786697380 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '3.0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2153107000
24
+ version_requirements: *70179786697380
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: erp_dev_svcs
27
- requirement: &2153106500 !ruby/object:Gem::Requirement
27
+ requirement: &70179786695080 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '3.0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *2153106500
35
+ version_requirements: *70179786695080
36
36
  description: ! 'The Products Engine implements ProductType and ProductInstance, as
37
37
  well as a number of classes to support product catalog-type functions and search/shopping
38
38
  scenarios. '
@@ -67,6 +67,7 @@ files:
67
67
  - db/data_migrations/20110728201730_create_desktop_app_product_manager.rb
68
68
  - db/migrate/20080805000040_base_products.rb
69
69
  - db/migrate/20080805000041_base_products_indexes.rb
70
+ - db/migrate/20120612195842_add_internal_identifier_to_product_type.rb
70
71
  - lib/erp_products/engine.rb
71
72
  - lib/erp_products/extensions/active_record/acts_as_product_instance.rb
72
73
  - lib/erp_products/extensions/active_record/acts_as_product_offer.rb
@@ -136,7 +137,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
137
  version: '0'
137
138
  requirements: []
138
139
  rubyforge_project:
139
- rubygems_version: 1.8.15
140
+ rubygems_version: 1.8.11
140
141
  signing_key:
141
142
  specification_version: 3
142
143
  summary: The Products Engine implements ProductType and ProductInstance, as well as