whtt-eric-beet 0.6.10
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/Gemfile +12 -0
- data/Gemfile.lock +25 -0
- data/LICENSE +20 -0
- data/README.rdoc +13 -0
- data/Rakefile +59 -0
- data/TODO +25 -0
- data/VERSION +1 -0
- data/bin/beet +114 -0
- data/features/generating.feature +24 -0
- data/features/step_definitions/beet_steps.rb +7 -0
- data/features/step_definitions/common_steps.rb +172 -0
- data/features/support/common.rb +33 -0
- data/features/support/env.rb +25 -0
- data/lib/beet.rb +13 -0
- data/lib/beet/capistrano.rb +14 -0
- data/lib/beet/command_execution.rb +56 -0
- data/lib/beet/executor.rb +236 -0
- data/lib/beet/file_system.rb +163 -0
- data/lib/beet/files/swfupload/images/cancelbutton.gif +0 -0
- data/lib/beet/files/swfupload/images/header-bg.jpg +0 -0
- data/lib/beet/files/swfupload/images/logo.gif +0 -0
- data/lib/beet/files/swfupload/js/handlers.js +290 -0
- data/lib/beet/gem_location_map.rb +65 -0
- data/lib/beet/interaction.rb +47 -0
- data/lib/beet/logger.rb +44 -0
- data/lib/beet/rails.rb +175 -0
- data/lib/beet/recipes/passenger/vhost.rb +17 -0
- data/lib/beet/recipes/rack/middleware.rb +17 -0
- data/lib/beet/recipes/rails/auth/authlogic.rb +302 -0
- data/lib/beet/recipes/rails/auth/clearance.rb +22 -0
- data/lib/beet/recipes/rails/auth/devise.rb +22 -0
- data/lib/beet/recipes/rails/clean_files.rb +4 -0
- data/lib/beet/recipes/rails/cms/bcms_blog.rb +21 -0
- data/lib/beet/recipes/rails/cms/bcms_event.rb +24 -0
- data/lib/beet/recipes/rails/css/blueprint.rb +5 -0
- data/lib/beet/recipes/rails/css/compass.rb +35 -0
- data/lib/beet/recipes/rails/css/nifty_layout.rb +5 -0
- data/lib/beet/recipes/rails/css/reset.rb +10 -0
- data/lib/beet/recipes/rails/db/mongo.rb +57 -0
- data/lib/beet/recipes/rails/db/mysql.rb +47 -0
- data/lib/beet/recipes/rails/db/postgres.rb +52 -0
- data/lib/beet/recipes/rails/git.rb +23 -0
- data/lib/beet/recipes/rails/jquery.rb +11 -0
- data/lib/beet/recipes/rails/swfupload.rb +305 -0
- data/lib/beet/recipes/rails/testing/rspec.rb +3 -0
- data/lib/beet/recipes/rails/testing/shoulda.rb +1 -0
- data/lib/beet/recipes/rails3/admin_interface/active_scaffold.rb +10 -0
- data/lib/beet/recipes/rails3/admin_interface/rails_admin.rb +9 -0
- data/lib/beet/recipes/rails3/auth/devise.rb +17 -0
- data/lib/beet/recipes/rails3/clean_files.rb +3 -0
- data/lib/beet/recipes/rails3/css/boilerplate.rb +41 -0
- data/lib/beet/recipes/rails3/css/reset.rb +10 -0
- data/lib/beet/recipes/rails3/css/sass.rb +3 -0
- data/lib/beet/recipes/rails3/db/mysql.rb +35 -0
- data/lib/beet/recipes/rails3/file_uploads/paperclip.rb +29 -0
- data/lib/beet/recipes/rails3/git.rb +16 -0
- data/lib/beet/recipes/rails3/jammit.rb +26 -0
- data/lib/beet/recipes/rails3/js/jquery.rb +12 -0
- data/lib/beet/recipes/rails3/markup/haml.rb +3 -0
- data/lib/beet/recipes/rails3/testing/cucumber.rb +19 -0
- data/lib/beet/recipes/rails3/testing/rspec.rb +40 -0
- data/lib/beet/recipes/standalone/hades.rb +61 -0
- data/lib/beet/recipes/system/rvmrc.rb +15 -0
- data/lib/beet/scm.rb +36 -0
- data/lib/beet/scm/git.rb +15 -0
- data/lib/beet/scm/svn.rb +5 -0
- data/lib/beet/template_location_map.rb +15 -0
- data/test/executor_test.rb +24 -0
- data/test/file_system_test.rb +59 -0
- data/test/test_helper.rb +12 -0
- data/whtt-eric-beet.gemspec +120 -0
- metadata +203 -0
@@ -0,0 +1,15 @@
|
|
1
|
+
TEMPLATE_LOCATIONS = {
|
2
|
+
'browsercms' => 'http://github.com/browsermedia/browsercms/raw/master/templates/blank.rb',
|
3
|
+
'browsercms_demo' => 'http://github.com/browsermedia/browsercms/raw/master/templates/demo.rb',
|
4
|
+
'bort' => 'http://github.com/jeremymcanally/rails-templates/raw/master/bort.rb',
|
5
|
+
'bundler' => 'http://github.com/tomafro/dotfiles/raw/master/resources/rails/bundler.rb',
|
6
|
+
'compass' => 'http://github.com/chriseppstein/compass/raw/master/lib/compass/app_integration/rails/templates/compass-install-rails.rb',
|
7
|
+
'daring' => 'http://github.com/jeremymcanally/rails-templates/raw/master/daring.rb',
|
8
|
+
'datamapper' => 'http://github.com/jeremymcanally/rails-templates/raw/master/datamapper.rb',
|
9
|
+
'entp' => 'http://github.com/jeremymcanally/rails-templates/raw/master/entp.rb',
|
10
|
+
'facebook' => 'http://github.com/jeremymcanally/rails-templates/raw/master/facebook.rb',
|
11
|
+
'google_app_engine' => 'http://github.com/jeremymcanally/rails-templates/raw/master/google_app_engine.rb',
|
12
|
+
'newgit' => 'http://github.com/jeremymcanally/rails-templates/raw/master/newgit.rb',
|
13
|
+
'sethbc' => 'http://github.com/jeremymcanally/rails-templates/raw/master/sethbc.rb',
|
14
|
+
'suspenders' => 'http://github.com/jeremymcanally/rails-templates/raw/master/suspenders.rb'
|
15
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class ExecutorShouldaTest < Test::Unit::TestCase
|
4
|
+
|
5
|
+
should "set project root to Dir.pwd + project_name in general case" do
|
6
|
+
executor = Beet::Executor.new('foobar')
|
7
|
+
assert_equal Dir.pwd + "/foobar", executor.root
|
8
|
+
end
|
9
|
+
|
10
|
+
should "set project root to project name if project name looks like /Users/jack/something" do
|
11
|
+
executor = Beet::Executor.new('/Users/jack/foobar')
|
12
|
+
assert_equal '/Users/jack/foobar', executor.root
|
13
|
+
end
|
14
|
+
|
15
|
+
should "set project root to Dir.pwd if directory one level above is the same as the project name" do
|
16
|
+
FileUtils.mkdir_p 'foobar'
|
17
|
+
FileUtils.chdir 'foobar' do
|
18
|
+
executor = Beet::Executor.new('foobar')
|
19
|
+
assert_equal Dir.pwd, executor.root
|
20
|
+
end
|
21
|
+
FileUtils.rm_rf 'foobar'
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
include Beet::FileSystem
|
4
|
+
|
5
|
+
# define some methods that file_system recipes expect to exist
|
6
|
+
def root; '.'; end
|
7
|
+
class FileSystemTest < Test::Unit::TestCase
|
8
|
+
context "#add_after" do
|
9
|
+
setup do
|
10
|
+
@filename = 'test.file'
|
11
|
+
File.open(@filename,'w') do |f|
|
12
|
+
f.puts "first line"
|
13
|
+
f.puts "second line"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
teardown do
|
18
|
+
File.unlink(@filename)
|
19
|
+
end
|
20
|
+
|
21
|
+
should "add the given text after the specified text" do
|
22
|
+
add_after @filename, "first line", "middle line"
|
23
|
+
assert_equal "first line\nmiddle line\nsecond line\n", File.read(@filename)
|
24
|
+
end
|
25
|
+
|
26
|
+
should "not add the given text if it already exists after the specified text" do
|
27
|
+
add_after @filename, "first line", "middle line"
|
28
|
+
assert_equal "first line\nmiddle line\nsecond line\n", File.read(@filename)
|
29
|
+
add_after @filename, "first line", "middle line"
|
30
|
+
assert_equal "first line\nmiddle line\nsecond line\n", File.read(@filename)
|
31
|
+
end
|
32
|
+
|
33
|
+
should "add the given text if it exists but only elsewhere in the specified text" do
|
34
|
+
add_after @filename, "first line", "middle line"
|
35
|
+
assert_equal "first line\nmiddle line\nsecond line\n", File.read(@filename)
|
36
|
+
add_after @filename, "first line", "second line"
|
37
|
+
assert_equal "first line\nsecond line\nmiddle line\nsecond line\n", File.read(@filename)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context "#append_file" do
|
42
|
+
setup do
|
43
|
+
@filename = 'test.file'
|
44
|
+
File.open(@filename,'w') do |f|
|
45
|
+
f.puts "first line"
|
46
|
+
f.puts "second line"
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
teardown do
|
51
|
+
File.unlink(@filename)
|
52
|
+
end
|
53
|
+
|
54
|
+
should "add text to the end of the file" do
|
55
|
+
append_file @filename, "third line"
|
56
|
+
assert_equal "first line\nsecond line\nthird line", File.read(@filename)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'test/unit'
|
3
|
+
require 'shoulda'
|
4
|
+
|
5
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
6
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
7
|
+
require 'beet'
|
8
|
+
if RUBY_VERSION <= '1.8.6'
|
9
|
+
require 'ruby-debug'
|
10
|
+
end
|
11
|
+
class Test::Unit::TestCase
|
12
|
+
end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
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{whtt-eric-beet}
|
8
|
+
s.version = "0.6.10"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jack Dempsey", "Eric Salczynski"]
|
12
|
+
s.date = %q{2011-05-06}
|
13
|
+
s.default_executable = %q{beet}
|
14
|
+
s.email = %q{jack.dempsey@gmail.com}
|
15
|
+
s.executables = ["beet"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE",
|
18
|
+
"README.rdoc",
|
19
|
+
"TODO"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
"Gemfile",
|
23
|
+
"Gemfile.lock",
|
24
|
+
"LICENSE",
|
25
|
+
"README.rdoc",
|
26
|
+
"Rakefile",
|
27
|
+
"TODO",
|
28
|
+
"VERSION",
|
29
|
+
"bin/beet",
|
30
|
+
"features/generating.feature",
|
31
|
+
"features/step_definitions/beet_steps.rb",
|
32
|
+
"features/step_definitions/common_steps.rb",
|
33
|
+
"features/support/common.rb",
|
34
|
+
"features/support/env.rb",
|
35
|
+
"lib/beet.rb",
|
36
|
+
"lib/beet/capistrano.rb",
|
37
|
+
"lib/beet/command_execution.rb",
|
38
|
+
"lib/beet/executor.rb",
|
39
|
+
"lib/beet/file_system.rb",
|
40
|
+
"lib/beet/files/swfupload/images/cancelbutton.gif",
|
41
|
+
"lib/beet/files/swfupload/images/header-bg.jpg",
|
42
|
+
"lib/beet/files/swfupload/images/logo.gif",
|
43
|
+
"lib/beet/files/swfupload/js/handlers.js",
|
44
|
+
"lib/beet/gem_location_map.rb",
|
45
|
+
"lib/beet/interaction.rb",
|
46
|
+
"lib/beet/logger.rb",
|
47
|
+
"lib/beet/rails.rb",
|
48
|
+
"lib/beet/recipes/passenger/vhost.rb",
|
49
|
+
"lib/beet/recipes/rack/middleware.rb",
|
50
|
+
"lib/beet/recipes/rails/auth/authlogic.rb",
|
51
|
+
"lib/beet/recipes/rails/auth/clearance.rb",
|
52
|
+
"lib/beet/recipes/rails/auth/devise.rb",
|
53
|
+
"lib/beet/recipes/rails/clean_files.rb",
|
54
|
+
"lib/beet/recipes/rails/cms/bcms_blog.rb",
|
55
|
+
"lib/beet/recipes/rails/cms/bcms_event.rb",
|
56
|
+
"lib/beet/recipes/rails/css/blueprint.rb",
|
57
|
+
"lib/beet/recipes/rails/css/compass.rb",
|
58
|
+
"lib/beet/recipes/rails/css/nifty_layout.rb",
|
59
|
+
"lib/beet/recipes/rails/css/reset.rb",
|
60
|
+
"lib/beet/recipes/rails/db/mongo.rb",
|
61
|
+
"lib/beet/recipes/rails/db/mysql.rb",
|
62
|
+
"lib/beet/recipes/rails/db/postgres.rb",
|
63
|
+
"lib/beet/recipes/rails/git.rb",
|
64
|
+
"lib/beet/recipes/rails/jquery.rb",
|
65
|
+
"lib/beet/recipes/rails/swfupload.rb",
|
66
|
+
"lib/beet/recipes/rails/testing/rspec.rb",
|
67
|
+
"lib/beet/recipes/rails/testing/shoulda.rb",
|
68
|
+
"lib/beet/recipes/rails3/admin_interface/active_scaffold.rb",
|
69
|
+
"lib/beet/recipes/rails3/admin_interface/rails_admin.rb",
|
70
|
+
"lib/beet/recipes/rails3/auth/devise.rb",
|
71
|
+
"lib/beet/recipes/rails3/clean_files.rb",
|
72
|
+
"lib/beet/recipes/rails3/css/boilerplate.rb",
|
73
|
+
"lib/beet/recipes/rails3/css/reset.rb",
|
74
|
+
"lib/beet/recipes/rails3/css/sass.rb",
|
75
|
+
"lib/beet/recipes/rails3/db/mysql.rb",
|
76
|
+
"lib/beet/recipes/rails3/file_uploads/paperclip.rb",
|
77
|
+
"lib/beet/recipes/rails3/git.rb",
|
78
|
+
"lib/beet/recipes/rails3/jammit.rb",
|
79
|
+
"lib/beet/recipes/rails3/js/jquery.rb",
|
80
|
+
"lib/beet/recipes/rails3/markup/haml.rb",
|
81
|
+
"lib/beet/recipes/rails3/testing/cucumber.rb",
|
82
|
+
"lib/beet/recipes/rails3/testing/rspec.rb",
|
83
|
+
"lib/beet/recipes/standalone/hades.rb",
|
84
|
+
"lib/beet/recipes/system/rvmrc.rb",
|
85
|
+
"lib/beet/scm.rb",
|
86
|
+
"lib/beet/scm/git.rb",
|
87
|
+
"lib/beet/scm/svn.rb",
|
88
|
+
"lib/beet/template_location_map.rb",
|
89
|
+
"test/executor_test.rb",
|
90
|
+
"test/file_system_test.rb",
|
91
|
+
"test/test_helper.rb",
|
92
|
+
"whtt-eric-beet.gemspec"
|
93
|
+
]
|
94
|
+
s.homepage = %q{http://github.com/jackdempsey/beet}
|
95
|
+
s.require_paths = ["lib"]
|
96
|
+
s.rubygems_version = %q{1.6.2}
|
97
|
+
s.summary = %q{A gem to help with easily generating projects}
|
98
|
+
|
99
|
+
if s.respond_to? :specification_version then
|
100
|
+
s.specification_version = 3
|
101
|
+
|
102
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
103
|
+
s.add_runtime_dependency(%q<ruby-debug>, [">= 0.10.3"])
|
104
|
+
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0"])
|
105
|
+
s.add_runtime_dependency(%q<thor>, ["~> 0.14.0"])
|
106
|
+
s.add_runtime_dependency(%q<thor>, ["~> 0.14.0"])
|
107
|
+
else
|
108
|
+
s.add_dependency(%q<ruby-debug>, [">= 0.10.3"])
|
109
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
|
110
|
+
s.add_dependency(%q<thor>, ["~> 0.14.0"])
|
111
|
+
s.add_dependency(%q<thor>, ["~> 0.14.0"])
|
112
|
+
end
|
113
|
+
else
|
114
|
+
s.add_dependency(%q<ruby-debug>, [">= 0.10.3"])
|
115
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
|
116
|
+
s.add_dependency(%q<thor>, ["~> 0.14.0"])
|
117
|
+
s.add_dependency(%q<thor>, ["~> 0.14.0"])
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
metadata
ADDED
@@ -0,0 +1,203 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: whtt-eric-beet
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 19
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 6
|
9
|
+
- 10
|
10
|
+
version: 0.6.10
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Jack Dempsey
|
14
|
+
- Eric Salczynski
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-05-06 00:00:00 -04:00
|
20
|
+
default_executable: beet
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
type: :runtime
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 49
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 10
|
33
|
+
- 3
|
34
|
+
version: 0.10.3
|
35
|
+
name: ruby-debug
|
36
|
+
version_requirements: *id001
|
37
|
+
prerelease: false
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
type: :runtime
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 7
|
46
|
+
segments:
|
47
|
+
- 3
|
48
|
+
- 0
|
49
|
+
- 0
|
50
|
+
version: 3.0.0
|
51
|
+
name: activesupport
|
52
|
+
version_requirements: *id002
|
53
|
+
prerelease: false
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
type: :runtime
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 39
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
- 14
|
65
|
+
- 0
|
66
|
+
version: 0.14.0
|
67
|
+
name: thor
|
68
|
+
version_requirements: *id003
|
69
|
+
prerelease: false
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
type: :runtime
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 39
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
- 14
|
81
|
+
- 0
|
82
|
+
version: 0.14.0
|
83
|
+
name: thor
|
84
|
+
version_requirements: *id004
|
85
|
+
prerelease: false
|
86
|
+
description:
|
87
|
+
email: jack.dempsey@gmail.com
|
88
|
+
executables:
|
89
|
+
- beet
|
90
|
+
extensions: []
|
91
|
+
|
92
|
+
extra_rdoc_files:
|
93
|
+
- LICENSE
|
94
|
+
- README.rdoc
|
95
|
+
- TODO
|
96
|
+
files:
|
97
|
+
- Gemfile
|
98
|
+
- Gemfile.lock
|
99
|
+
- LICENSE
|
100
|
+
- README.rdoc
|
101
|
+
- Rakefile
|
102
|
+
- TODO
|
103
|
+
- VERSION
|
104
|
+
- bin/beet
|
105
|
+
- features/generating.feature
|
106
|
+
- features/step_definitions/beet_steps.rb
|
107
|
+
- features/step_definitions/common_steps.rb
|
108
|
+
- features/support/common.rb
|
109
|
+
- features/support/env.rb
|
110
|
+
- lib/beet.rb
|
111
|
+
- lib/beet/capistrano.rb
|
112
|
+
- lib/beet/command_execution.rb
|
113
|
+
- lib/beet/executor.rb
|
114
|
+
- lib/beet/file_system.rb
|
115
|
+
- lib/beet/files/swfupload/images/cancelbutton.gif
|
116
|
+
- lib/beet/files/swfupload/images/header-bg.jpg
|
117
|
+
- lib/beet/files/swfupload/images/logo.gif
|
118
|
+
- lib/beet/files/swfupload/js/handlers.js
|
119
|
+
- lib/beet/gem_location_map.rb
|
120
|
+
- lib/beet/interaction.rb
|
121
|
+
- lib/beet/logger.rb
|
122
|
+
- lib/beet/rails.rb
|
123
|
+
- lib/beet/recipes/passenger/vhost.rb
|
124
|
+
- lib/beet/recipes/rack/middleware.rb
|
125
|
+
- lib/beet/recipes/rails/auth/authlogic.rb
|
126
|
+
- lib/beet/recipes/rails/auth/clearance.rb
|
127
|
+
- lib/beet/recipes/rails/auth/devise.rb
|
128
|
+
- lib/beet/recipes/rails/clean_files.rb
|
129
|
+
- lib/beet/recipes/rails/cms/bcms_blog.rb
|
130
|
+
- lib/beet/recipes/rails/cms/bcms_event.rb
|
131
|
+
- lib/beet/recipes/rails/css/blueprint.rb
|
132
|
+
- lib/beet/recipes/rails/css/compass.rb
|
133
|
+
- lib/beet/recipes/rails/css/nifty_layout.rb
|
134
|
+
- lib/beet/recipes/rails/css/reset.rb
|
135
|
+
- lib/beet/recipes/rails/db/mongo.rb
|
136
|
+
- lib/beet/recipes/rails/db/mysql.rb
|
137
|
+
- lib/beet/recipes/rails/db/postgres.rb
|
138
|
+
- lib/beet/recipes/rails/git.rb
|
139
|
+
- lib/beet/recipes/rails/jquery.rb
|
140
|
+
- lib/beet/recipes/rails/swfupload.rb
|
141
|
+
- lib/beet/recipes/rails/testing/rspec.rb
|
142
|
+
- lib/beet/recipes/rails/testing/shoulda.rb
|
143
|
+
- lib/beet/recipes/rails3/admin_interface/active_scaffold.rb
|
144
|
+
- lib/beet/recipes/rails3/admin_interface/rails_admin.rb
|
145
|
+
- lib/beet/recipes/rails3/auth/devise.rb
|
146
|
+
- lib/beet/recipes/rails3/clean_files.rb
|
147
|
+
- lib/beet/recipes/rails3/css/boilerplate.rb
|
148
|
+
- lib/beet/recipes/rails3/css/reset.rb
|
149
|
+
- lib/beet/recipes/rails3/css/sass.rb
|
150
|
+
- lib/beet/recipes/rails3/db/mysql.rb
|
151
|
+
- lib/beet/recipes/rails3/file_uploads/paperclip.rb
|
152
|
+
- lib/beet/recipes/rails3/git.rb
|
153
|
+
- lib/beet/recipes/rails3/jammit.rb
|
154
|
+
- lib/beet/recipes/rails3/js/jquery.rb
|
155
|
+
- lib/beet/recipes/rails3/markup/haml.rb
|
156
|
+
- lib/beet/recipes/rails3/testing/cucumber.rb
|
157
|
+
- lib/beet/recipes/rails3/testing/rspec.rb
|
158
|
+
- lib/beet/recipes/standalone/hades.rb
|
159
|
+
- lib/beet/recipes/system/rvmrc.rb
|
160
|
+
- lib/beet/scm.rb
|
161
|
+
- lib/beet/scm/git.rb
|
162
|
+
- lib/beet/scm/svn.rb
|
163
|
+
- lib/beet/template_location_map.rb
|
164
|
+
- test/executor_test.rb
|
165
|
+
- test/file_system_test.rb
|
166
|
+
- test/test_helper.rb
|
167
|
+
- whtt-eric-beet.gemspec
|
168
|
+
has_rdoc: true
|
169
|
+
homepage: http://github.com/jackdempsey/beet
|
170
|
+
licenses: []
|
171
|
+
|
172
|
+
post_install_message:
|
173
|
+
rdoc_options: []
|
174
|
+
|
175
|
+
require_paths:
|
176
|
+
- lib
|
177
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
178
|
+
none: false
|
179
|
+
requirements:
|
180
|
+
- - ">="
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
hash: 3
|
183
|
+
segments:
|
184
|
+
- 0
|
185
|
+
version: "0"
|
186
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
187
|
+
none: false
|
188
|
+
requirements:
|
189
|
+
- - ">="
|
190
|
+
- !ruby/object:Gem::Version
|
191
|
+
hash: 3
|
192
|
+
segments:
|
193
|
+
- 0
|
194
|
+
version: "0"
|
195
|
+
requirements: []
|
196
|
+
|
197
|
+
rubyforge_project:
|
198
|
+
rubygems_version: 1.6.2
|
199
|
+
signing_key:
|
200
|
+
specification_version: 3
|
201
|
+
summary: A gem to help with easily generating projects
|
202
|
+
test_files: []
|
203
|
+
|