css3-progress-bar-rails 0.1.0 → 0.1.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 +30 -0
- data/lib/css3-progress-bar-rails/version.rb +1 -1
- metadata +2 -1
data/README.markdown
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# CSS3 Progress Bars for Rails
|
|
2
|
+
|
|
3
|
+
## Inspiration
|
|
4
|
+
|
|
5
|
+
[Josh Sullivan][js] made some very pretty [progress bars][blog] in CSS3.
|
|
6
|
+
|
|
7
|
+
[I][vanity] wrote some helper methods for Rails to generate the HTML for the progress bars.
|
|
8
|
+
|
|
9
|
+
Thought it might be useful.
|
|
10
|
+
|
|
11
|
+
## Instruction
|
|
12
|
+
|
|
13
|
+
This gem assumes you're using Rails 3.1+, including the asset pipeline.
|
|
14
|
+
|
|
15
|
+
Into the Gemfile:
|
|
16
|
+
gem 'css3-progress-bar-rails'
|
|
17
|
+
|
|
18
|
+
Into the application.css header:
|
|
19
|
+
|
|
20
|
+
*= require 'css3-progress-bar'
|
|
21
|
+
|
|
22
|
+
## Indication
|
|
23
|
+
|
|
24
|
+
Except where indicated:
|
|
25
|
+
Copyright (c) 2011 [Nicholas Fine][vanity], released under the MIT license.
|
|
26
|
+
|
|
27
|
+
[js]: http://dipperstove.com/index.html
|
|
28
|
+
[blog]: http://dipperstove.com/design/css3-progress-bars.html
|
|
29
|
+
[vanity]: http://ndfine.com
|
|
30
|
+
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: css3-progress-bar-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Nicholas Fine
|
|
@@ -36,6 +36,7 @@ extra_rdoc_files: []
|
|
|
36
36
|
files:
|
|
37
37
|
- .gitignore
|
|
38
38
|
- Gemfile
|
|
39
|
+
- README.markdown
|
|
39
40
|
- Rakefile
|
|
40
41
|
- app/assets/stylesheets/css3-progress-bar.css
|
|
41
42
|
- app/helpers/css3_progress_bars_helper.rb
|