jbarnette-johnson 1.0.0.200808062051 → 1.0.0.200808062111

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/johnson.gemspec +1 -1
  2. data/lib/johnson/runtime.rb +2 -2
  3. metadata +1 -1
data/johnson.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{johnson}
3
- s.version = "1.0.0.200808062051"
3
+ s.version = "1.0.0.200808062111"
4
4
 
5
5
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
6
6
  s.authors = ["John Barnette", "Aaron Patterson", "Yehuda Katz", "Matthew Draper"]
@@ -25,8 +25,8 @@ module Johnson
25
25
  delegate.global
26
26
  end
27
27
 
28
- def load(file)
29
- delegate.evaluate(IO.read(file), file, 1)
28
+ def load(*files)
29
+ files.each { |f| delegate.evaluate(IO.read(f), f, 1) }
30
30
  end
31
31
 
32
32
  ###
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jbarnette-johnson
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.200808062051
4
+ version: 1.0.0.200808062111
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Barnette