mack 0.4.2 → 0.4.2.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.
Files changed (3) hide show
  1. data/CHANGELOG +3 -0
  2. data/lib/tasks/gem_tasks.rake +1 -1
  3. metadata +1 -1
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ ===0.4.2.1
2
+ * Fixed bug with gems:list rake task that was looking in the wrong path for the gems.rb file.
3
+
1
4
  ===0.4.2
2
5
  * Added config/initializers directory. All files in this directory will be required at start up time.
3
6
  * Gems can now be required simply using the initializers/gems.rb file and the require_gems method.
@@ -25,7 +25,7 @@ namespace :gems do
25
25
  require 'utils/gem_manager'
26
26
  gem 'mack_ruby_core_extensions'
27
27
  require 'mack_ruby_core_extensions'
28
- require File.join(FileUtils.pwd, "config", "gems")
28
+ require File.join(FileUtils.pwd, "config", "initializers", "gems")
29
29
  require 'rubygems'
30
30
  require 'rubygems/gem_runner'
31
31
  Gem.manage_gems
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - markbates