main 3.0.2 → 3.0.3

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.
Files changed (4) hide show
  1. data/lib/main.rb +1 -1
  2. data/lib/main/program.rb +2 -2
  3. data/main.gemspec +1 -1
  4. metadata +1 -1
@@ -2,7 +2,7 @@ module Main
2
2
  #
3
3
  # top level constants
4
4
  #
5
- Main::VERSION = '3.0.2' unless
5
+ Main::VERSION = '3.0.3' unless
6
6
  defined? Main::VERSION
7
7
  def self.version() Main::VERSION end
8
8
 
@@ -1,6 +1,6 @@
1
1
  module Main
2
2
  class Program
3
- require 'lib/main/program/class_methods.rb'
4
- require 'lib/main/program/instance_methods.rb'
3
+ require File.dirname(__FILE__) + '/program/class_methods.rb'
4
+ require File.dirname(__FILE__) + '/program/instance_methods.rb'
5
5
  end
6
6
  end
@@ -4,7 +4,7 @@
4
4
  Gem::Specification::new do |spec|
5
5
  spec.name = "main"
6
6
  spec.description = 'a class factory and dsl for generating command line programs real quick'
7
- spec.version = "3.0.2"
7
+ spec.version = "3.0.3"
8
8
  spec.platform = Gem::Platform::RUBY
9
9
  spec.summary = "main"
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: main
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ara T. Howard