fluby 0.7.2 → 0.7.3
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/bin/fluby +7 -3
- data/lib/fluby.rb +0 -2
- data/lib/templates/Rakefile +1 -1
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.3
|
data/bin/fluby
CHANGED
@@ -9,9 +9,13 @@ require File.dirname(__FILE__) + '/../lib/fluby.rb'
|
|
9
9
|
|
10
10
|
case ARGV.size
|
11
11
|
when 0
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
if Fluby.is_a_project?
|
13
|
+
Fluby.build
|
14
|
+
else
|
15
|
+
puts "Fluby v#{Fluby.version}"
|
16
|
+
puts "Usage: fluby project_name"
|
17
|
+
exit
|
18
|
+
end
|
15
19
|
when 1
|
16
20
|
action = ARGV[0]
|
17
21
|
if actions.include? action
|
data/lib/fluby.rb
CHANGED
data/lib/templates/Rakefile
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Ale Mu\xC3\xB1oz"
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-12-01 00:00:00 +01:00
|
13
13
|
default_executable: fluby
|
14
14
|
dependencies: []
|
15
15
|
|