local_eval 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -71,6 +71,11 @@ How it works
71
71
 
72
72
  Makes use of companion libraries: Remix and Object2module
73
73
 
74
+ Thread Safety
75
+ --------------
76
+
77
+ `local_eval` is not threadsafe.
78
+
74
79
  Companion Libraries
75
80
  --------------------
76
81
 
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ require "#{direc}/lib/local_eval/version"
8
8
  CLOBBER.include("**/*.#{dlext}", "**/*~", "**/*#*", "**/*.log", "**/*.o")
9
9
  CLEAN.include("ext/**/*.#{dlext}", "ext/**/*.log", "ext/**/*.o",
10
10
  "ext/**/*~", "ext/**/*#*", "ext/**/*.obj",
11
- "ext/**/*.def", "ext/**/*.pdb", "**/*_flymake*.*")
11
+ "ext/**/*.def", "ext/**/*.pdb", "**/*_flymake*.*", "**/*_flymake")
12
12
 
13
13
  def apply_spec_defaults(s)
14
14
  s.name = "local_eval"
@@ -1,3 +1,3 @@
1
1
  module LocalEval
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 5
9
- version: 0.2.5
8
+ - 6
9
+ version: 0.2.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - John Mair (banisterfiend)