anything_slider-rails 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (27) hide show
  1. data/.gitignore +5 -0
  2. data/Gemfile +4 -0
  3. data/Rakefile +1 -0
  4. data/anything_slider.gemspec +22 -0
  5. data/lib/anything_slider-rails.rb +7 -0
  6. data/lib/anything_slider/rails/engine.rb +6 -0
  7. data/lib/anything_slider/rails/version.rb +5 -0
  8. data/readme.markdown +57 -0
  9. data/vendor/assets/images/anythingslider/arrows-metallic.png +0 -0
  10. data/vendor/assets/images/anythingslider/arrows-minimalist.png +0 -0
  11. data/vendor/assets/images/anythingslider/construction.gif +0 -0
  12. data/vendor/assets/images/anythingslider/cs-portfolio.png +0 -0
  13. data/vendor/assets/images/anythingslider/default.png +0 -0
  14. data/vendor/assets/javascripts/anythingslider/jquery.anythingslider.fx.js +188 -0
  15. data/vendor/assets/javascripts/anythingslider/jquery.anythingslider.js +831 -0
  16. data/vendor/assets/javascripts/anythingslider/jquery.anythingslider.video.js +379 -0
  17. data/vendor/assets/javascripts/anythingslider/jquery.easing.1.3.js +205 -0
  18. data/vendor/assets/javascripts/anythingslider/swfobject.js +4 -0
  19. data/vendor/assets/stylesheets/anythingslider/animate.css +3813 -0
  20. data/vendor/assets/stylesheets/anythingslider/anythingslider-ie.css +65 -0
  21. data/vendor/assets/stylesheets/anythingslider/anythingslider.css.erb +202 -0
  22. data/vendor/assets/stylesheets/anythingslider/theme-construction.css.erb +142 -0
  23. data/vendor/assets/stylesheets/anythingslider/theme-cs-portfolio.css.erb +149 -0
  24. data/vendor/assets/stylesheets/anythingslider/theme-metallic.css.erb +146 -0
  25. data/vendor/assets/stylesheets/anythingslider/theme-minimalist-round.css.erb +144 -0
  26. data/vendor/assets/stylesheets/anythingslider/theme-minimalist-square.css.erb +144 -0
  27. metadata +107 -0
@@ -0,0 +1,146 @@
1
+ /*
2
+ AnythingSlider v1.5.10 Metallic Theme
3
+ By Rob Garrison
4
+ */
5
+
6
+ /****** SET COLORS HERE *******/
7
+ /* Default State */
8
+ div.anythingSlider-metallic .anythingWindow {
9
+ border-top: 3px solid #333;
10
+ border-bottom: 3px solid #333;
11
+ }
12
+ div.anythingSlider-metallic .anythingControls ul a {
13
+ border: 1px solid #000;
14
+ }
15
+ div.anythingSlider-metallic .start-stop {
16
+ border: 1px solid #000;
17
+ }
18
+ div.anythingSlider-metallic .start-stop.playing {
19
+ background-color: #300;
20
+ }
21
+ div.anythingSlider-metallic .start-stop:hover, div.anythingSlider-metallic .start-stop.hover {
22
+ color: #ddd;
23
+ }
24
+
25
+ /* Active State */
26
+ div.anythingSlider-metallic.activeSlider .anythingWindow {
27
+ border-color: #0355a3;
28
+ }
29
+ div.anythingSlider-metallic.activeSlider .anythingControls ul a {
30
+ background-color: transparent;
31
+ background-position: -68px -40px;
32
+ }
33
+ div.anythingSlider-metallic.activeSlider .anythingControls ul a:hover, div.anythingSlider-metallic.activeSlider .anythingControls ul a.cur {
34
+ background-position: -76px -57px;
35
+ /* background: #fff; */
36
+ }
37
+ div.anythingSlider-metallic.activeSlider .start-stop.playing {
38
+ background-color: #f00;
39
+ }
40
+ div.anythingSlider-metallic .start-stop:hover, div.anythingSlider-metallic .start-stop.hover {
41
+ color: #fff;
42
+ }
43
+
44
+ /* Navigation Arrows */
45
+ div.anythingSlider-metallic .arrow {
46
+ top: 50%;
47
+ position: absolute;
48
+ display: block;
49
+ z-index: 100;
50
+ }
51
+ div.anythingSlider-metallic .arrow a {
52
+ display: block;
53
+ height: 95px;
54
+ margin-top: -47px; /* half height of image */
55
+ width: 45px;
56
+ outline: 0;
57
+ background: url('<%=image_path("anythingslider/arrows-metallic.png")%>') no-repeat;
58
+ }
59
+
60
+ div.anythingSlider-metallic .forward { right: 0; }
61
+ div.anythingSlider-metallic .back { left: 0; }
62
+ div.anythingSlider-metallic .forward a { background-position: right bottom; }
63
+ div.anythingSlider-metallic .back a { background-position: left bottom; }
64
+ div.anythingSlider-metallic .forward a:hover, div.anythingSlider-metallic .forward a.hover { background-position: right top; }
65
+ div.anythingSlider-metallic .back a:hover, div.anythingSlider-metallic .back a.hover { background-position: left top; }
66
+
67
+ /* Navigation Links */
68
+ div.anythingSlider-metallic .anythingControls {
69
+ float: right;
70
+ position: absolute;
71
+ bottom: 0;
72
+ right: 15%;
73
+ z-index: 100;
74
+ opacity: 0.90;
75
+ filter: alpha(opacity=90);
76
+ }
77
+ div.anythingSlider-metallic .anythingControls ul {
78
+ margin: 0;
79
+ z-index: 100;
80
+ }
81
+ div.anythingSlider-metallic .anythingControls ul li {
82
+ display: block;
83
+ float: left;
84
+ }
85
+ div.anythingSlider-metallic .anythingControls ul a {
86
+ display: block;
87
+ background: transparent url('<%=image_path("anythingslider/arrows-metallic.png")%>') -68px -136px no-repeat;
88
+ height: 10px;
89
+ width: 10px;
90
+ margin: 3px;
91
+ padding: 0;
92
+ outline: 0;
93
+ border-radius: 5px;
94
+ -moz-border-radius: 5px;
95
+ -webkit-border-radius: 5px;
96
+ }
97
+
98
+ div.anythingSlider-metallic .anythingControls ul a:hover, div.anythingSlider-metallic .anythingControls ul a.cur {
99
+ background: transparent url('<%=image_path("anythingslider/arrows-metallic.png")%>') -76px -57px no-repeat;
100
+ }
101
+
102
+ /* Navigation size window arrows */
103
+ div.anythingSlider-metallic .anythingControls li.next a span, div.anythingSlider-metallic .anythingControls li.prev a span {
104
+ text-indent: 1px;
105
+ margin-top: 3px;
106
+ }
107
+ div.anythingSlider-metallic .anythingControls li.prev a, div.anythingSlider-metallic .anythingControls li.next a {
108
+ color: #ddd;
109
+ }
110
+ div.anythingSlider-metallic .anythingControls li.next a:hover, div.anythingSlider-metallic .anythingControls li.prev a:hover {
111
+ color: #000;
112
+ }
113
+
114
+ /* slider autoplay right-to-left, reverse order of nav links to look better */
115
+ div.anythingSlider-metallic.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */
116
+ div.anythingSlider-metallic.rtl .anythingControls ul { float: left; } /* move nav link group to left */
117
+ /* div.anythingSlider-metallic.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */
118
+
119
+ /* Autoplay Start/Stop button */
120
+ div.anythingSlider-metallic .start-stop {
121
+ margin: 3px;
122
+ padding: 0;
123
+ display: inline-block;
124
+ width: 14px;
125
+ height: 14px;
126
+ position: relative;
127
+ bottom: 2px;
128
+ left: 0;
129
+ z-index: 100;
130
+ float: right;
131
+ border-radius: 7px;
132
+ -moz-border-radius: 7px;
133
+ -webkit-border-radius: 7px;
134
+ }
135
+
136
+ /* Extra - replace defaults */
137
+ div.anythingSlider-metallic {
138
+ padding: 6px 23px;
139
+ }
140
+
141
+ /* text indent moved to span inside "a", for IE7; apparently, a negative text-indent on an "a" link moves the link as well as the text */
142
+ div.anythingSlider-metallic .arrow a span, div.anythingSlider-metallic .anythingControls ul a span, div.anythingSlider-metallic .start-stop span {
143
+ display: block;
144
+ line-height: 1px; /* needed for IE7 */
145
+ visibility: hidden; /* needed for IE8, instead of text-indent: -9999px */
146
+ }
@@ -0,0 +1,144 @@
1
+ /*
2
+ AnythingSlider v1.5.10 Minimalist Round Theme
3
+ By Rob Garrison
4
+ */
5
+
6
+ /****** SET COLORS HERE *******/
7
+ /* Default State */
8
+ div.anythingSlider-minimalist-round .anythingWindow {
9
+ border-top: 3px solid #333;
10
+ border-bottom: 3px solid #333;
11
+ }
12
+ div.anythingSlider-minimalist-round .anythingControls ul a {
13
+ border: 1px solid #000;
14
+ background: #333;
15
+ }
16
+ div.anythingSlider-minimalist-round .anythingControls ul a:hover, div.anythingSlider-minimalist-round .anythingControls ul a.cur {
17
+ background: #777;
18
+ }
19
+ div.anythingSlider-minimalist-round .start-stop {
20
+ border: 1px solid #000;
21
+ }
22
+ div.anythingSlider-minimalist-round .start-stop.playing {
23
+ background-color: #300;
24
+ }
25
+ div.anythingSlider-minimalist-round .start-stop:hover, div.anythingSlider-minimalist-round .start-stop.hover {
26
+ color: #ddd;
27
+ }
28
+
29
+ /* Active State */
30
+ div.anythingSlider-minimalist-round.activeSlider .anythingWindow {
31
+ border-color: #164054;
32
+ }
33
+ div.anythingSlider-minimalist-round.activeSlider .anythingControls ul a {
34
+ background-color: #164054;
35
+ }
36
+ div.anythingSlider-minimalist-round.activeSlider .anythingControls ul a:hover, div.anythingSlider-minimalist-round.activeSlider .anythingControls ul a.cur {
37
+ background: #fff;
38
+ }
39
+ div.anythingSlider-minimalist-round.activeSlider .start-stop.playing {
40
+ background-color: #f00;
41
+ }
42
+ div.anythingSlider-minimalist-round .start-stop:hover, div.anythingSlider-minimalist-round .start-stop.hover {
43
+ color: #fff;
44
+ }
45
+
46
+ /* Navigation Arrows */
47
+ div.anythingSlider-minimalist-round .arrow {
48
+ top: 50%;
49
+ position: absolute;
50
+ display: block;
51
+ }
52
+ div.anythingSlider-minimalist-round .arrow a {
53
+ display: block;
54
+ height: 40px;
55
+ margin-top: -20px; /* half height of image */
56
+ width: 30px;
57
+ text-align: center;
58
+ outline: 0;
59
+ background: url('<%=image_path("anythingslider/arrows-minimalist.png")%>') no-repeat;
60
+ }
61
+ div.anythingSlider-minimalist-round .forward { right: 0; }
62
+ div.anythingSlider-minimalist-round .back { left: 0; }
63
+ div.anythingSlider-minimalist-round .forward a { background-position: right bottom; }
64
+ div.anythingSlider-minimalist-round .back a { background-position: left bottom; }
65
+ div.anythingSlider-minimalist-round .forward a:hover, div.anythingSlider-minimalist-round .forward a.hover { background-position: right top; }
66
+ div.anythingSlider-minimalist-round .back a:hover, div.anythingSlider-minimalist-round .back a.hover { background-position: left top; }
67
+
68
+ /* Navigation Links */
69
+ div.anythingSlider-minimalist-round .anythingControls {
70
+ float: right;
71
+ position: absolute;
72
+ bottom: 0;
73
+ right: 15%;
74
+ z-index: 100;
75
+ opacity: 0.90;
76
+ filter: alpha(opacity=90);
77
+ }
78
+ div.anythingSlider-minimalist-round .anythingControls ul {
79
+ margin: 0;
80
+ z-index: 100;
81
+ }
82
+ div.anythingSlider-minimalist-round .anythingControls ul li {
83
+ display: block;
84
+ float: left;
85
+ }
86
+ div.anythingSlider-minimalist-round .anythingControls ul a {
87
+ display: block;
88
+ height: 10px;
89
+ width: 10px;
90
+ margin: 3px;
91
+ padding: 0;
92
+ outline: 0;
93
+ border-radius: 5px;
94
+ -moz-border-radius: 5px;
95
+ -webkit-border-radius: 5px;
96
+ }
97
+
98
+ /* Navigation size window arrows */
99
+ div.anythingSlider-minimalist-round .anythingControls li.next a span, div.anythingSlider-minimalist-round .anythingControls li.prev a span {
100
+ text-indent: 1px;
101
+ margin-top: 3px;
102
+ }
103
+ div.anythingSlider-minimalist-round .anythingControls li.prev a, div.anythingSlider-minimalist-round .anythingControls li.next a {
104
+ color: #ddd;
105
+ }
106
+ div.anythingSlider-minimalist-round .anythingControls li.next a:hover, div.anythingSlider-minimalist-round .anythingControls li.prev a:hover {
107
+ color: #000;
108
+ }
109
+
110
+ /* slider autoplay right-to-left, reverse order of nav links to look better */
111
+ div.anythingSlider-minimalist-round.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */
112
+ div.anythingSlider-minimalist-round.rtl .anythingControls ul { float: left; } /* move nav link group to left */
113
+ /* div.anythingSlider-minimalist-round.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */
114
+
115
+ /* Autoplay Start/Stop button */
116
+ div.anythingSlider-minimalist-round .start-stop {
117
+ margin: 3px;
118
+ padding: 0;
119
+ display: inline-block;
120
+ width: 14px;
121
+ height: 14px;
122
+ position: relative;
123
+ bottom: 2px;
124
+ left: 0;
125
+ z-index: 100;
126
+ text-align: center;
127
+ text-decoration: none;
128
+ float: right;
129
+ border-radius: 7px;
130
+ -moz-border-radius: 7px;
131
+ -webkit-border-radius: 7px;
132
+ }
133
+
134
+ /* Extra - replace defaults */
135
+ div.anythingSlider-minimalist-round {
136
+ padding: 6px 30px;
137
+ }
138
+
139
+ /* text indent moved to span inside "a", for IE7; apparently, a negative text-indent on an "a" link moves the link as well as the text */
140
+ div.anythingSlider-minimalist-round .arrow a span, div.anythingSlider-minimalist-round .anythingControls ul a span, div.anythingSlider-minimalist-round .start-stop span {
141
+ display: block;
142
+ line-height: 1px; /* needed for IE7 */
143
+ visibility: hidden; /* needed for IE8, instead of text-indent: -9999px */
144
+ }
@@ -0,0 +1,144 @@
1
+ /*
2
+ AnythingSlider v1.5.10 Minimalist Square Theme
3
+ By Rob Garrison
4
+ */
5
+
6
+ /****** SET COLORS HERE *******/
7
+ /* Default State */
8
+ div.anythingSlider-minimalist-square .anythingWindow {
9
+ border-top: 3px solid #333;
10
+ border-bottom: 3px solid #333;
11
+ }
12
+ div.anythingSlider-minimalist-square .anythingControls ul a {
13
+ border: 1px solid #000;
14
+ background: #333;
15
+ }
16
+ div.anythingSlider-minimalist-square .anythingControls ul a:hover, div.anythingSlider-minimalist-square .anythingControls ul a.cur {
17
+ background: #777;
18
+ }
19
+ div.anythingSlider-minimalist-square .start-stop {
20
+ border: 1px solid #000;
21
+ }
22
+ div.anythingSlider-minimalist-square .start-stop.playing {
23
+ background-color: #300;
24
+ }
25
+ div.anythingSlider-minimalist-square .start-stop:hover, div.anythingSlider-minimalist-square .start-stop.hover {
26
+ color: #ddd
27
+ }
28
+
29
+ /* Active State */
30
+ div.anythingSlider-minimalist-square.activeSlider .anythingWindow {
31
+ border-color: #164054;
32
+ }
33
+ div.anythingSlider-minimalist-square.activeSlider .anythingControls ul a {
34
+ background-color: #164054;
35
+ }
36
+ div.anythingSlider-minimalist-square.activeSlider .anythingControls ul a:hover, div.anythingSlider-minimalist-square.activeSlider .anythingControls ul a.cur {
37
+ background: #fff;
38
+ }
39
+ div.anythingSlider-minimalist-square.activeSlider .start-stop.playing {
40
+ background-color: #f00;
41
+ }
42
+ div.anythingSlider-minimalist-square .start-stop:hover, div.anythingSlider-minimalist-square .start-stop.hover {
43
+ color: #fff
44
+ }
45
+
46
+ /* Navigation Arrows */
47
+ div.anythingSlider-minimalist-square .arrow {
48
+ top: 50%;
49
+ position: absolute;
50
+ display: block;
51
+ }
52
+ div.anythingSlider-minimalist-square .arrow a {
53
+ display: block;
54
+ height: 40px;
55
+ margin-top: -20px; /* half height of image */
56
+ width: 30px;
57
+ text-align: center;
58
+ outline: 0;
59
+ background: url('<%=image_path("anythingslider/arrows-minimalist.png")%>') no-repeat;
60
+ }
61
+ div.anythingSlider-minimalist-square .forward { right: 0; }
62
+ div.anythingSlider-minimalist-square .back { left: 0; }
63
+ div.anythingSlider-minimalist-square .forward a { background-position: right bottom; }
64
+ div.anythingSlider-minimalist-square .back a { background-position: left bottom; }
65
+ div.anythingSlider-minimalist-square .forward a:hover, div.anythingSlider-minimalist-square .forward a.hover { background-position: right top; }
66
+ div.anythingSlider-minimalist-square .back a:hover, div.anythingSlider-minimalist-square .back a.hover { background-position: left top; }
67
+
68
+ /* Navigation Links */
69
+ div.anythingSlider-minimalist-square .anythingControls {
70
+ float: right;
71
+ position: absolute;
72
+ bottom: 0;
73
+ right: 15%;
74
+ z-index: 100;
75
+ opacity: 0.75;
76
+ filter: alpha(opacity=75);
77
+ }
78
+ div.anythingSlider-minimalist-square .anythingControls ul {
79
+ margin: 0;
80
+ z-index: 100;
81
+ }
82
+ div.anythingSlider-minimalist-square .anythingControls ul li {
83
+ display: block;
84
+ float: left;
85
+ }
86
+ div.anythingSlider-minimalist-square .anythingControls ul a {
87
+ display: block;
88
+ height: 10px;
89
+ width: 10px;
90
+ margin: 3px;
91
+ padding: 0;
92
+ outline: 0;
93
+ border-radius: 0;
94
+ -moz-border-radius: 0;
95
+ -webkit-border-radius: 0;
96
+ }
97
+
98
+ /* Navigation size window arrows */
99
+ div.anythingSlider-minimalist-square .anythingControls li.next a span, div.anythingSlider-minimalist-square .anythingControls li.prev a span {
100
+ text-indent: 1px;
101
+ margin-top: 3px;
102
+ }
103
+ div.anythingSlider-minimalist-square .anythingControls li.prev a, div.anythingSlider-minimalist-square .anythingControls li.next a {
104
+ color: #ddd;
105
+ }
106
+ div.anythingSlider-minimalist-square .anythingControls li.next a:hover, div.anythingSlider-minimalist-square .anythingControls li.prev a:hover {
107
+ color: #000;
108
+ }
109
+
110
+ /* slider autoplay right-to-left, reverse order of nav links to look better */
111
+ div.anythingSlider-minimalist-square.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */
112
+ div.anythingSlider-minimalist-square.rtl .anythingControls ul { float: left; } /* move nav link group to left */
113
+ /* div.anythingSlider-minimalist-square.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */
114
+
115
+ /* Autoplay Start/Stop button */
116
+ div.anythingSlider-minimalist-square .start-stop {
117
+ margin: 3px;
118
+ padding: 0;
119
+ display: inline-block;
120
+ width: 14px;
121
+ height: 14px;
122
+ position: relative;
123
+ bottom: 2px;
124
+ left: 0;
125
+ z-index: 100;
126
+ text-align: center;
127
+ text-decoration: none;
128
+ float: right;
129
+ border-radius: 0;
130
+ -moz-border-radius: 0;
131
+ -webkit-border-radius: 0;
132
+ }
133
+
134
+ /* Extra - replace defaults */
135
+ div.anythingSlider-minimalist-square {
136
+ padding: 6px 30px;
137
+ }
138
+
139
+ /* text indent moved to span inside "a", for IE7; apparently, a negative text-indent on an "a" link moves the link as well as the text */
140
+ div.anythingSlider-minimalist-square .arrow a span, div.anythingSlider-minimalist-square .anythingControls ul a span, div.anythingSlider-minimalist-square .start-stop span {
141
+ display: block;
142
+ line-height: 1px; /* needed for IE7 */
143
+ visibility: hidden; /* needed for IE8, instead of text-indent: -9999px */
144
+ }
metadata ADDED
@@ -0,0 +1,107 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: anything_slider-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Leif
9
+ - Han
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-02-29 00:00:00.000000000Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: railties
17
+ requirement: &70128264559180 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 3.1.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *70128264559180
26
+ - !ruby/object:Gem::Dependency
27
+ name: bundler
28
+ requirement: &70128264558140 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: *70128264558140
37
+ - !ruby/object:Gem::Dependency
38
+ name: rails
39
+ requirement: &70128264556660 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ version: '3.1'
45
+ type: :development
46
+ prerelease: false
47
+ version_requirements: *70128264556660
48
+ description: Gem installation of jquery plugin, AnythingSlider
49
+ email:
50
+ - leifcr@gmail.com
51
+ executables: []
52
+ extensions: []
53
+ extra_rdoc_files: []
54
+ files:
55
+ - .gitignore
56
+ - Gemfile
57
+ - Rakefile
58
+ - anything_slider.gemspec
59
+ - lib/anything_slider-rails.rb
60
+ - lib/anything_slider/rails/engine.rb
61
+ - lib/anything_slider/rails/version.rb
62
+ - readme.markdown
63
+ - vendor/assets/images/anythingslider/arrows-metallic.png
64
+ - vendor/assets/images/anythingslider/arrows-minimalist.png
65
+ - vendor/assets/images/anythingslider/construction.gif
66
+ - vendor/assets/images/anythingslider/cs-portfolio.png
67
+ - vendor/assets/images/anythingslider/default.png
68
+ - vendor/assets/javascripts/anythingslider/jquery.anythingslider.fx.js
69
+ - vendor/assets/javascripts/anythingslider/jquery.anythingslider.js
70
+ - vendor/assets/javascripts/anythingslider/jquery.anythingslider.video.js
71
+ - vendor/assets/javascripts/anythingslider/jquery.easing.1.3.js
72
+ - vendor/assets/javascripts/anythingslider/swfobject.js
73
+ - vendor/assets/stylesheets/anythingslider/animate.css
74
+ - vendor/assets/stylesheets/anythingslider/anythingslider-ie.css
75
+ - vendor/assets/stylesheets/anythingslider/anythingslider.css.erb
76
+ - vendor/assets/stylesheets/anythingslider/theme-construction.css.erb
77
+ - vendor/assets/stylesheets/anythingslider/theme-cs-portfolio.css.erb
78
+ - vendor/assets/stylesheets/anythingslider/theme-metallic.css.erb
79
+ - vendor/assets/stylesheets/anythingslider/theme-minimalist-round.css.erb
80
+ - vendor/assets/stylesheets/anythingslider/theme-minimalist-square.css.erb
81
+ homepage: ''
82
+ licenses: []
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ - vendor
88
+ required_ruby_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 1.8.6
103
+ signing_key:
104
+ specification_version: 3
105
+ summary: AnythingSlider automated install for Rails 3.1+
106
+ test_files: []
107
+ has_rdoc: