hen 0.1.8 → 0.1.9

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/README +1 -1
  2. data/lib/hen/dsl.rb +4 -0
  3. data/lib/hen/version.rb +1 -1
  4. metadata +1 -1
data/README CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  == VERSION
4
4
 
5
- This documentation refers to hen version 0.1.8
5
+ This documentation refers to hen version 0.1.9
6
6
 
7
7
 
8
8
  == DESCRIPTION
data/lib/hen/dsl.rb CHANGED
@@ -143,6 +143,10 @@ class Hen
143
143
  def init_git
144
144
  class << git = Object.new
145
145
 
146
+ instance_methods.each { |method|
147
+ undef_method(method) unless method =~ /\A__/
148
+ }
149
+
146
150
  def method_missing(cmd, *args)
147
151
  sh 'git', cmd.to_s.tr('_', '-'), *args
148
152
  end
data/lib/hen/version.rb CHANGED
@@ -4,7 +4,7 @@ class Hen
4
4
 
5
5
  MAJOR = 0
6
6
  MINOR = 1
7
- TINY = 8
7
+ TINY = 9
8
8
 
9
9
  class << self
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jens Wille