technicalpickles-jeweler 0.0.0 → 0.0.2
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/jeweler/version.rb +1 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
s.homepage = "http://github.com/technicalpickles/jeweler"
|
16
16
|
s.description = "Simple and opinionated helper for creating Rubygem projects on GitHub"
|
17
17
|
s.authors = ["Josh Nichols"]
|
18
|
-
s.files = FileList["[A-Z]*"]
|
18
|
+
s.files = FileList["[A-Z]*", "{generators,lib,test}/**/*"]
|
19
19
|
end
|
20
20
|
|
21
21
|
Note, we don't include 'date', or 'version'. Jeweler takes care of that.
|
data/Rakefile
CHANGED
@@ -11,5 +11,5 @@ Jeweler.gemspec = Gem::Specification.new do |s|
|
|
11
11
|
s.homepage = "http://github.com/technicalpickles/jeweler"
|
12
12
|
s.description = "Simple and opinionated helper for creating Rubygem projects on GitHub"
|
13
13
|
s.authors = ["Josh Nichols"]
|
14
|
-
s.files =
|
14
|
+
s.files = FileList["[A-Z]*", "{generators,lib,test}/**/*"]
|
15
15
|
end
|
data/lib/jeweler/version.rb
CHANGED