Skip to content

Commit b41740c

Browse files
committedJun 8, 2016
tidy up
1 parent 9a2e3a6 commit b41740c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
**v1.1.2** Refactor `runner.rb` to `runner.rb`, `args.rb` and `installer.rb`. The `Installer` class has the role of installing `jruby-complete`, the examples and providing `setup check` functionality. Refactored and improved default `config.yml` tool, all should make it easier for `collaborators/successors` to follow the code.
2+
**v1.1.2** Refactor `runner.rb` to `runner.rb`, `args.rb` and `installer.rb`. The `Installer` classes have the role of installing `jruby-complete`, the examples and providing `setup check` functionality. Refactored and improved default `config.yml` tool, all should make it easier for `collaborators/successors` to follow the code.
33

44
**v1.1.1** Even more `data_path` fixes in examples, update to jruby-complete-9.1.2.0
55

‎lib/jruby_art/runner.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def watch(sketch, args)
122122

123123
def setup(choice)
124124
return Check.new(K9_ROOT, host_os).install if choice =~ /check/
125-
return JRubyComplete.new(K9_ROOT, host_os).install if choice if choice =~ /install/
125+
return JRubyComplete.new(K9_ROOT, host_os).install if choice =~ /install/
126126
return UnpackSamples.new(K9_ROOT, host_os).install if choice =~ /unpack_sample/
127127
Installer.new(K9_ROOT, host_os).install
128128
end

0 commit comments

Comments
 (0)
Please sign in to comment.