coderunner 0.14.8 → 0.14.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23b9b9dd9410fd8ea4b6c1cf7ff0755dbe2e0442
4
- data.tar.gz: f29de52edf2520046e38592918a9e3b6a9e1258c
3
+ metadata.gz: 4df19c83ee4292ddd16cf679395b22b49e91eaa5
4
+ data.tar.gz: a34e1d0fecc2f93c9ebc492461c0400827a8b2c5
5
5
  SHA512:
6
- metadata.gz: 239ca9844f912a564a2135099abe94eacf4a9a9676eab0760da8a06955ad2628389f32808e15fbe671cac51dbacc11688ff308e123951e505b2cf9514867bff3
7
- data.tar.gz: 3d7a5ca6fe27109a91fa3b529a8652adff17f148ac37cebfbf9f7abce3e6314d19bc306b42cc1a8e6eac999468a41c02af7a24ef8dbd4a671603c9b7df6d3919
6
+ metadata.gz: 947b961fcb3e1fdd0eb44f1ac74ea0f4b284bd18c665a604e7c93862e289c056399abbb488b9f6460f797b281b168a32585f917cdfb6fae1997dff282c0d72c5
7
+ data.tar.gz: 7d102e4e57fc263f47f595ba4a08b925db26073f6c16b584aa8bca63ad85562c1314871cb5013506c5fc98ff933ba4d12dcaf9e104e4e88b5200ce7b02bda43e
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.14.8
1
+ 0.14.9
data/coderunner.gemspec CHANGED
@@ -2,12 +2,12 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: coderunner 0.14.8 ruby lib
5
+ # stub: coderunner 0.14.9 ruby lib
6
6
  # stub: ext/extconf.rb
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "coderunner"
10
- s.version = "0.14.8"
10
+ s.version = "0.14.9"
11
11
 
12
12
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
13
13
  s.require_paths = ["lib"]
@@ -747,7 +747,7 @@ EOF
747
747
  return Merged.new(*runners)
748
748
  end
749
749
  process_command_options(copts)
750
- ep copts
750
+ #ep copts
751
751
  @runners ||= {}
752
752
  runner = nil
753
753
  if copts[:Y] and copts[:Y] =~ /:/
@@ -372,7 +372,6 @@ class CodeRunner
372
372
  modlet = options[:modlet]
373
373
  version = options[:version]
374
374
  # log('modlet in setup_run_class', modlet)
375
- eputs "Loading modules for #{code}, #{modlet.inspect}..."
376
375
 
377
376
  # modlet = modlet.sub(/\.rb$/, '') if modlet
378
377
  raise CRFatal.new("Code must contain only lowercase letters, digits, and underscore, and must begin with a letter or underscore; it is '#{code}'") unless code =~ /\A[a-z_][a-z_\d]*\Z/
@@ -384,6 +383,7 @@ class CodeRunner
384
383
 
385
384
  return recursive_const_get(run_class_name) if SETUP_RUN_CLASSES.include?(run_class_name) #constants.include? (run_class_name).to_sym unless options[:force] #and const_get(run_class_name).rcp.code?
386
385
  #return const_get(run_class_name) if constants.include? (run_class_name).to_sym unless options[:force] #and const_get(run_class_name).rcp.code?
386
+ eputs "Loading modules for #{code}, #{modlet.inspect}..."
387
387
  SETUP_RUN_CLASSES.push run_class_name #.downcase
388
388
  FileUtils.makedirs(ENV['HOME'] + "/.coderunner/#{code}crmod/")
389
389
  FileUtils.makedirs(ENV['HOME'] + "/.coderunner/#{code}crmod/defaults_files")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coderunner
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.8
4
+ version: 0.14.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edmund Highcock