Galleriffic 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/.gitignore +17 -0
  4. data/.idea/.name +1 -0
  5. data/.idea/.rakeTasks +7 -0
  6. data/.idea/Galleriffic.iml +20 -0
  7. data/.idea/encodings.xml +5 -0
  8. data/.idea/misc.xml +5 -0
  9. data/.idea/modules.xml +9 -0
  10. data/.idea/scopes/scope_settings.xml +5 -0
  11. data/.idea/vcs.xml +7 -0
  12. data/.idea/workspace.xml +471 -0
  13. data/Galleriffic.gemspec +24 -0
  14. data/Gemfile +4 -0
  15. data/LICENSE.txt +22 -0
  16. data/README.md +34 -0
  17. data/Rakefile +1 -0
  18. data/lib/.DS_Store +0 -0
  19. data/lib/Galleriffic/version.rb +3 -0
  20. data/lib/Galleriffic.rb +6 -0
  21. data/vendor/.DS_Store +0 -0
  22. data/vendor/assets/.DS_Store +0 -0
  23. data/vendor/assets/javascripts/.DS_Store +0 -0
  24. data/vendor/assets/javascripts/jquery-1.3.2.js +4376 -0
  25. data/vendor/assets/javascripts/jquery.galleriffic.js +979 -0
  26. data/vendor/assets/javascripts/jquery.history.js +168 -0
  27. data/vendor/assets/javascripts/jquery.opacityrollover.js +42 -0
  28. data/vendor/assets/javascripts/jush.js +515 -0
  29. data/vendor/assets/stylesheets/.DS_Store +0 -0
  30. data/vendor/assets/stylesheets/basic.css +63 -0
  31. data/vendor/assets/stylesheets/black.css +57 -0
  32. data/vendor/assets/stylesheets/caption.png +0 -0
  33. data/vendor/assets/stylesheets/galleriffic-1.css +161 -0
  34. data/vendor/assets/stylesheets/galleriffic-2.css +150 -0
  35. data/vendor/assets/stylesheets/galleriffic-3.css +150 -0
  36. data/vendor/assets/stylesheets/galleriffic-4.css +160 -0
  37. data/vendor/assets/stylesheets/galleriffic-5.css +197 -0
  38. data/vendor/assets/stylesheets/jush.css +29 -0
  39. data/vendor/assets/stylesheets/loader.gif +0 -0
  40. data/vendor/assets/stylesheets/loaderWhite.gif +0 -0
  41. data/vendor/assets/stylesheets/nextPageArrow.gif +0 -0
  42. data/vendor/assets/stylesheets/nextPageArrowWhite.gif +0 -0
  43. data/vendor/assets/stylesheets/prevPageArrow.gif +0 -0
  44. data/vendor/assets/stylesheets/prevPageArrowWhite.gif +0 -0
  45. data/vendor/assets/stylesheets/white.css +57 -0
  46. metadata +121 -0
data/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # Galleriffic
2
+
3
+ This gem contains all the css and javascript needed to make Gallerific box. Go to http://www.twospy.com/galleriffic/ for documentation.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'Galleriffic'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install Galleriffic
18
+
19
+ ## Usage
20
+
21
+ This gem contains
22
+
23
+ CSS: basic.css, black.css, galleriffic-1.css, galleriffic-2.css, galleriffic-3.css, galleriffic-4.css, galleriffic-5.css, jush.css, white.css \n
24
+ JS: jquery.galleriffic.js, jquery.history.js, jquery.opacityrollover.js, jush.js and jquery 1.3.2.js.
25
+
26
+ Include the appropriate javascript and css file in your application.js and application.css respectively as outlined in the documentation.
27
+
28
+ ## Contributing
29
+
30
+ 1. Fork it
31
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
32
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
33
+ 4. Push to the branch (`git push origin my-new-feature`)
34
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/lib/.DS_Store ADDED
Binary file
@@ -0,0 +1,3 @@
1
+ module Galleriffic
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,6 @@
1
+ require "Galleriffic/version"
2
+
3
+ module Galleriffic
4
+ class Engine < Rails::Engine
5
+ end
6
+ end
data/vendor/.DS_Store ADDED
Binary file
Binary file
Binary file