rubygems-compile 1.0.0rc1 → 1.0.0rc2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rubygems-compile/compiler.rb +4 -3
- metadata +2 -2
@@ -47,9 +47,10 @@ class Gem::Compiler
|
|
47
47
|
#
|
48
48
|
|
49
49
|
def gem_files
|
50
|
-
|
51
|
-
files.
|
52
|
-
|
50
|
+
@spec.lib_files.select { |file| File.extname(file) == '.rb' }
|
51
|
+
# files = @spec.files - @spec.test_files - @spec.extra_rdoc_files
|
52
|
+
# files.reject { |file| file.match /^(?:test|spec)/ }
|
53
|
+
# .select { |file| file.match /\.rb$/ }
|
53
54
|
end
|
54
55
|
|
55
56
|
def compile_file_msg file
|
metadata
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
name: rubygems-compile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: 5
|
5
|
-
version: 1.0.
|
5
|
+
version: 1.0.0rc2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Mark Rada
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2011-06-
|
12
|
+
date: 2011-06-28 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|