thumblemonks-forklift 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 (2) hide show
  1. data/forklift.gemspec +36 -0
  2. metadata +2 -3
data/forklift.gemspec ADDED
@@ -0,0 +1,36 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = "forklift"
3
+ s.version = "0.1.1"
4
+ s.date = "2008-12-05"
5
+ s.summary = "IT'S FORKLIFT DUMMY"
6
+ s.email = %w[gus@gusg.us gabriel.gironda@gmail.com]
7
+ s.homepage = "http://github.com/thumblemonks/forklift/tree/master"
8
+ s.description = "Testing tool that allows for transactionless fixture data within specific contexts (useful in Shoulda and Factory Girl)"
9
+ s.authors = %w[Justin\ Knowlden Gabriel\ Gironda]
10
+
11
+ s.has_rdoc = false
12
+ s.rdoc_options = ["--main", "README.markdown"]
13
+ s.extra_rdoc_files = ["HISTORY.txt", "README.markdown"]
14
+
15
+ # run git ls-files to get an updated list
16
+ s.files = %w[
17
+ HISTORY.txt
18
+ MIT-LICENSE
19
+ README.markdown
20
+ Rakefile
21
+ forklift.gemspec
22
+ lib/forklift.rb
23
+ rails/context_extensions.rb
24
+ rails/fixture_loading_callbacks.rb
25
+ rails/init.rb
26
+ tasks/forklift_tasks.rake
27
+ ]
28
+
29
+ s.test_files = %w[
30
+ test/gem/forklift_test.rb
31
+ test/model_factory.rb
32
+ test/rails/fixture_transactions_test.rb
33
+ test/schema.rb
34
+ test/test_helper.rb
35
+ ]
36
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thumblemonks-forklift
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
  - Justin Knowlden
@@ -30,8 +30,7 @@ files:
30
30
  - MIT-LICENSE
31
31
  - README.markdown
32
32
  - Rakefile
33
- - init.rb
34
- - install.rb
33
+ - forklift.gemspec
35
34
  - lib/forklift.rb
36
35
  - rails/context_extensions.rb
37
36
  - rails/fixture_loading_callbacks.rb