real_include 0.1.0-i386-mingw32 → 0.1.1-i386-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +1 -1
- data/Rakefile +1 -1
- data/lib/{real_include.rb → _real_include.rb} +0 -0
- data/lib/real_include/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
@@ -4,7 +4,7 @@ Real Include
|
|
4
4
|
(c) John Mair (banisterfiend)
|
5
5
|
MIT license
|
6
6
|
|
7
|
-
** Currently
|
7
|
+
** Currently supports Ruby 1.9 only **
|
8
8
|
|
9
9
|
Removes the shackles from Module#include - use Module#real_include to
|
10
10
|
bring in singleton classes from modules. No more ugly ClassMethods and
|
data/Rakefile
CHANGED
@@ -27,7 +27,7 @@ specification = Gem::Specification.new do |s|
|
|
27
27
|
|
28
28
|
# s.extensions = ["ext/real_include/extconf.rb"]
|
29
29
|
s.files = ["Rakefile", "README.markdown", "CHANGELOG",
|
30
|
-
"lib/
|
30
|
+
"lib/_real_include.rb", "lib/real_include/version.rb", "lib/real_include.so"]
|
31
31
|
FileList["ext/**/extconf.rb", "ext/**/*.h", "ext/**/*.c"].to_a
|
32
32
|
end
|
33
33
|
|
File without changes
|
data/lib/real_include/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: i386-mingw32
|
11
11
|
authors:
|
12
12
|
- John Mair (banisterfiend)
|
@@ -30,7 +30,7 @@ files:
|
|
30
30
|
- Rakefile
|
31
31
|
- README.markdown
|
32
32
|
- CHANGELOG
|
33
|
-
- lib/
|
33
|
+
- lib/_real_include.rb
|
34
34
|
- lib/real_include/version.rb
|
35
35
|
- lib/real_include.so
|
36
36
|
has_rdoc: false
|