herokuise 0.8 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/bin/herokuise +1 -1
- data/herokise.gemspec +16 -1
- data/herokuise.gemspec +2 -2
- metadata +4 -3
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('herokuise', '0.8') do |p|
|
5
|
+
Echoe.new('herokuise', '0.8.1') do |p|
|
6
6
|
p.description = "automate getting a site on heroku and git"
|
7
7
|
p.url = "http://github.com/orta/herokuise"
|
8
8
|
p.author = "orta therox"
|
data/bin/herokuise
CHANGED
@@ -20,7 +20,7 @@ if github_user == ""
|
|
20
20
|
Process.exit
|
21
21
|
end
|
22
22
|
|
23
|
-
if open("http://#{appname}.heroku.com/").include? "No such app"
|
23
|
+
if open("http://#{appname}.heroku.com/", "User-Agent" => "Ruby/#{RUBY_VERSION}").include? "No such app"
|
24
24
|
puts "Heroku app http://#{appname}.heroku.com already exists"
|
25
25
|
Process.exit
|
26
26
|
end
|
data/herokise.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{herokise}
|
5
|
-
s.version = "0.
|
5
|
+
s.version = "0.8.1"
|
6
6
|
|
7
7
|
s.default_executable
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
@@ -18,7 +18,22 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.rubygems_version = %q{1.3.7}
|
19
19
|
s.summary = %q{automate getting a site on heroku and git}
|
20
20
|
s.executables = "herokise"
|
21
|
+
s.post_install_message = %q{
|
22
|
+
========================================================================
|
23
|
+
|
21
24
|
|
25
|
+
Awesome beanz!
|
26
|
+
|
27
|
+
To create a new site, find your way to the parent directory and run
|
28
|
+
|
29
|
+
herokuise [name]
|
30
|
+
|
31
|
+
This will create a repo in your github account, and create a heroku
|
32
|
+
app, make sure both of the gems are setup
|
33
|
+
|
34
|
+
|
35
|
+
========================================================================
|
36
|
+
}
|
22
37
|
if s.respond_to? :specification_version then
|
23
38
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
24
39
|
s.specification_version = 3
|
data/herokuise.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{herokuise}
|
5
|
-
s.version = "0.8"
|
5
|
+
s.version = "0.8.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["orta therox"]
|
9
|
-
s.date = %q{2010-09-
|
9
|
+
s.date = %q{2010-09-05}
|
10
10
|
s.default_executable = %q{herokuise}
|
11
11
|
s.description = %q{automate getting a site on heroku and git}
|
12
12
|
s.email = %q{orta.therox@gmail.com}
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: herokuise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 61
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 8
|
9
|
-
|
9
|
+
- 1
|
10
|
+
version: 0.8.1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- orta therox
|
@@ -14,7 +15,7 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-09-
|
18
|
+
date: 2010-09-05 00:00:00 +01:00
|
18
19
|
default_executable:
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|