Floppy-amee 0.1.0 → 0.1.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 (4) hide show
  1. data/bin/ameesh +2 -1
  2. data/lib/amee/shell.rb +1 -0
  3. data/lib/amee.rb +1 -1
  4. metadata +1 -1
data/bin/ameesh CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
+ shell_lib = File.dirname(__FILE__) + '/../lib/amee/shell'
3
4
  irb_name = RUBY_PLATFORM =~ /mswin32/ ? 'irb.bat' : 'irb'
4
5
 
5
6
  require 'optparse'
@@ -25,5 +26,5 @@ ENV['AMEE_PASSWORD'] = options[:password]
25
26
  if options[:server].nil? || options[:username].nil? || options[:password].nil?
26
27
  puts "Please provide connection details. Run 'ameesh --help' for details."
27
28
  else
28
- exec "#{irb_name} -r rubygems -r amee/shell --simple-prompt"
29
+ exec "#{irb_name} -r #{shell_lib} --simple-prompt"
29
30
  end
data/lib/amee/shell.rb CHANGED
@@ -55,6 +55,7 @@ module AMEE
55
55
  end
56
56
  end
57
57
 
58
+ require 'rubygems'
58
59
  require 'amee'
59
60
  include AMEE::Shell
60
61
 
data/lib/amee.rb CHANGED
@@ -11,7 +11,7 @@ module AMEE
11
11
  module VERSION #:nodoc:
12
12
  MAJOR = 0
13
13
  MINOR = 1
14
- TINY = 0
14
+ TINY = 1
15
15
  STRING = [MAJOR, MINOR, TINY].join('.')
16
16
  end
17
17
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Floppy-amee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Smith