hobo 1.4.0.pre3 → 1.4.0.pre4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES-1.4.txt +15 -8
- data/VERSION +1 -1
- metadata +4 -4
data/CHANGES-1.4.txt
CHANGED
@@ -21,32 +21,39 @@ If you're on Linux you'll have to install a javascript runtime.
|
|
21
21
|
On Ubuntu 11.10 you can get one by typing `apt-get install
|
22
22
|
nodejs-dev`. Other Linuxes should be similar. Windows & OS X users
|
23
23
|
should already have a javascript scripting host installed. The list
|
24
|
-
of compatible javascript runtimes is
|
24
|
+
of compatible javascript runtimes is
|
25
|
+
[here](https://github.com/sstephenson/execjs).
|
25
26
|
|
26
|
-
|
27
|
+
To install prerelease versions of Hobo, you have three options: gems
|
28
|
+
from rubygems, gems from source or pointing your Gemfile at hobo
|
29
|
+
source.
|
27
30
|
|
28
|
-
|
31
|
+
### Via gems from rubygems.org
|
29
32
|
|
30
|
-
|
33
|
+
gem install hobo --pre
|
34
|
+
hobo new foo
|
31
35
|
|
32
|
-
### Via gems
|
36
|
+
### Via gems from source
|
33
37
|
|
38
|
+
git clone git://github.com/tablatom/hobo
|
34
39
|
cd hobo
|
35
40
|
rake gems[install]
|
36
41
|
cd wherever-you-want-to-generate-your-app
|
37
42
|
hobo new foo
|
38
43
|
|
39
44
|
Once you've generated an app, you may wish to go in and replace the
|
40
|
-
version strings for the hobo_* gems with `:git => "git://github.com/tablatom/hobo"
|
45
|
+
version strings for the hobo_* gems with `:git => "git://github.com/tablatom/hobo"`
|
41
46
|
|
42
|
-
### Via source
|
47
|
+
### Via source path
|
43
48
|
|
44
49
|
(This won't work on Windows)
|
45
50
|
|
51
|
+
git clone git://github.com/tablatom/hobo
|
46
52
|
export HOBODEV=`pwd`/hobo
|
53
|
+
cd wherever-you-want-to-generate-your-app
|
47
54
|
$HOBODEV/hobo/bin/hobo new foo
|
48
55
|
|
49
|
-
## Updating
|
56
|
+
## Updating a Hobo 1.3 application
|
50
57
|
|
51
58
|
There are several changes that need to be made to your application to
|
52
59
|
upgrade from Hobo 1.3 to Hobo 1.4. Most of these changes are
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.0.
|
1
|
+
1.4.0.pre4
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: hobo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: 6
|
5
|
-
version: 1.4.0.
|
5
|
+
version: 1.4.0.pre4
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Tom Locke
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - "="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 1.4.0.
|
23
|
+
version: 1.4.0.pre4
|
24
24
|
type: :runtime
|
25
25
|
version_requirements: *id001
|
26
26
|
- !ruby/object:Gem::Dependency
|
@@ -31,7 +31,7 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "="
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 1.4.0.
|
34
|
+
version: 1.4.0.pre4
|
35
35
|
type: :runtime
|
36
36
|
version_requirements: *id002
|
37
37
|
- !ruby/object:Gem::Dependency
|
@@ -42,7 +42,7 @@ dependencies:
|
|
42
42
|
requirements:
|
43
43
|
- - "="
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.4.0.
|
45
|
+
version: 1.4.0.pre4
|
46
46
|
type: :runtime
|
47
47
|
version_requirements: *id003
|
48
48
|
- !ruby/object:Gem::Dependency
|