hash_factory 1.0.0 → 2.0.0

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.
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 [name of plugin creator]
1
+ Copyright (c) 2009 [Brent Greeff]
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/Rakefile CHANGED
@@ -1,7 +1,6 @@
1
1
  require 'rake'
2
2
  require 'rake/testtask'
3
3
  require 'rake/rdoctask'
4
- require 'echoe'
5
4
 
6
5
  desc 'Default: run unit tests.'
7
6
  task :default => :test
@@ -22,14 +21,3 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
22
21
  rdoc.rdoc_files.include('README')
23
22
  rdoc.rdoc_files.include('lib/**/*.rb')
24
23
  end
25
-
26
- Echoe.new('hash_factory', '1.0.0') do |p|
27
- p.description = "Simple Rails factories"
28
- p.url = "http://github.com/brentgreeff/hash_factory"
29
- p.author = "Brent Greeff"
30
- p.email = ""
31
- p.ignore_pattern = ["init.rb", "install.rb", "uninstall.rb"]
32
- p.development_dependencies = []
33
- end
34
-
35
- Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 2.0.0
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hash_factory
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 15
4
5
  prerelease: false
5
6
  segments:
6
- - 1
7
+ - 2
7
8
  - 0
8
9
  - 0
9
- version: 1.0.0
10
+ version: 2.0.0
10
11
  platform: ruby
11
12
  authors:
12
13
  - Brent Greeff
@@ -14,69 +15,61 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-03-23 00:00:00 +00:00
18
+ date: 2010-10-30 00:00:00 +01:00
18
19
  default_executable:
19
20
  dependencies: []
20
21
 
21
- description: Simple Rails factories
22
- email: ""
22
+ description: Rails factory testing with a very clean interface.
23
+ email: email@brentgreeff.com
23
24
  executables: []
24
25
 
25
26
  extensions: []
26
27
 
27
28
  extra_rdoc_files:
29
+ - MIT-LICENSE
28
30
  - README.rdoc
29
- - lib/hash_factory.rb
30
- - lib/hash_factory_builder.rb
31
- - tasks/hash_factory_tasks.rake
32
31
  files:
33
32
  - MIT-LICENSE
34
33
  - README.rdoc
35
34
  - Rakefile
36
- - config/initializers/factory_in_console.rb
35
+ - VERSION
37
36
  - lib/hash_factory.rb
38
37
  - lib/hash_factory_builder.rb
39
- - tasks/hash_factory_tasks.rake
40
38
  - test/hash_factory_test.rb
41
39
  - test/test_helper.rb
42
- - Manifest
43
- - hash_factory.gemspec
44
40
  has_rdoc: true
45
41
  homepage: http://github.com/brentgreeff/hash_factory
46
42
  licenses: []
47
43
 
48
44
  post_install_message:
49
45
  rdoc_options:
50
- - --line-numbers
51
- - --inline-source
52
- - --title
53
- - Hash_factory
54
- - --main
55
- - README.rdoc
46
+ - --charset=UTF-8
56
47
  require_paths:
57
48
  - lib
58
49
  required_ruby_version: !ruby/object:Gem::Requirement
50
+ none: false
59
51
  requirements:
60
52
  - - ">="
61
53
  - !ruby/object:Gem::Version
54
+ hash: 3
62
55
  segments:
63
56
  - 0
64
57
  version: "0"
65
58
  required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
66
60
  requirements:
67
61
  - - ">="
68
62
  - !ruby/object:Gem::Version
63
+ hash: 3
69
64
  segments:
70
- - 1
71
- - 2
72
- version: "1.2"
65
+ - 0
66
+ version: "0"
73
67
  requirements: []
74
68
 
75
- rubyforge_project: hash_factory
76
- rubygems_version: 1.3.6
69
+ rubyforge_project:
70
+ rubygems_version: 1.3.7
77
71
  signing_key:
78
72
  specification_version: 3
79
- summary: Simple Rails factories
80
- test_files:
81
- - test/hash_factory_test.rb
82
- - test/test_helper.rb
73
+ summary: Rails factory testing with a very clean interface.
74
+ test_files: []
75
+
data/Manifest DELETED
@@ -1,10 +0,0 @@
1
- MIT-LICENSE
2
- Manifest
3
- README.rdoc
4
- Rakefile
5
- config/initializers/factory_in_console.rb
6
- lib/hash_factory.rb
7
- lib/hash_factory_builder.rb
8
- tasks/hash_factory_tasks.rake
9
- test/hash_factory_test.rb
10
- test/test_helper.rb
@@ -1,4 +0,0 @@
1
- if $0 == 'irb'
2
- require 'hash_factory'
3
- HashFactory.load_in(self)
4
- end
data/hash_factory.gemspec DELETED
@@ -1,31 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{hash_factory}
5
- s.version = "1.0.0"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Brent Greeff"]
9
- s.date = %q{2010-03-23}
10
- s.description = %q{Simple Rails factories}
11
- s.email = %q{}
12
- s.extra_rdoc_files = ["README.rdoc", "lib/hash_factory.rb", "lib/hash_factory_builder.rb", "tasks/hash_factory_tasks.rake"]
13
- s.files = ["MIT-LICENSE", "README.rdoc", "Rakefile", "config/initializers/factory_in_console.rb", "lib/hash_factory.rb", "lib/hash_factory_builder.rb", "tasks/hash_factory_tasks.rake", "test/hash_factory_test.rb", "test/test_helper.rb", "Manifest", "hash_factory.gemspec"]
14
- s.homepage = %q{http://github.com/brentgreeff/hash_factory}
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Hash_factory", "--main", "README.rdoc"]
16
- s.require_paths = ["lib"]
17
- s.rubyforge_project = %q{hash_factory}
18
- s.rubygems_version = %q{1.3.6}
19
- s.summary = %q{Simple Rails factories}
20
- s.test_files = ["test/hash_factory_test.rb", "test/test_helper.rb"]
21
-
22
- if s.respond_to? :specification_version then
23
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24
- s.specification_version = 3
25
-
26
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
27
- else
28
- end
29
- else
30
- end
31
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :hash_factory do
3
- # # Task goes here
4
- # end