Best way to work out this kind of problem is actually doing it step by step, as you did in your post, but more actions involved. It's called mathematical analysis.
1) Find domain of your function. Obviously, all points except $x = -2$
$$
D[f] = \left ( -\infty, -2 \right ) \cup \left (-2, +\infty \right) = \mathbb R \setminus\{-2\}
$$
2) Find range of your function. It's also quite obvious that function can take any values.
$$
E[f] = (-\infty, +\infty) = \mathbb R
$$
3) Find positive-negative range. To do this, consider the function itself. For example
$$
f(x) = \frac {2x^2}{x+2}
$$
Enumerator is always positive or $0$. Denominator is positive if $x > -2$ and negative if $x < -2$. To illustrate it typically people draw a diagram as follows

Not that $x = -2$ is excluded from the $x$ line since it doesn't belong to the domain of function.
4) Find asymptotes if any
a) Horizontal or inclined asymptote. To find it, assume that there's one of the form $y = kx+ b$. In this case
$$
\lim_{x \rightarrow +\infty} \frac {f(x)}x = k \\
$$
and
$$
\lim_{x \rightarrow +\infty} (f(x)-kx) = b
$$
should hold. So check it
$$
\lim_{x\rightarrow +\infty} \frac{\frac {2x^2}{x-2}}x = \lim_{x\rightarrow +\infty} \frac {2x}{x+2} = 2 \\
\lim_{x\rightarrow +\infty}\left ( \frac {2x^2}{x+2}-2x \right) = \lim_{x\rightarrow +\infty} \frac {-4x}{x+2} = -4
$$
So $y = 2x-4$ is an inclined asymptote of $f(x)$.
Note: Sometimes functions have two different asymptotes when $x\rightarrow +\infty$ and $x\rightarrow -\infty$, so they need to be found separately by calculating the limit above with $x \rightarrow -\infty$ as well. If yo actually do it, you'll find that for this particular $f$ both asymptotes coincide.
b) To find vertical asymptotes one needs to define points $a$ such that
$$
\lim_{x\rightarrow a \pm 0}f(x) = \pm \infty
$$
Looking at $f$ you can say that $x = -2$ is the only point when limit above holds.
$$
\lim_{x\rightarrow a +0} \frac {x^2}{x+2} = +\infty \\
\lim_{x\rightarrow a -0} \frac {x^2}{x+2} = -\infty
$$
So $x = -2$ is a vertical asymptote. On the left from it the function is infinitely negative, from the right – infinitely positive.
5) Find extrema and intervals of monotonicity. This part can be done by observing sign of derivative
$$
f'(x) = \left (\frac {2x^2}{x+2} \right)' = \frac {2x(x+4)}{(x+2)^2}
$$
Diagram for this expressions will be

Looking at this diagram you can say that when $x < -4$ function is increasing, when $x \in (-4, -2)\cup (-2, 0)$ function is decreasing, when $x > 0$ it's increasing again, which means at $x = -4$ function has its local maximum and at $x = 0$ its local minimum.
So now you know pretty much everything about functions behaviour on different ranges, so you can sketch it.
