rmtools 1.1.9 → 1.1.10

Sign up to get free protection for your applications and to get access to all the features.
data/README.txt CHANGED
@@ -8,6 +8,10 @@ Methods for basic classes addon collection.
8
8
 
9
9
  == CHANGES
10
10
 
11
+ === Version 1.1.10
12
+
13
+ * Some bugfixes for previous updates
14
+
11
15
  === Version 1.1.8
12
16
 
13
17
  * Deleted String#to_proc. It's anyway inconsistent and causes bug in ActiveRecord 3.0.5 Base#interpolate_and_sanitize_sql and potentially somewhere else
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rake'
2
2
  require 'lib/rmtools/install'
3
3
  compile_manifest
4
4
 
5
- RMTOOLS_VERSION = '1.1.9'
5
+ RMTOOLS_VERSION = '1.1.10'
6
6
  begin
7
7
  require 'hoe'
8
8
  config = Hoe.spec 'rmtools' do
@@ -36,7 +36,7 @@ class Object
36
36
  end
37
37
 
38
38
  def readable_variables
39
- public_methods.to_ss & instance_variables.map(&'[1..-1]')
39
+ public_methods.to_ss & instance_variables.map {|v|v[1..-1]}
40
40
  end
41
41
 
42
42
  def load_from(obj)
@@ -16,7 +16,7 @@ class Proc
16
16
  end
17
17
 
18
18
  if RUBY_VERSION < '1.9'
19
- def source_location; str.match(/([^@]+):(\d+)>$/)[1..2] end
19
+ def source_location; to_s.match(/([^@]+):(\d+)>$/)[1..2] end
20
20
  end
21
21
 
22
22
  end
@@ -1,2 +1,2 @@
1
1
  # encoding: utf-8
2
- RMTools::require 'debug/{observing,timer}'
2
+ RMTools::require 'debug/{observing,timer,trace_format}'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rmtools
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 9
10
- version: 1.1.9
9
+ - 10
10
+ version: 1.1.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - Shinku
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-17 00:00:00 +03:00
18
+ date: 2011-03-24 00:00:00 +03:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency