shelly 0.1.17 → 0.1.18
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/lib/shelly/cli/main.rb +1 -1
- data/lib/shelly/version.rb +1 -1
- data/spec/shelly/cli/main_spec.rb +1 -1
- metadata +2 -2
data/lib/shelly/cli/main.rb
CHANGED
|
@@ -222,7 +222,7 @@ We have been notified about it. We will be adding new resources shortly}
|
|
|
222
222
|
if overwrite_remote?(app)
|
|
223
223
|
say "git remote add #{app} #{app.git_url}"
|
|
224
224
|
app.add_git_remote
|
|
225
|
-
say "git fetch
|
|
225
|
+
say "git fetch #{app}"
|
|
226
226
|
app.git_fetch_remote
|
|
227
227
|
say "git checkout -b #{app} --track #{app}/master"
|
|
228
228
|
app.git_add_tracking_branch
|
data/lib/shelly/version.rb
CHANGED
|
@@ -890,7 +890,7 @@ We have been notified about it. We will be adding new resources shortly")
|
|
|
890
890
|
it "should show info about adding remote and branch" do
|
|
891
891
|
$stdout.should_receive(:puts).with(green "Setting up foo-staging cloud")
|
|
892
892
|
$stdout.should_receive(:puts).with("git remote add foo-staging git_url")
|
|
893
|
-
$stdout.should_receive(:puts).with("git fetch
|
|
893
|
+
$stdout.should_receive(:puts).with("git fetch foo-staging")
|
|
894
894
|
$stdout.should_receive(:puts).with("git checkout -b foo-staging --track foo-staging/master")
|
|
895
895
|
$stdout.should_receive(:puts).with(green "Your application is set up.")
|
|
896
896
|
invoke(@main, :setup)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: shelly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.18
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-07-
|
|
12
|
+
date: 2012-07-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|