mac_bacon 1.1.21
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/COPYING +18 -0
- data/ChangeLog +272 -0
- data/RDOX +96 -0
- data/README +324 -0
- data/Rakefile +145 -0
- data/bin/macbacon +118 -0
- data/lib/mac_bacon.rb +450 -0
- data/test/spec_bacon.rb +390 -0
- data/test/spec_mac_bacon.rb +20 -0
- data/test/spec_nontrue.rb +16 -0
- data/test/spec_should.rb +33 -0
- metadata +86 -0
metadata
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mac_bacon
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 57
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
- 21
|
10
|
+
version: 1.1.21
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- "Eloy Dur\xC3\xA1n"
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-01-10 00:00:00 +01:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: |
|
23
|
+
Bacon is a small RSpec clone weighing less than 350 LoC but
|
24
|
+
nevertheless providing all essential features.
|
25
|
+
|
26
|
+
This MacBacon fork differs with regular Bacon in that it operates
|
27
|
+
properly in a NSRunloop based environment. I.e. MacRuby/Objective-C.
|
28
|
+
|
29
|
+
https://github.com/alloy/MacBacon
|
30
|
+
|
31
|
+
email: eloy.de.enige@gmail.com
|
32
|
+
executables:
|
33
|
+
- macbacon
|
34
|
+
extensions: []
|
35
|
+
|
36
|
+
extra_rdoc_files:
|
37
|
+
- README
|
38
|
+
- RDOX
|
39
|
+
files:
|
40
|
+
- COPYING
|
41
|
+
- README
|
42
|
+
- Rakefile
|
43
|
+
- bin/macbacon
|
44
|
+
- lib/mac_bacon.rb
|
45
|
+
- test/spec_bacon.rb
|
46
|
+
- test/spec_mac_bacon.rb
|
47
|
+
- test/spec_nontrue.rb
|
48
|
+
- test/spec_should.rb
|
49
|
+
- RDOX
|
50
|
+
- ChangeLog
|
51
|
+
has_rdoc: true
|
52
|
+
homepage: https://github.com/alloy/MacBacon
|
53
|
+
licenses: []
|
54
|
+
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options: []
|
57
|
+
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
hash: 3
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
version: "0"
|
78
|
+
requirements: []
|
79
|
+
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 1.3.7
|
82
|
+
signing_key:
|
83
|
+
specification_version: 3
|
84
|
+
summary: a small RSpec clone for MacRuby
|
85
|
+
test_files: []
|
86
|
+
|