test 0.3.1 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/.index +47 -0
  2. data/.ruby +24 -0
  3. data/HISTORY.md +11 -0
  4. data/README.md +13 -0
  5. data/lib/test.rb +1 -0
  6. metadata +47 -15
data/.index ADDED
@@ -0,0 +1,47 @@
1
+ ---
2
+ type: ruby
3
+ revision: 2013
4
+ sources:
5
+ - var
6
+ authors:
7
+ - name: trans
8
+ email: transfire@gmail.com
9
+ organizations:
10
+ - name: Rubyworks
11
+ requirements:
12
+ - name: rubytest
13
+ - groups:
14
+ - build
15
+ development: true
16
+ name: indexer
17
+ conflicts: []
18
+ alternatives: []
19
+ resources:
20
+ - type: home
21
+ uri: http://github.com/rubyworks/test
22
+ label: Homepage
23
+ - type: code
24
+ uri: http://github.com/rubyworks/test
25
+ label: Source Code
26
+ - type: bugs
27
+ uri: http://github.com/rubyworks/test/issues
28
+ label: Issue Tracker
29
+ repositories: []
30
+ categories: []
31
+ paths:
32
+ load:
33
+ - lib
34
+ copyrights: []
35
+ created: '2012-12-23'
36
+ summary: Testbed project
37
+ title: Test
38
+ version: 1.0.0
39
+ name: test
40
+ description: ! 'The Test library/repository/gem is a testbed project, for use by
41
+
42
+ any other project that needs an external project to test itself
43
+
44
+ against. Fee free to make requests for additions to this project
45
+
46
+ to help you test your project.'
47
+ date: '2012-12-24'
data/.ruby ADDED
@@ -0,0 +1,24 @@
1
+ # Confection based configuration.
2
+
3
+ config :qed do
4
+ # default configuration
5
+ end
6
+
7
+ config :qed, :profile=>:simplecov, :preset=>true do
8
+ require 'simplecov'
9
+ SimpleCov.start do
10
+ coverage_dir 'log/coverage'
11
+ #add_group "Label", "lib/qed/directory"
12
+ end
13
+ end
14
+
15
+ config :qed, :profile=>:example do
16
+ puts ("*" * 78)
17
+ puts
18
+
19
+ at_exit do
20
+ puts
21
+ puts ("*" * 78)
22
+ end
23
+ end
24
+
@@ -0,0 +1,11 @@
1
+ # RELEASE HISTORY
2
+
3
+ ## 1.0.0 / 2012-12-24
4
+
5
+ This initial release of the test gem contains the basics
6
+ of any Ruby project plus some a few additional files.
7
+
8
+ Changes:
9
+
10
+ * Initial release.
11
+
@@ -0,0 +1,13 @@
1
+ # Test
2
+
3
+ This Ruby gem is a **testbed** strictly for the purposes of testing any other
4
+ projects that can make use of it.
5
+
6
+ Presently this project consists of the basic parts of a typical Ruby project,
7
+ such as a no-op `lib/test.rb` file and this `README.md` file, plus a couple of
8
+ other files for testing things like the [RC](http://rubyworks.github.com) gem.
9
+
10
+ If there is something you'd like this project to contain for your testing purposes
11
+ then please feel free to request it. As long as it does not improperly interfere with
12
+ any other need it will be accepted.
13
+
@@ -0,0 +1 @@
1
+ $TEST_LAODED = true
metadata CHANGED
@@ -1,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 1.0.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
- - Trans
8
+ - trans
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-23 00:00:00.000000000 Z
12
+ date: 2012-12-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubytest
16
- requirement: &22267820 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,16 +21,49 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *22267820
25
- description: ! "Ruby Test is a universal test harness for Ruby. It can handle any
26
- compliant \ntest framework, even running tests from multiple frameworks in a single
27
- pass."
28
- email: transfire@gmail.com
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: indexer
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: ! 'The Test library/repository/gem is a testbed project, for use by
47
+
48
+ any other project that needs an external project to test itself
49
+
50
+ against. Fee free to make requests for additions to this project
51
+
52
+ to help you test your project.'
53
+ email:
54
+ - transfire@gmail.com
29
55
  executables: []
30
56
  extensions: []
31
- extra_rdoc_files: []
32
- files: []
33
- homepage: http://rubyworks.githuib.com/rubytest
57
+ extra_rdoc_files:
58
+ - HISTORY.md
59
+ - README.md
60
+ files:
61
+ - .index
62
+ - .ruby
63
+ - lib/test.rb
64
+ - HISTORY.md
65
+ - README.md
66
+ homepage: http://github.com/rubyworks/test
34
67
  licenses: []
35
68
  post_install_message:
36
69
  rdoc_options: []
@@ -50,9 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
50
83
  version: '0'
51
84
  requirements: []
52
85
  rubyforge_project:
53
- rubygems_version: 1.8.10
86
+ rubygems_version: 1.8.23
54
87
  signing_key:
55
88
  specification_version: 3
56
- summary: Ruby Universal Test Harness
89
+ summary: Testbed project
57
90
  test_files: []
58
- has_rdoc: