rb2exe 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82bf7ff6f668ad5da61f87e6e54f83ba752259e9
4
- data.tar.gz: 34899af80ea63fe91ffd11a60668461b3890aea6
3
+ metadata.gz: 38a394dd7dbed56928cacd5698465865a7aeb1c2
4
+ data.tar.gz: e8a0d5092a699452b1a81265703b9a4b106fcfb5
5
5
  SHA512:
6
- metadata.gz: a42f7b20c9a10b984d85d98e15fc25c0b02c3e2c444e012fdda5e6e23b0bcdffabdb1e12cbe0312e8544d4c6b321851dc55e2f93c61ddb5b322b3bae228c00cb
7
- data.tar.gz: 5b1d87b5c04eaba78089d3879367fe436667f9f5bcef2139facc41a4c8675b15d18b6e630813a89f6820e6d8306216abe32a4061fa3ebd1735faecefdea28f16
6
+ metadata.gz: 139d10f1ce2b8dc390294094228d70a52dbfe7d92cd49524709c4753e142271c4a3a7c145336095f66bcc6ccdeb1215af5a5a65c46af11f9717b54dbdf0c2e09
7
+ data.tar.gz: 9346064b1e96d8960f8f2d54433589e9f7b4172e5b25f9e321e99241b4465a894a10f10edf2641636b502f24092c80ae877bcb91dba77accc2b92c2ac76d4a32
data/README.md CHANGED
@@ -98,7 +98,8 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/lourei
98
98
 
99
99
 
100
100
  # Changelog
101
- * 0.2.0: adding support to handle ARGV being passed to the ruby script (thanks @dabooze)
101
+ * 0.2.0: adding support to handle ARGV being passed to the ruby script (thanks @dabooze);
102
+ * 0.2.1: add missing "bundle" requirement;
102
103
 
103
104
  ## TODO
104
105
 
data/bin/rb2exe CHANGED
@@ -6,6 +6,7 @@
6
6
  require_relative "../lib/rb2exe/version.rb"
7
7
  require "tmpdir"
8
8
  require 'optparse'
9
+ require 'bundler'
9
10
 
10
11
  def blank?(arg)
11
12
  "#{arg}".strip == ""
@@ -1,3 +1,3 @@
1
1
  module Rb2exe
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rb2exe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Loureiro