seabass 0.2.1 → 0.2.2

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -1,3 +1,3 @@
1
- create_task :consume_package, Proc.new { FeatureConsumer.new } do |r|
1
+ create_task :consume_features, Proc.new { FeatureConsumer.new } do |r|
2
2
  r.execute
3
3
  end
@@ -1,3 +1,3 @@
1
- create_task :package_feature, Proc.new { FeaturePackage.new } do |r|
1
+ create_task :package_feature, Proc.new { FeaturePackager.new } do |r|
2
2
  r.execute
3
3
  end
@@ -1,6 +1,10 @@
1
1
  require 'ftools'
2
2
 
3
3
  class FeatureConsumer
4
+ include RunCommand
5
+ include YAMLConfig
6
+ include Logging
7
+
4
8
  attr_accessor :package_dir, :consumer_dir, :application_name
5
9
 
6
10
  def execute()
@@ -2,6 +2,9 @@ require 'ftools'
2
2
  require 'yaml'
3
3
 
4
4
  class FeaturePackager
5
+ include RunCommand
6
+ include YAMLConfig
7
+ include Logging
5
8
 
6
9
  attr_accessor :source_dir, :package_dir, :valid_file_types
7
10
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seabass
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - James Hollingworth