genesis 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. data/History.txt +7 -2
  2. data/VERSION +1 -1
  3. data/genesis.gemspec +2 -2
  4. data/lib/genesis.rb +2 -1
  5. metadata +2 -2
@@ -1,10 +1,15 @@
1
- = 0.0.2 2009-12-15
1
+ == 0.0.3 2010-01-04
2
+
3
+ * Fixed a file include issue to make Genesis work with bundler gem.
4
+
5
+
6
+ == 0.0.2 2009-12-15
2
7
 
3
8
  * Fixed bug with camelcase vs camelize causing different results (ie. methodName vs MethodName) on
4
9
  linux systems
5
10
 
6
11
 
7
- = 0.0.1 2009-12-12
12
+ == 0.0.1 2009-12-12
8
13
 
9
14
  * Added prepare seeding generator
10
15
  * Added seed file generator
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{genesis}
8
- s.version = "0.0.2"
8
+ s.version = "0.0.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["C. Jason Harrelson (midas)"]
12
- s.date = %q{2009-12-15}
12
+ s.date = %q{2010-01-04}
13
13
  s.description = %q{A data seeding solution for Ruby on Rails providing seeding facilities far more advanced than the current built in Ruby on Rails solution.}
14
14
  s.email = %q{jason@lookforwardenterprises.com}
15
15
  s.extra_rdoc_files = [
@@ -1,10 +1,11 @@
1
1
  $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
+ require 'genesis/active_record_extensions'
4
5
  require 'genesis/seeder'
5
6
 
6
7
  module Genesis
7
- VERSION = '0.0.1'
8
+ VERSION = '0.0.3'
8
9
  end
9
10
 
10
11
  ActiveRecord::Base.send :include, Genesis::ActiveRecordExtensions if defined? ActiveRecord::Base
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: genesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - C. Jason Harrelson (midas)
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-15 00:00:00 -06:00
12
+ date: 2010-01-04 00:00:00 -06:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency