gem_skeleton 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -16,7 +16,7 @@ It basically copied from ```bundle gem``` code and add some more templates and h
16
16
  * Guardfile, containing the rspec and spork configurations
17
17
  * spec/spec_helper.rb
18
18
  * tasks/rspec.rb - the rspec task file
19
- * tasks/ci.rb - the tasks for running ci on jenkins
19
+ * tasks/ci.rb - the tasks for running ci task on a continuous integration server
20
20
  * .rspec - rspec confiuration file
21
21
 
22
22
  ## Installation
@@ -1,4 +1,6 @@
1
- require "<%=config[:name]%>/version"
1
+ Dir["#{File.dirname(__FILE__)}/<%=config[:name]%>/**/*.rb"].each do |f|
2
+ require f
3
+ end
2
4
 
3
5
  <%- config[:constant_array].each_with_index do |c,i| -%>
4
6
  <%= ' '*i %>module <%= c %>
@@ -1,3 +1,3 @@
1
1
  module GemSkeleton
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem_skeleton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-20 00:00:00.000000000 Z
12
+ date: 2012-04-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 1.8.21
84
+ rubygems_version: 1.8.23
85
85
  signing_key:
86
86
  specification_version: 3
87
87
  summary: The command copies part of bundle gem code and add rspec and rvmrc support