genesis 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +7 -2
- data/VERSION +1 -1
- data/genesis.gemspec +2 -2
- data/lib/genesis.rb +2 -1
- metadata +2 -2
data/History.txt
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
-
|
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
|
-
|
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.
|
1
|
+
0.0.3
|
data/genesis.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{genesis}
|
8
|
-
s.version = "0.0.
|
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{
|
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 = [
|
data/lib/genesis.rb
CHANGED
@@ -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.
|
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.
|
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:
|
12
|
+
date: 2010-01-04 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|