baconmocha 0.0.1 → 0.0.2
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/.gitignore +1 -0
- data/README.markdown +6 -2
- data/Rakefile +4 -1
- data/VERSION +1 -0
- data/baconmocha.gemspec +53 -0
- metadata +6 -3
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg/*
|
data/README.markdown
CHANGED
|
@@ -10,8 +10,12 @@ Award, together with file-tail and todo.
|
|
|
10
10
|
Usage
|
|
11
11
|
-----
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
Install
|
|
14
|
+
|
|
15
|
+
$ sudo gem install baconmocha
|
|
16
|
+
|
|
17
|
+
Then require 'baconmocha' and use both like you wanted to, before
|
|
18
|
+
running into the issues that got you here.
|
|
15
19
|
|
|
16
20
|
|
|
17
21
|
Contributors
|
data/Rakefile
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
desc 'Run specs'
|
|
2
2
|
task :spec do
|
|
3
|
+
require 'lib/baconmocha'
|
|
3
4
|
sh 'bacon -q spec/spec.rb'
|
|
4
5
|
end
|
|
5
6
|
task :default => :spec
|
|
@@ -15,8 +16,10 @@ begin
|
|
|
15
16
|
Award, together with file-tail and todo"
|
|
16
17
|
s.authors = ["Pedro Belo"]
|
|
17
18
|
s.add_dependency 'bacon'
|
|
18
|
-
s.add_dependency 'mocha'
|
|
19
|
+
s.add_dependency 'mocha', '>=0.9.6'
|
|
20
|
+
s.rubyforge_project = 'baconmocha'
|
|
19
21
|
end
|
|
22
|
+
Jeweler::RubyforgeTasks.new
|
|
20
23
|
rescue LoadError
|
|
21
24
|
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
|
22
25
|
end
|
data/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.2
|
data/baconmocha.gemspec
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{baconmocha}
|
|
8
|
+
s.version = "0.0.2"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Pedro Belo"]
|
|
12
|
+
s.date = %q{2009-10-14}
|
|
13
|
+
s.description = %q{Also, a serious runner for the Lack of Creativity Ruby Libraries
|
|
14
|
+
Award, together with file-tail and todo}
|
|
15
|
+
s.email = %q{pedrobelo@gmail.com}
|
|
16
|
+
s.extra_rdoc_files = [
|
|
17
|
+
"README.markdown"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".gitignore",
|
|
21
|
+
"README.markdown",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION",
|
|
24
|
+
"baconmocha.gemspec",
|
|
25
|
+
"lib/baconmocha.rb",
|
|
26
|
+
"spec/spec.rb"
|
|
27
|
+
]
|
|
28
|
+
s.homepage = %q{http://github.com/pedro/baconmocha}
|
|
29
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
30
|
+
s.require_paths = ["lib"]
|
|
31
|
+
s.rubyforge_project = %q{baconmocha}
|
|
32
|
+
s.rubygems_version = %q{1.3.4}
|
|
33
|
+
s.summary = %q{Gluing Bacon and Mocha since... 2009}
|
|
34
|
+
s.test_files = [
|
|
35
|
+
"spec/spec.rb"
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
if s.respond_to? :specification_version then
|
|
39
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
40
|
+
s.specification_version = 3
|
|
41
|
+
|
|
42
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
43
|
+
s.add_runtime_dependency(%q<bacon>, [">= 0"])
|
|
44
|
+
s.add_runtime_dependency(%q<mocha>, [">= 0.9.6"])
|
|
45
|
+
else
|
|
46
|
+
s.add_dependency(%q<bacon>, [">= 0"])
|
|
47
|
+
s.add_dependency(%q<mocha>, [">= 0.9.6"])
|
|
48
|
+
end
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<bacon>, [">= 0"])
|
|
51
|
+
s.add_dependency(%q<mocha>, [">= 0.9.6"])
|
|
52
|
+
end
|
|
53
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: baconmocha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Belo
|
|
@@ -30,7 +30,7 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 0.9.6
|
|
34
34
|
version:
|
|
35
35
|
description: |-
|
|
36
36
|
Also, a serious runner for the Lack of Creativity Ruby Libraries
|
|
@@ -43,8 +43,11 @@ extensions: []
|
|
|
43
43
|
extra_rdoc_files:
|
|
44
44
|
- README.markdown
|
|
45
45
|
files:
|
|
46
|
+
- .gitignore
|
|
46
47
|
- README.markdown
|
|
47
48
|
- Rakefile
|
|
49
|
+
- VERSION
|
|
50
|
+
- baconmocha.gemspec
|
|
48
51
|
- lib/baconmocha.rb
|
|
49
52
|
- spec/spec.rb
|
|
50
53
|
has_rdoc: true
|
|
@@ -70,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
73
|
version:
|
|
71
74
|
requirements: []
|
|
72
75
|
|
|
73
|
-
rubyforge_project:
|
|
76
|
+
rubyforge_project: baconmocha
|
|
74
77
|
rubygems_version: 1.3.4
|
|
75
78
|
signing_key:
|
|
76
79
|
specification_version: 3
|