animate-rails 0.0.1 → 0.0.2
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.md +28 -0
- data/lib/animate-rails/version.rb +1 -1
- metadata +5 -4
- data/README.rdoc +0 -3
data/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
animate-rails
|
|
2
|
+
===================
|
|
3
|
+
|
|
4
|
+
animate.css for rails.
|
|
5
|
+
https://github.com/daneden/animate.css
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Installation
|
|
9
|
+
=======
|
|
10
|
+
|
|
11
|
+
Add this extension to your Gemfile:
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
gem "animate-rails"
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Then run:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
bundle install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Add application.css (Ruby on Rails):
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
*= require animate
|
|
27
|
+
```
|
|
28
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: animate-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
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:
|
|
12
|
+
date: 2013-01-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|
|
@@ -40,7 +40,7 @@ files:
|
|
|
40
40
|
- lib/tasks/animate-rails_tasks.rake
|
|
41
41
|
- MIT-LICENSE
|
|
42
42
|
- Rakefile
|
|
43
|
-
- README.
|
|
43
|
+
- README.md
|
|
44
44
|
- test/animate-rails_test.rb
|
|
45
45
|
- test/dummy/app/assets/javascripts/application.js
|
|
46
46
|
- test/dummy/app/assets/stylesheets/application.css
|
|
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
92
|
version: '0'
|
|
93
93
|
requirements: []
|
|
94
94
|
rubyforge_project:
|
|
95
|
-
rubygems_version: 1.8.
|
|
95
|
+
rubygems_version: 1.8.24
|
|
96
96
|
signing_key:
|
|
97
97
|
specification_version: 3
|
|
98
98
|
summary: animate.css for rails
|
|
@@ -128,3 +128,4 @@ test_files:
|
|
|
128
128
|
- test/dummy/script/rails
|
|
129
129
|
- test/integration/navigation_test.rb
|
|
130
130
|
- test/test_helper.rb
|
|
131
|
+
has_rdoc:
|
data/README.rdoc
DELETED