beet 0.6.5 → 0.6.6
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/TODO +6 -4
- data/VERSION +1 -1
- data/beet.gemspec +2 -2
- data/lib/beet/executor.rb +5 -1
- metadata +3 -3
data/TODO
CHANGED
@@ -9,9 +9,11 @@
|
|
9
9
|
* figure out if its worth it to use similar step definitions as done in Jeweler for gems that generate stuff
|
10
10
|
and want to verify things worked correctly
|
11
11
|
|
12
|
-
* write some recipes for browsercms
|
13
|
-
|
14
|
-
* work on ubuntu install ideas
|
15
|
-
|
16
12
|
* create a "if gem_exists?('browsercms')" type method
|
13
|
+
* perhaps repurpose the search_for_rails_2 method to search for any installed gem
|
14
|
+
|
15
|
+
* add ability to set --prefix rails3 so you're not typing rails3/auth/devise, rails3/js/jquery, etc, just
|
16
|
+
beet -g foo --prefix rails3 -r auth/devise, js/jquery
|
17
|
+
* in fact, maybe make a .beetrc file where you can set a prefix permanently.
|
17
18
|
|
19
|
+
* use aruba to test beet - http://github.com/aslakhellesoy/aruba
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.6
|
data/beet.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{beet}
|
8
|
-
s.version = "0.6.
|
8
|
+
s.version = "0.6.6"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jack Dempsey"]
|
12
|
-
s.date = %q{2010-09-
|
12
|
+
s.date = %q{2010-09-07}
|
13
13
|
s.default_executable = %q{beet}
|
14
14
|
s.email = %q{jack.dempsey@gmail.com}
|
15
15
|
s.executables = ["beet"]
|
data/lib/beet/executor.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 6
|
8
|
-
-
|
9
|
-
version: 0.6.
|
8
|
+
- 6
|
9
|
+
version: 0.6.6
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jack Dempsey
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-09-
|
17
|
+
date: 2010-09-07 00:00:00 -04:00
|
18
18
|
default_executable: beet
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|