tryouts 0.4.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/tryouts.gemspec ADDED
@@ -0,0 +1,75 @@
1
+ @spec = Gem::Specification.new do |s|
2
+ s.name = "tryouts"
3
+ s.rubyforge_project = "tryouts"
4
+ s.version = "0.4.0"
5
+ s.summary = "Tryouts are high-level tests for your Ruby code. May all your dreams come true!"
6
+ s.description = s.summary
7
+ s.author = "Delano Mandelbaum"
8
+ s.email = "tryouts@solutious.com"
9
+ s.homepage = "http://github.com/delano/tryouts"
10
+
11
+ # = EXECUTABLES =
12
+ # The list of executables in your project (if any). Don't include the path,
13
+ # just the base filename.
14
+ s.executables = %w[tryouts]
15
+
16
+ # Directories to extract rdocs from
17
+ s.require_paths = %w[lib]
18
+
19
+ # Specific files to include rdocs from
20
+ s.extra_rdoc_files = %w[README.rdoc LICENSE.txt]
21
+
22
+ # Update --main to reflect the default page to display
23
+ s.rdoc_options = ["--line-numbers", "--title", "Tryouts: #{s.summary}", "--main", "README.rdoc"]
24
+
25
+ # = DEPENDENCIES =
26
+ # Add all gem dependencies
27
+ s.add_dependency 'drydock', '>= 0.6.5'
28
+ s.add_dependency 'rye', '>= 0.6.6'
29
+ s.add_dependency 'sysinfo', '>= 0.5.1'
30
+
31
+ # = MANIFEST =
32
+ # The complete list of files to be included in the release. When GitHub packages your gem,
33
+ # it doesn't allow you to run any command that accesses the filesystem. You will get an
34
+ # error. You can ask your VCS for the list of versioned files:
35
+ # git ls-files
36
+ # svn list -R
37
+ s.files = %w(
38
+ CHANGES.txt
39
+ LICENSE.txt
40
+ README.rdoc
41
+ Rakefile
42
+ bin/mockout
43
+ bin/tryouts
44
+ lib/tryouts.rb
45
+ lib/tryouts/cli.rb
46
+ lib/tryouts/cli/run.rb
47
+ lib/tryouts/drill.rb
48
+ lib/tryouts/drill/response.rb
49
+ lib/tryouts/drill/sergeant/cli.rb
50
+ lib/tryouts/mixins.rb
51
+ lib/tryouts/mixins/hash.rb
52
+ lib/tryouts/tryout.rb
53
+ tryouts.gemspec
54
+ tryouts/mockoutcli_dreams.rb
55
+ tryouts/mockoutcli_dreams.yaml
56
+ tryouts/mockoutcli_tryouts.rb
57
+ )
58
+
59
+ s.has_rdoc = true
60
+ s.rubygems_version = '1.3.0'
61
+
62
+ if s.respond_to? :specification_version then
63
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
64
+ s.specification_version = 2
65
+
66
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
67
+ s.add_runtime_dependency(%q<RedCloth>, [">= 4.0.4"])
68
+ else
69
+ s.add_dependency(%q<RedCloth>, [">= 4.0.4"])
70
+ end
71
+ else
72
+ s.add_dependency(%q<RedCloth>, [">= 4.0.4"])
73
+ end
74
+
75
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tryouts
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Delano Mandelbaum
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-06 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: drydock
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.6.5
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: rye
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.6.6
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: sysinfo
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.5.1
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: RedCloth
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 4.0.4
54
+ version:
55
+ description: Tryouts are high-level tests for your Ruby code. May all your dreams come true!
56
+ email: tryouts@solutious.com
57
+ executables:
58
+ - tryouts
59
+ extensions: []
60
+
61
+ extra_rdoc_files:
62
+ - README.rdoc
63
+ - LICENSE.txt
64
+ files:
65
+ - CHANGES.txt
66
+ - LICENSE.txt
67
+ - README.rdoc
68
+ - Rakefile
69
+ - bin/mockout
70
+ - bin/tryouts
71
+ - lib/tryouts.rb
72
+ - lib/tryouts/cli.rb
73
+ - lib/tryouts/cli/run.rb
74
+ - lib/tryouts/drill.rb
75
+ - lib/tryouts/drill/response.rb
76
+ - lib/tryouts/drill/sergeant/cli.rb
77
+ - lib/tryouts/mixins.rb
78
+ - lib/tryouts/mixins/hash.rb
79
+ - lib/tryouts/tryout.rb
80
+ - tryouts.gemspec
81
+ - tryouts/mockoutcli_dreams.rb
82
+ - tryouts/mockoutcli_dreams.yaml
83
+ - tryouts/mockoutcli_tryouts.rb
84
+ has_rdoc: true
85
+ homepage: http://github.com/delano/tryouts
86
+ licenses: []
87
+
88
+ post_install_message:
89
+ rdoc_options:
90
+ - --line-numbers
91
+ - --title
92
+ - "Tryouts: Tryouts are high-level tests for your Ruby code. May all your dreams come true!"
93
+ - --main
94
+ - README.rdoc
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: "0"
102
+ version:
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: "0"
108
+ version:
109
+ requirements: []
110
+
111
+ rubyforge_project: tryouts
112
+ rubygems_version: 1.3.3
113
+ signing_key:
114
+ specification_version: 2
115
+ summary: Tryouts are high-level tests for your Ruby code. May all your dreams come true!
116
+ test_files: []
117
+