sammy 0.0.12 → 0.5.0

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.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +40 -0
  5. data/LICENSE +23 -0
  6. data/README.md +94 -3
  7. data/Rakefile +9 -0
  8. data/app/assets/stylesheets/_sammy.scss +56 -0
  9. data/app/assets/stylesheets/addons/_button.scss +273 -0
  10. data/app/assets/stylesheets/addons/_clearfix.scss +29 -0
  11. data/app/assets/stylesheets/addons/_font-family.scss +5 -0
  12. data/app/assets/stylesheets/addons/_hide-text.scss +5 -0
  13. data/app/assets/stylesheets/addons/_html5-input-types.scss +56 -0
  14. data/app/assets/stylesheets/addons/_position.scss +42 -0
  15. data/app/assets/stylesheets/addons/_prefixer.scss +49 -0
  16. data/app/assets/stylesheets/addons/_retina-image.scss +32 -0
  17. data/app/assets/stylesheets/addons/_size.scss +44 -0
  18. data/app/assets/stylesheets/addons/_timing-functions.scss +32 -0
  19. data/app/assets/stylesheets/addons/_triangle.scss +45 -0
  20. data/app/assets/stylesheets/css3/_animation.scss +52 -0
  21. data/app/assets/stylesheets/css3/_appearance.scss +3 -0
  22. data/app/assets/stylesheets/css3/_backface-visibility.scss +6 -0
  23. data/app/assets/stylesheets/css3/_background-image.scss +48 -0
  24. data/app/assets/stylesheets/css3/_background.scss +103 -0
  25. data/app/assets/stylesheets/css3/_border-image.scss +53 -0
  26. data/app/assets/stylesheets/css3/_border-radius.scss +22 -0
  27. data/app/assets/stylesheets/css3/_box-sizing.scss +4 -0
  28. data/app/assets/stylesheets/css3/_columns.scss +47 -0
  29. data/app/assets/stylesheets/css3/_flex-box.scss +52 -0
  30. data/app/assets/stylesheets/css3/_font-face.scss +23 -0
  31. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +10 -0
  32. data/app/assets/stylesheets/css3/_image-rendering.scss +13 -0
  33. data/app/assets/stylesheets/css3/_inline-block.scss +8 -0
  34. data/app/assets/stylesheets/css3/_keyframes.scss +41 -0
  35. data/app/assets/stylesheets/css3/_linear-gradient.scss +41 -0
  36. data/app/assets/stylesheets/css3/_perspective.scss +8 -0
  37. data/app/assets/stylesheets/css3/_placeholder.scss +29 -0
  38. data/app/assets/stylesheets/css3/_radial-gradient.scss +44 -0
  39. data/app/assets/stylesheets/css3/_transform.scss +15 -0
  40. data/app/assets/stylesheets/css3/_transition.scss +34 -0
  41. data/app/assets/stylesheets/css3/_user-select.scss +3 -0
  42. data/app/assets/stylesheets/functions/_compact.scss +11 -0
  43. data/app/assets/stylesheets/functions/_flex-grid.scss +39 -0
  44. data/app/assets/stylesheets/functions/_grid-width.scss +13 -0
  45. data/app/assets/stylesheets/functions/_linear-gradient.scss +13 -0
  46. data/app/assets/stylesheets/functions/_modular-scale.scss +40 -0
  47. data/app/assets/stylesheets/functions/_px-to-em.scss +8 -0
  48. data/app/assets/stylesheets/functions/_radial-gradient.scss +23 -0
  49. data/app/assets/stylesheets/functions/_tint-shade.scss +9 -0
  50. data/app/assets/stylesheets/functions/_transition-property-name.scss +22 -0
  51. data/app/assets/stylesheets/helpers/_deprecated-webkit-gradient.scss +39 -0
  52. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +13 -0
  53. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +64 -0
  54. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +69 -0
  55. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +18 -0
  56. data/app/assets/stylesheets/helpers/_render-gradients.scss +26 -0
  57. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +10 -0
  58. data/bin/sammy +6 -0
  59. data/lib/sammy.rb +27 -9
  60. data/lib/sammy/date.rb +3 -0
  61. data/lib/sammy/engine.rb +5 -0
  62. data/lib/sammy/generator.rb +80 -0
  63. data/lib/sammy/version.rb +3 -0
  64. data/lib/tasks/install.rake +20 -0
  65. data/sammy.gemspec +31 -0
  66. metadata +117 -88
  67. data/stylesheets/_sammy.sass +0 -3
  68. data/stylesheets/sammy/_animations.scss +0 -35
  69. data/stylesheets/sammy/_css3.scss +0 -3
  70. data/stylesheets/sammy/_shared.scss +0 -2
  71. data/stylesheets/sammy/_utilities.scss +0 -1
  72. data/stylesheets/sammy/animations/_attention-seekers.scss +0 -7
  73. data/stylesheets/sammy/animations/_bouncing-entrances.scss +0 -5
  74. data/stylesheets/sammy/animations/_bouncing-exits.scss +0 -5
  75. data/stylesheets/sammy/animations/_fading-entrances.scss +0 -12
  76. data/stylesheets/sammy/animations/_fading-exits.scss +0 -12
  77. data/stylesheets/sammy/animations/_flippers.scss +0 -5
  78. data/stylesheets/sammy/animations/_rotating-entrances.scss +0 -5
  79. data/stylesheets/sammy/animations/_rotating-exits.scss +0 -5
  80. data/stylesheets/sammy/animations/_specials.scss +0 -3
  81. data/stylesheets/sammy/animations/attention-seekers/_bounce.scss +0 -30
  82. data/stylesheets/sammy/animations/attention-seekers/_flash.scss +0 -28
  83. data/stylesheets/sammy/animations/attention-seekers/_pulse.scss +0 -28
  84. data/stylesheets/sammy/animations/attention-seekers/_shake.scss +0 -34
  85. data/stylesheets/sammy/animations/attention-seekers/_swing.scss +0 -30
  86. data/stylesheets/sammy/animations/attention-seekers/_tada.scss +0 -34
  87. data/stylesheets/sammy/animations/attention-seekers/_wobble.scss +0 -32
  88. data/stylesheets/sammy/animations/bouncing-entrances/_bounceIn.scss +0 -37
  89. data/stylesheets/sammy/animations/bouncing-entrances/_bounceInDown.scss +0 -37
  90. data/stylesheets/sammy/animations/bouncing-entrances/_bounceInLeft.scss +0 -37
  91. data/stylesheets/sammy/animations/bouncing-entrances/_bounceInRight.scss +0 -37
  92. data/stylesheets/sammy/animations/bouncing-entrances/_bounceInUp.scss +0 -37
  93. data/stylesheets/sammy/animations/bouncing-exits/_bounceOut.scss +0 -37
  94. data/stylesheets/sammy/animations/bouncing-exits/_bounceOutDown.scss +0 -34
  95. data/stylesheets/sammy/animations/bouncing-exits/_bounceOutLeft.scss +0 -34
  96. data/stylesheets/sammy/animations/bouncing-exits/_bounceOutRight.scss +0 -34
  97. data/stylesheets/sammy/animations/bouncing-exits/_bounceOutUp.scss +0 -34
  98. data/stylesheets/sammy/animations/fading-entrances/_fadeIn.scss +0 -25
  99. data/stylesheets/sammy/animations/fading-entrances/_fadeInDown.scss +0 -31
  100. data/stylesheets/sammy/animations/fading-entrances/_fadeInDownBig.scss +0 -31
  101. data/stylesheets/sammy/animations/fading-entrances/_fadeInLeft.scss +0 -31
  102. data/stylesheets/sammy/animations/fading-entrances/_fadeInLeftBig.scss +0 -31
  103. data/stylesheets/sammy/animations/fading-entrances/_fadeInRight.scss +0 -31
  104. data/stylesheets/sammy/animations/fading-entrances/_fadeInRightBig.scss +0 -31
  105. data/stylesheets/sammy/animations/fading-entrances/_fadeInUp.scss +0 -31
  106. data/stylesheets/sammy/animations/fading-entrances/_fadeInUpBig.scss +0 -31
  107. data/stylesheets/sammy/animations/fading-exits/_fadeOut.scss +0 -25
  108. data/stylesheets/sammy/animations/fading-exits/_fadeOutDown.scss +0 -31
  109. data/stylesheets/sammy/animations/fading-exits/_fadeOutDownBig.scss +0 -31
  110. data/stylesheets/sammy/animations/fading-exits/_fadeOutLeft.scss +0 -31
  111. data/stylesheets/sammy/animations/fading-exits/_fadeOutLeftBig.scss +0 -31
  112. data/stylesheets/sammy/animations/fading-exits/_fadeOutRight.scss +0 -31
  113. data/stylesheets/sammy/animations/fading-exits/_fadeOutRightBig.scss +0 -31
  114. data/stylesheets/sammy/animations/fading-exits/_fadeOutUp.scss +0 -31
  115. data/stylesheets/sammy/animations/fading-exits/_fadeOutUpBig.scss +0 -31
  116. data/stylesheets/sammy/animations/flippers/_flip.scss +0 -44
  117. data/stylesheets/sammy/animations/flippers/_flipInX.scss +0 -38
  118. data/stylesheets/sammy/animations/flippers/_flipInY.scss +0 -38
  119. data/stylesheets/sammy/animations/flippers/_flipOutX.scss +0 -32
  120. data/stylesheets/sammy/animations/flippers/_flipOutY.scss +0 -32
  121. data/stylesheets/sammy/animations/rotating-entrances/_rotateIn.scss +0 -33
  122. data/stylesheets/sammy/animations/rotating-entrances/_rotateInDownLeft.scss +0 -33
  123. data/stylesheets/sammy/animations/rotating-entrances/_rotateInDownRight.scss +0 -33
  124. data/stylesheets/sammy/animations/rotating-entrances/_rotateInUpLeft.scss +0 -33
  125. data/stylesheets/sammy/animations/rotating-entrances/_rotateInUpRight.scss +0 -33
  126. data/stylesheets/sammy/animations/rotating-exits/_rotateOut.scss +0 -33
  127. data/stylesheets/sammy/animations/rotating-exits/_rotateOutDownLeft.scss +0 -33
  128. data/stylesheets/sammy/animations/rotating-exits/_rotateOutDownRight.scss +0 -33
  129. data/stylesheets/sammy/animations/rotating-exits/_rotateOutUpLeft.scss +0 -33
  130. data/stylesheets/sammy/animations/rotating-exits/_rotateOutUpRight.scss +0 -33
  131. data/stylesheets/sammy/animations/specials/_hinge.scss +0 -48
  132. data/stylesheets/sammy/animations/specials/_rollIn.scss +0 -33
  133. data/stylesheets/sammy/animations/specials/_rollOut.scss +0 -33
  134. data/stylesheets/sammy/css3/_animation.scss +0 -75
  135. data/stylesheets/sammy/css3/_backface-visibility.scss +0 -14
  136. data/stylesheets/sammy/css3/_transform.scss +0 -27
  137. data/stylesheets/sammy/css3/animation/_animation-delay.scss +0 -18
  138. data/stylesheets/sammy/css3/animation/_animation-direction.scss +0 -18
  139. data/stylesheets/sammy/css3/animation/_animation-duration.scss +0 -17
  140. data/stylesheets/sammy/css3/animation/_animation-fill-mode.scss +0 -18
  141. data/stylesheets/sammy/css3/animation/_animation-iteration-count.scss +0 -18
  142. data/stylesheets/sammy/css3/animation/_animation-name.scss +0 -18
  143. data/stylesheets/sammy/css3/animation/_animation-play-state.scss +0 -18
  144. data/stylesheets/sammy/css3/animation/_animation-timing-function.scss +0 -18
  145. data/stylesheets/sammy/utilities/_mixins.scss +0 -12
  146. data/templates/sammy/manifest.rb +0 -0
@@ -0,0 +1,18 @@
1
+ @function _radial-positions-parser($gradient-pos) {
2
+ $shape-size: nth($gradient-pos, 1);
3
+ $pos: nth($gradient-pos, 2);
4
+ $shape-size-spec: _shape-size-stripper($shape-size);
5
+
6
+ $pre-spec: unquote(if($pos, "#{$pos}, ", null))
7
+ unquote(if($shape-size, "#{$shape-size},", null));
8
+ $pos-spec: if($pos, "at #{$pos}", null);
9
+
10
+ $spec: "#{$shape-size-spec} #{$pos-spec}";
11
+
12
+ // Add comma
13
+ @if ($spec != ' ') {
14
+ $spec: "#{$spec},"
15
+ }
16
+
17
+ @return $pre-spec $spec;
18
+ }
@@ -0,0 +1,26 @@
1
+ // User for linear and radial gradients within background-image or border-image properties
2
+
3
+ @function _render-gradients($gradient-positions, $gradients, $gradient-type, $vendor: false) {
4
+ $pre-spec: null;
5
+ $spec: null;
6
+ $vendor-gradients: null;
7
+ @if $gradient-type == linear {
8
+ @if $gradient-positions {
9
+ $pre-spec: nth($gradient-positions, 1);
10
+ $spec: nth($gradient-positions, 2);
11
+ }
12
+ }
13
+ @else if $gradient-type == radial {
14
+ $pre-spec: nth($gradient-positions, 1);
15
+ $spec: nth($gradient-positions, 2);
16
+ }
17
+
18
+ @if $vendor {
19
+ $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients);
20
+ }
21
+ @else if $vendor == false {
22
+ $vendor-gradients: "#{$gradient-type}-gradient(#{$spec} #{$gradients})";
23
+ $vendor-gradients: unquote($vendor-gradients);
24
+ }
25
+ @return $vendor-gradients;
26
+ }
@@ -0,0 +1,10 @@
1
+ @function _shape-size-stripper($shape-size) {
2
+ $shape-size-spec: null;
3
+ @each $value in $shape-size {
4
+ @if ($value == "cover") or ($value == "contain") {
5
+ $value: null;
6
+ }
7
+ $shape-size-spec: "#{$shape-size-spec} #{$value}";
8
+ }
9
+ @return $shape-size-spec;
10
+ }
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # CodeKit needs relative paths
4
+ require File.dirname(__FILE__) + '/../lib/sammy.rb'
5
+
6
+ Sammy::Generator.start
@@ -1,9 +1,27 @@
1
- require 'compass'
2
- Compass::Frameworks.register("sammy", :path => "#{File.dirname(__FILE__)}/..")
3
-
4
- module Sammy
5
-
6
- VERSION = "0.0.12"
7
- DATE = "2013-12-04"
8
-
9
- end
1
+ # CodeKit needs relative paths
2
+ dir = File.dirname(__FILE__)
3
+ $LOAD_PATH.unshift dir unless $LOAD_PATH.include?(dir)
4
+
5
+ require "sammy/generator"
6
+
7
+ unless defined?(Sass)
8
+ require 'sass'
9
+ end
10
+
11
+ module Sammy
12
+ if defined?(Rails) && defined?(Rails::Engine)
13
+ class Engine < ::Rails::Engine
14
+ require 'sammy/engine'
15
+ end
16
+
17
+ module Rails
18
+ class Railtie < ::Rails::Railtie
19
+ rake_tasks do
20
+ load "tasks/install.rake"
21
+ end
22
+ end
23
+ end
24
+ else
25
+ Sass.load_paths << File.expand_path("../../app/assets/stylesheets", __FILE__)
26
+ end
27
+ end
@@ -0,0 +1,3 @@
1
+ module Sammy
2
+ DATE = "2013-04-15"
3
+ end
@@ -0,0 +1,5 @@
1
+ module Sammy
2
+ class Engine < Rails::Engine
3
+ # auto wire
4
+ end
5
+ end
@@ -0,0 +1,80 @@
1
+ require 'sammy/version'
2
+ require "fileutils"
3
+ require 'thor'
4
+
5
+ module Sammy
6
+ class Generator < Thor
7
+ map ['-v', '--version'] => :version
8
+
9
+ desc 'install', 'Install Sammy into your project'
10
+ method_options :path => :string, :force => :boolean
11
+ def install
12
+ if sammy_files_already_exist? && !options[:force]
13
+ puts "Sammy files already installed, doing nothing."
14
+ else
15
+ install_files
16
+ puts "Sammy files installed to #{install_path}/"
17
+ end
18
+ end
19
+
20
+ desc 'update', 'Update Sammy'
21
+ method_options :path => :string
22
+ def update
23
+ if sammy_files_already_exist?
24
+ remove_sammy_directory
25
+ install_files
26
+ puts "Sammy files updated."
27
+ else
28
+ puts "No existing sammy installation. Doing nothing."
29
+ end
30
+ end
31
+
32
+ desc 'version', 'Show Sammy version'
33
+ def version
34
+ say "Sammy #{Sammy::VERSION}"
35
+ end
36
+
37
+ private
38
+
39
+ def sammy_files_already_exist?
40
+ install_path.exist?
41
+ end
42
+
43
+ def install_path
44
+ @install_path ||= if options[:path]
45
+ Pathname.new(File.join(options[:path], 'sammy'))
46
+ else
47
+ Pathname.new('sammy')
48
+ end
49
+ end
50
+
51
+ def install_files
52
+ make_install_directory
53
+ copy_in_scss_files
54
+ end
55
+
56
+ def remove_sammy_directory
57
+ FileUtils.rm_rf("sammy")
58
+ end
59
+
60
+ def make_install_directory
61
+ FileUtils.mkdir_p(install_path)
62
+ end
63
+
64
+ def copy_in_scss_files
65
+ FileUtils.cp_r(all_stylesheets, install_path)
66
+ end
67
+
68
+ def all_stylesheets
69
+ Dir["#{stylesheets_directory}/*"]
70
+ end
71
+
72
+ def stylesheets_directory
73
+ File.join(top_level_directory, "app", "assets", "stylesheets")
74
+ end
75
+
76
+ def top_level_directory
77
+ File.dirname(File.dirname(File.dirname(__FILE__)))
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,3 @@
1
+ module Sammy
2
+ VERSION = "0.5.0"
3
+ end
@@ -0,0 +1,20 @@
1
+ # Needed for pre-3.1.
2
+
3
+ require "fileutils"
4
+ require "find"
5
+
6
+ namespace :sammy do
7
+ desc "Move files to the Rails assets directory."
8
+ task :install, [:sass_path] do |t, args|
9
+ args.with_defaults(:sass_path => 'public/stylesheets/sass')
10
+ source_root = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
11
+ FileUtils.mkdir_p("#{Rails.root}/#{args.sass_path}/sammy")
12
+ FileUtils.cp_r("#{source_root}/app/assets/stylesheets/.", "#{Rails.root}/#{args.sass_path}/sammy", { :preserve => true })
13
+ Find.find("#{Rails.root}/#{args.sass_path}/sammy") do |path|
14
+ if path.end_with?(".css.scss")
15
+ path_without_css_extension = path.gsub(/\.css\.scss$/, ".scss")
16
+ FileUtils.mv(path, path_without_css_extension)
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,31 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "sammy/version"
4
+ require "sammy/date"
5
+
6
+ require './lib/sammy'
7
+
8
+ Gem::Specification.new do |s|
9
+ s.name = "sammy"
10
+ s.platform = Gem::Platform::RUBY
11
+ s.version = Sammy::VERSION
12
+ s.date = Sammy::DATE
13
+ s.authors = ["Devin Halladay"]
14
+ s.email = ["devin@devinhalladay.com"]
15
+ s.homepage = "http://devinhalladay.com/sammy/"
16
+ s.summary = %q{Sammy is a lightweight, sexy Sass mixin library using the SCSS syntax."}
17
+ s.description = %{Sammy began as a lightweight Sass animation library, but rapidly turned into
18
+ a full Sass mixin library. More lightweight than Compass, and simpler than using
19
+ your own mixins. Sammy also includes several CSS libraries such as Animate.css that
20
+ have been re-written using the SCSS syntax.}
21
+
22
+ s.files = `git ls-files`.split("\n")
23
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
24
+ s.require_paths = ["lib"]
25
+
26
+ s.add_dependency('sass', '>= 3.2.0')
27
+ s.add_dependency('thor')
28
+
29
+ s.add_development_dependency('aruba', '~> 0.4')
30
+ s.add_development_dependency('rake')
31
+ end
metadata CHANGED
@@ -1,118 +1,147 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sammy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.12
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Devin Halladay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-04 00:00:00.000000000 Z
11
+ date: 2013-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: compass
14
+ name: sass
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - '>='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.2
19
+ version: 3.2.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '>='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.12.2
27
- description: A Sass and Compass animation library adapted from Dan Eden's Animate.css
26
+ version: 3.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: thor
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: aruba
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '0.4'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '0.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: |-
70
+ Sammy began as a lightweight Sass animation library, but rapidly turned into
71
+ a full Sass mixin library. More lightweight than Compass, and simpler than using
72
+ your own mixins. Sammy also includes several CSS libraries such as Animate.css that
73
+ have been re-written using the SCSS syntax.
28
74
  email:
29
75
  - devin@devinhalladay.com
30
- executables: []
76
+ executables:
77
+ - sammy
31
78
  extensions: []
32
79
  extra_rdoc_files: []
33
80
  files:
81
+ - .gitignore
82
+ - Gemfile
83
+ - Gemfile.lock
84
+ - LICENSE
34
85
  - README.md
86
+ - Rakefile
87
+ - app/assets/stylesheets/_sammy.scss
88
+ - app/assets/stylesheets/addons/_button.scss
89
+ - app/assets/stylesheets/addons/_clearfix.scss
90
+ - app/assets/stylesheets/addons/_font-family.scss
91
+ - app/assets/stylesheets/addons/_hide-text.scss
92
+ - app/assets/stylesheets/addons/_html5-input-types.scss
93
+ - app/assets/stylesheets/addons/_position.scss
94
+ - app/assets/stylesheets/addons/_prefixer.scss
95
+ - app/assets/stylesheets/addons/_retina-image.scss
96
+ - app/assets/stylesheets/addons/_size.scss
97
+ - app/assets/stylesheets/addons/_timing-functions.scss
98
+ - app/assets/stylesheets/addons/_triangle.scss
99
+ - app/assets/stylesheets/css3/_animation.scss
100
+ - app/assets/stylesheets/css3/_appearance.scss
101
+ - app/assets/stylesheets/css3/_backface-visibility.scss
102
+ - app/assets/stylesheets/css3/_background-image.scss
103
+ - app/assets/stylesheets/css3/_background.scss
104
+ - app/assets/stylesheets/css3/_border-image.scss
105
+ - app/assets/stylesheets/css3/_border-radius.scss
106
+ - app/assets/stylesheets/css3/_box-sizing.scss
107
+ - app/assets/stylesheets/css3/_columns.scss
108
+ - app/assets/stylesheets/css3/_flex-box.scss
109
+ - app/assets/stylesheets/css3/_font-face.scss
110
+ - app/assets/stylesheets/css3/_hidpi-media-query.scss
111
+ - app/assets/stylesheets/css3/_image-rendering.scss
112
+ - app/assets/stylesheets/css3/_inline-block.scss
113
+ - app/assets/stylesheets/css3/_keyframes.scss
114
+ - app/assets/stylesheets/css3/_linear-gradient.scss
115
+ - app/assets/stylesheets/css3/_perspective.scss
116
+ - app/assets/stylesheets/css3/_placeholder.scss
117
+ - app/assets/stylesheets/css3/_radial-gradient.scss
118
+ - app/assets/stylesheets/css3/_transform.scss
119
+ - app/assets/stylesheets/css3/_transition.scss
120
+ - app/assets/stylesheets/css3/_user-select.scss
121
+ - app/assets/stylesheets/functions/_compact.scss
122
+ - app/assets/stylesheets/functions/_flex-grid.scss
123
+ - app/assets/stylesheets/functions/_grid-width.scss
124
+ - app/assets/stylesheets/functions/_linear-gradient.scss
125
+ - app/assets/stylesheets/functions/_modular-scale.scss
126
+ - app/assets/stylesheets/functions/_px-to-em.scss
127
+ - app/assets/stylesheets/functions/_radial-gradient.scss
128
+ - app/assets/stylesheets/functions/_tint-shade.scss
129
+ - app/assets/stylesheets/functions/_transition-property-name.scss
130
+ - app/assets/stylesheets/helpers/_deprecated-webkit-gradient.scss
131
+ - app/assets/stylesheets/helpers/_gradient-positions-parser.scss
132
+ - app/assets/stylesheets/helpers/_linear-positions-parser.scss
133
+ - app/assets/stylesheets/helpers/_radial-arg-parser.scss
134
+ - app/assets/stylesheets/helpers/_radial-positions-parser.scss
135
+ - app/assets/stylesheets/helpers/_render-gradients.scss
136
+ - app/assets/stylesheets/helpers/_shape-size-stripper.scss
137
+ - bin/sammy
35
138
  - lib/sammy.rb
36
- - stylesheets/sammy/animations/attention-seekers/_bounce.scss
37
- - stylesheets/sammy/animations/attention-seekers/_flash.scss
38
- - stylesheets/sammy/animations/attention-seekers/_pulse.scss
39
- - stylesheets/sammy/animations/attention-seekers/_shake.scss
40
- - stylesheets/sammy/animations/attention-seekers/_swing.scss
41
- - stylesheets/sammy/animations/attention-seekers/_tada.scss
42
- - stylesheets/sammy/animations/attention-seekers/_wobble.scss
43
- - stylesheets/sammy/animations/bouncing-entrances/_bounceIn.scss
44
- - stylesheets/sammy/animations/bouncing-entrances/_bounceInDown.scss
45
- - stylesheets/sammy/animations/bouncing-entrances/_bounceInLeft.scss
46
- - stylesheets/sammy/animations/bouncing-entrances/_bounceInRight.scss
47
- - stylesheets/sammy/animations/bouncing-entrances/_bounceInUp.scss
48
- - stylesheets/sammy/animations/bouncing-exits/_bounceOut.scss
49
- - stylesheets/sammy/animations/bouncing-exits/_bounceOutDown.scss
50
- - stylesheets/sammy/animations/bouncing-exits/_bounceOutLeft.scss
51
- - stylesheets/sammy/animations/bouncing-exits/_bounceOutRight.scss
52
- - stylesheets/sammy/animations/bouncing-exits/_bounceOutUp.scss
53
- - stylesheets/sammy/animations/fading-entrances/_fadeIn.scss
54
- - stylesheets/sammy/animations/fading-entrances/_fadeInDown.scss
55
- - stylesheets/sammy/animations/fading-entrances/_fadeInDownBig.scss
56
- - stylesheets/sammy/animations/fading-entrances/_fadeInLeft.scss
57
- - stylesheets/sammy/animations/fading-entrances/_fadeInLeftBig.scss
58
- - stylesheets/sammy/animations/fading-entrances/_fadeInRight.scss
59
- - stylesheets/sammy/animations/fading-entrances/_fadeInRightBig.scss
60
- - stylesheets/sammy/animations/fading-entrances/_fadeInUp.scss
61
- - stylesheets/sammy/animations/fading-entrances/_fadeInUpBig.scss
62
- - stylesheets/sammy/animations/fading-exits/_fadeOut.scss
63
- - stylesheets/sammy/animations/fading-exits/_fadeOutDown.scss
64
- - stylesheets/sammy/animations/fading-exits/_fadeOutDownBig.scss
65
- - stylesheets/sammy/animations/fading-exits/_fadeOutLeft.scss
66
- - stylesheets/sammy/animations/fading-exits/_fadeOutLeftBig.scss
67
- - stylesheets/sammy/animations/fading-exits/_fadeOutRight.scss
68
- - stylesheets/sammy/animations/fading-exits/_fadeOutRightBig.scss
69
- - stylesheets/sammy/animations/fading-exits/_fadeOutUp.scss
70
- - stylesheets/sammy/animations/fading-exits/_fadeOutUpBig.scss
71
- - stylesheets/sammy/animations/flippers/_flip.scss
72
- - stylesheets/sammy/animations/flippers/_flipInX.scss
73
- - stylesheets/sammy/animations/flippers/_flipInY.scss
74
- - stylesheets/sammy/animations/flippers/_flipOutX.scss
75
- - stylesheets/sammy/animations/flippers/_flipOutY.scss
76
- - stylesheets/sammy/animations/rotating-entrances/_rotateIn.scss
77
- - stylesheets/sammy/animations/rotating-entrances/_rotateInDownLeft.scss
78
- - stylesheets/sammy/animations/rotating-entrances/_rotateInDownRight.scss
79
- - stylesheets/sammy/animations/rotating-entrances/_rotateInUpLeft.scss
80
- - stylesheets/sammy/animations/rotating-entrances/_rotateInUpRight.scss
81
- - stylesheets/sammy/animations/rotating-exits/_rotateOut.scss
82
- - stylesheets/sammy/animations/rotating-exits/_rotateOutDownLeft.scss
83
- - stylesheets/sammy/animations/rotating-exits/_rotateOutDownRight.scss
84
- - stylesheets/sammy/animations/rotating-exits/_rotateOutUpLeft.scss
85
- - stylesheets/sammy/animations/rotating-exits/_rotateOutUpRight.scss
86
- - stylesheets/sammy/animations/specials/_hinge.scss
87
- - stylesheets/sammy/animations/specials/_rollIn.scss
88
- - stylesheets/sammy/animations/specials/_rollOut.scss
89
- - stylesheets/sammy/animations/_attention-seekers.scss
90
- - stylesheets/sammy/animations/_bouncing-entrances.scss
91
- - stylesheets/sammy/animations/_bouncing-exits.scss
92
- - stylesheets/sammy/animations/_fading-entrances.scss
93
- - stylesheets/sammy/animations/_fading-exits.scss
94
- - stylesheets/sammy/animations/_flippers.scss
95
- - stylesheets/sammy/animations/_rotating-entrances.scss
96
- - stylesheets/sammy/animations/_rotating-exits.scss
97
- - stylesheets/sammy/animations/_specials.scss
98
- - stylesheets/sammy/css3/animation/_animation-delay.scss
99
- - stylesheets/sammy/css3/animation/_animation-direction.scss
100
- - stylesheets/sammy/css3/animation/_animation-duration.scss
101
- - stylesheets/sammy/css3/animation/_animation-fill-mode.scss
102
- - stylesheets/sammy/css3/animation/_animation-iteration-count.scss
103
- - stylesheets/sammy/css3/animation/_animation-name.scss
104
- - stylesheets/sammy/css3/animation/_animation-play-state.scss
105
- - stylesheets/sammy/css3/animation/_animation-timing-function.scss
106
- - stylesheets/sammy/css3/_animation.scss
107
- - stylesheets/sammy/css3/_backface-visibility.scss
108
- - stylesheets/sammy/css3/_transform.scss
109
- - stylesheets/sammy/utilities/_mixins.scss
110
- - stylesheets/sammy/_animations.scss
111
- - stylesheets/sammy/_css3.scss
112
- - stylesheets/sammy/_shared.scss
113
- - stylesheets/sammy/_utilities.scss
114
- - stylesheets/_sammy.sass
115
- - templates/sammy/manifest.rb
139
+ - lib/sammy/date.rb
140
+ - lib/sammy/engine.rb
141
+ - lib/sammy/generator.rb
142
+ - lib/sammy/version.rb
143
+ - lib/tasks/install.rake
144
+ - sammy.gemspec
116
145
  homepage: http://devinhalladay.com/sammy/
117
146
  licenses: []
118
147
  metadata: {}
@@ -135,5 +164,5 @@ rubyforge_project:
135
164
  rubygems_version: 2.0.3
136
165
  signing_key:
137
166
  specification_version: 4
138
- summary: A Sass and Compass animation library adapted from Dan Eden's Animate.css
167
+ summary: Sammy is a lightweight, sexy Sass mixin library using the SCSS syntax."
139
168
  test_files: []