grimen-bootstrapper 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/bootstrapper.rb +2 -0
  2. data/lib/tasks.rb +3 -0
  3. metadata +5 -3
data/lib/bootstrapper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ require 'tasks'
2
+
1
3
  class Bootstrapper
2
4
  class_inheritable_accessor :tasks
3
5
  write_inheritable_attribute :tasks, HashWithIndifferentAccess.new
data/lib/tasks.rb ADDED
@@ -0,0 +1,3 @@
1
+ Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), '..', 'tasks', '*.rake'))).uniq.each do |file|
2
+ require file
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grimen-bootstrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sevenwire
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-07-14 00:00:00 -07:00
12
+ date: 2009-08-02 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -30,10 +30,12 @@ files:
30
30
  - lib/bootstrapper.rb
31
31
  - lib/connection_adapters/abstract_adapter.rb
32
32
  - lib/connection_adapters/mysql_adapter.rb
33
+ - lib/tasks.rb
33
34
  - tasks/bootstrap.rake
34
35
  - test/bootstrapper_test.rb
35
36
  has_rdoc: false
36
37
  homepage: http://github.com/grimen/bootstrapper/tree/master
38
+ licenses:
37
39
  post_install_message:
38
40
  rdoc_options:
39
41
  - --charset=UTF-8
@@ -54,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
56
  requirements: []
55
57
 
56
58
  rubyforge_project:
57
- rubygems_version: 1.2.0
59
+ rubygems_version: 1.3.5
58
60
  signing_key:
59
61
  specification_version: 3
60
62
  summary: A Rails plugin to assist in bootstrapping and seeding your database.