fancy-buttons 0.5.0 → 0.5.1
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/README.markdown +3 -6
- data/fancy-buttons.gemspec +1 -1
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -10,23 +10,20 @@ Without CSS gradient support:
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
13
|
-
Install the plugin:
|
|
14
|
-
sudo gem install compass --pre
|
|
15
|
-
sudo gem install compass-colors
|
|
13
|
+
Install the plugin: (should automatically install latest dependencies for Compass, and Haml)
|
|
16
14
|
sudo gem install fancy-buttons
|
|
17
15
|
|
|
18
16
|
To create a new project based on fancy-buttons:
|
|
19
17
|
|
|
20
|
-
compass install -r fancy-buttons -
|
|
18
|
+
compass install -r fancy-buttons -f fancy-buttons
|
|
21
19
|
|
|
22
20
|
To add fancy-buttons to an existing compass project:
|
|
23
21
|
|
|
24
22
|
# Add the following lines to your compass configuration file:
|
|
25
|
-
require 'compass-colors'
|
|
26
23
|
require 'fancy-buttons'
|
|
27
24
|
|
|
28
25
|
# Then run the following command:
|
|
29
|
-
compass install -r fancy-buttons fancy-buttons
|
|
26
|
+
compass install -r fancy-buttons -f fancy-buttons
|
|
30
27
|
|
|
31
28
|
# Project Goals:
|
|
32
29
|
|
data/fancy-buttons.gemspec
CHANGED