gemtronics 0.7.1 → 0.7.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.
Files changed (2) hide show
  1. data/lib/gemtronics/manager.rb +5 -6
  2. metadata +1 -1
@@ -48,19 +48,18 @@ module Gemtronics
48
48
  def warp_drive(name, options = {})
49
49
  options = {:load => false}.merge(options)
50
50
  group(:warp_drives) {|g| g.add(name, options)}
51
- if defined?(RAILS_ENV)
52
- group(RAILS_ENV.to_sym) {|g| g.add(name, options)}
53
- end
54
51
  begin
55
- find_and_require_gem(name)
52
+ g = find(name, :group => :warp_drives)
53
+ g.require_gem
56
54
  load(WarpDrive::Path.config.gemtronics.rb)
57
55
  rescue Exception => e
58
56
  if e.message.match(/Could not find RubyGem #{name}/)
59
- cmd = find(name).install_command
57
+ g = find(name, :group => :warp_drives)
58
+ cmd = g.install_command
60
59
  puts cmd
61
60
  system cmd
62
61
  Gem.clear_paths
63
- find_and_require_gem(name)
62
+ g.require_gem
64
63
  load(WarpDrive::Path.config.gemtronics.rb)
65
64
  end
66
65
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemtronics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - markbates