bard 0.7.4 → 0.7.5
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/VERSION +1 -1
- data/bard.gemspec +8 -6
- data/lib/rake/bard.rb +10 -0
- metadata +4 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.5
|
data/bard.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
|
-
# DO NOT EDIT THIS FILE
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{bard}
|
|
8
|
-
s.version = "0.7.
|
|
8
|
+
s.version = "0.7.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Micah Geisel", "Nick Hogle"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2010-02-13}
|
|
13
13
|
s.default_executable = %q{bard}
|
|
14
14
|
s.description = %q{This immaculate work of engineering genius allows mere mortals to collaborate with beings of transcendent intelligence like Micah, Michael, and Nick.}
|
|
15
15
|
s.email = %q{info@botandrose.com}
|
|
@@ -46,6 +46,7 @@ Gem::Specification.new do |s|
|
|
|
46
46
|
"lib/bard/git.rb",
|
|
47
47
|
"lib/bard/io.rb",
|
|
48
48
|
"lib/bard/ssh_delegation.rb",
|
|
49
|
+
"lib/rake/bard.rb",
|
|
49
50
|
"spec/bard_spec.rb",
|
|
50
51
|
"spec/spec_helper.rb"
|
|
51
52
|
]
|
|
@@ -55,8 +56,8 @@ Gem::Specification.new do |s|
|
|
|
55
56
|
s.rubygems_version = %q{1.3.5}
|
|
56
57
|
s.summary = %q{Tools for collaborating with Bot and Rose Design.}
|
|
57
58
|
s.test_files = [
|
|
58
|
-
"spec/
|
|
59
|
-
"spec/
|
|
59
|
+
"spec/bard_spec.rb",
|
|
60
|
+
"spec/spec_helper.rb"
|
|
60
61
|
]
|
|
61
62
|
|
|
62
63
|
if s.respond_to? :specification_version then
|
|
@@ -93,3 +94,4 @@ Gem::Specification.new do |s|
|
|
|
93
94
|
s.add_dependency(%q<term-ansicolor>, [">= 1.0.3"])
|
|
94
95
|
end
|
|
95
96
|
end
|
|
97
|
+
|
data/lib/rake/bard.rb
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
task :bootstrap do
|
|
2
|
+
`git submodule update --init` if `git submodule` =~ /^[^ ]/
|
|
3
|
+
`cp config/database.sample.yml config/database.yml` unless File.exist?('config/database.yml')
|
|
4
|
+
`rake gems:install db:create RAILS_ENV=test`
|
|
5
|
+
`rake gems:install db:create RAILS_ENV=cucumber`
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
Rake::Task[:default].clear
|
|
9
|
+
desc "Bootstrap the current project and run the tests."
|
|
10
|
+
task :default => [:bootstrap, :spec, :cucumber]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Micah Geisel
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date:
|
|
13
|
+
date: 2010-02-13 00:00:00 -08:00
|
|
14
14
|
default_executable: bard
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -130,6 +130,7 @@ files:
|
|
|
130
130
|
- lib/bard/git.rb
|
|
131
131
|
- lib/bard/io.rb
|
|
132
132
|
- lib/bard/ssh_delegation.rb
|
|
133
|
+
- lib/rake/bard.rb
|
|
133
134
|
- spec/bard_spec.rb
|
|
134
135
|
- spec/spec_helper.rb
|
|
135
136
|
has_rdoc: true
|
|
@@ -161,5 +162,5 @@ signing_key:
|
|
|
161
162
|
specification_version: 3
|
|
162
163
|
summary: Tools for collaborating with Bot and Rose Design.
|
|
163
164
|
test_files:
|
|
164
|
-
- spec/spec_helper.rb
|
|
165
165
|
- spec/bard_spec.rb
|
|
166
|
+
- spec/spec_helper.rb
|