bard 0.8.30 → 0.8.31
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 +4 -4
- data/lib/bard/template/initial.rb +2 -2
- data/lib/bard/template/testing.rb +15 -15
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.31
|
data/bard.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{bard}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.31"
|
|
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{2010-
|
|
12
|
+
s.date = %q{2010-05-03}
|
|
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}
|
|
@@ -65,8 +65,8 @@ Gem::Specification.new do |s|
|
|
|
65
65
|
s.rubygems_version = %q{1.3.6}
|
|
66
66
|
s.summary = %q{Tools for collaborating with Bot and Rose Design.}
|
|
67
67
|
s.test_files = [
|
|
68
|
-
"spec/
|
|
69
|
-
"spec/
|
|
68
|
+
"spec/spec_helper.rb",
|
|
69
|
+
"spec/bard_spec.rb"
|
|
70
70
|
]
|
|
71
71
|
|
|
72
72
|
if s.respond_to? :specification_version then
|
|
@@ -84,7 +84,7 @@ END
|
|
|
84
84
|
run "compass --rails --sass-dir app/sass --css-dir public/stylesheets ."
|
|
85
85
|
|
|
86
86
|
# application.sass
|
|
87
|
-
file "
|
|
87
|
+
file "app/sass/application.sass", <<-END
|
|
88
88
|
// global
|
|
89
89
|
|
|
90
90
|
@import constant.sass
|
|
@@ -111,7 +111,7 @@ file "public/stylesheets/sass/application.sass", <<-END
|
|
|
111
111
|
END
|
|
112
112
|
|
|
113
113
|
# constant.sass
|
|
114
|
-
file "
|
|
114
|
+
file "app/sass/_constant.sass", <<-END
|
|
115
115
|
// constant
|
|
116
116
|
|
|
117
117
|
!blueprint_grid_columns = 24
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
require "bard/template/helper"
|
|
2
2
|
|
|
3
3
|
# Testing Environment
|
|
4
|
-
with_options :env => :cucumber do
|
|
5
|
-
gem
|
|
6
|
-
gem
|
|
7
|
-
gem
|
|
8
|
-
gem
|
|
9
|
-
gem
|
|
10
|
-
gem "
|
|
11
|
-
gem "
|
|
12
|
-
gem "
|
|
4
|
+
with_options :env => :cucumber, :lib => false do |env|
|
|
5
|
+
env.gem "cucumber", :version => "0.4.3"
|
|
6
|
+
env.gem "webrat", :version => "0.5.3"
|
|
7
|
+
env.gem "rspec", :version => "1.2.9"
|
|
8
|
+
env.gem "rspec-rails", :version => "1.2.9"
|
|
9
|
+
env.gem "email_spec", :version => "0.4.0"
|
|
10
|
+
env.gem "machinist", :version => "1.0.6"
|
|
11
|
+
env.gem "pickle", :version => "0.2.1"
|
|
12
|
+
env.gem "faker", :version => "0.3.1"
|
|
13
13
|
end
|
|
14
14
|
rake "gems:install RAILS_ENV=cucumber"
|
|
15
15
|
|
|
16
|
-
plugin
|
|
16
|
+
plugin "cucumber_rails_debug", :git => "git://github.com/mischa/cucumber_rails_debug"
|
|
17
17
|
|
|
18
18
|
generate "rspec"
|
|
19
19
|
generate "cucumber"
|
|
@@ -21,8 +21,8 @@ generate "email_spec"
|
|
|
21
21
|
generate "pickle"
|
|
22
22
|
|
|
23
23
|
file "features/support/blueprints.rb", <<-END
|
|
24
|
-
require
|
|
25
|
-
require
|
|
24
|
+
require "machinist/active_record"
|
|
25
|
+
require "faker"
|
|
26
26
|
|
|
27
27
|
Sham.name { Faker::Name.name }
|
|
28
28
|
Sham.email { Faker::Internet.email }
|
|
@@ -38,13 +38,13 @@ END
|
|
|
38
38
|
run "ln -s features/support/blueprints.rb spec/blueprints.rb"
|
|
39
39
|
|
|
40
40
|
file "features/support/debug.rb", <<-END
|
|
41
|
-
require
|
|
42
|
-
require
|
|
41
|
+
require "ruby-debug"
|
|
42
|
+
require "cucumber_rails_debug/steps"
|
|
43
43
|
END
|
|
44
44
|
|
|
45
45
|
file "features/support/email.rb", <<-END
|
|
46
46
|
# Email testing helpers
|
|
47
|
-
require
|
|
47
|
+
require "email_spec/cucumber"
|
|
48
48
|
END
|
|
49
49
|
|
|
50
50
|
run "rake db:create RAILS_ENV=test"
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 8
|
|
8
|
-
-
|
|
9
|
-
version: 0.8.
|
|
8
|
+
- 31
|
|
9
|
+
version: 0.8.31
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Micah Geisel
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-05-03 00:00:00 -05:00
|
|
19
19
|
default_executable: bard
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -232,5 +232,5 @@ signing_key:
|
|
|
232
232
|
specification_version: 3
|
|
233
233
|
summary: Tools for collaborating with Bot and Rose Design.
|
|
234
234
|
test_files:
|
|
235
|
-
- spec/bard_spec.rb
|
|
236
235
|
- spec/spec_helper.rb
|
|
236
|
+
- spec/bard_spec.rb
|