compass-edge 0.9.5.0 → 0.10.0.pre

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 (227) hide show
  1. data/CHANGELOG.markdown +0 -153
  2. data/README.markdown +2 -12
  3. data/REVISION +1 -1
  4. data/Rakefile +2 -37
  5. data/VERSION.yml +1 -1
  6. data/examples/blueprint_default/index.html.haml +3 -3
  7. data/examples/blueprint_default/parts/forms.html.haml +0 -2
  8. data/examples/blueprint_default/src/screen.sass +1 -1
  9. data/examples/blueprint_plugins/index.html.haml +6 -6
  10. data/examples/blueprint_plugins/src/buttons.sass +2 -2
  11. data/examples/blueprint_plugins/src/link_icons.sass +1 -1
  12. data/examples/blueprint_plugins/src/rtl_screen.sass +3 -3
  13. data/examples/blueprint_plugins/src/screen.sass +2 -2
  14. data/examples/blueprint_semantic/src/liquid.sass +4 -4
  15. data/examples/blueprint_semantic/src/screen.sass +3 -3
  16. data/examples/compass/src/utilities.sass +2 -2
  17. data/examples/downloader.rb +2 -2
  18. data/lib/compass/app_integration.rb +0 -21
  19. data/lib/compass/app_integration/rails.rb +0 -18
  20. data/lib/compass/app_integration/rails/configuration_defaults.rb +0 -16
  21. data/lib/compass/app_integration/rails/installer.rb +6 -6
  22. data/lib/compass/app_integration/stand_alone.rb +1 -20
  23. data/lib/compass/app_integration/stand_alone/configuration_defaults.rb +1 -5
  24. data/lib/compass/app_integration/stand_alone/installer.rb +17 -29
  25. data/lib/compass/commands.rb +2 -2
  26. data/lib/compass/commands/create_project.rb +1 -10
  27. data/lib/compass/commands/generate_grid_background.rb +1 -1
  28. data/lib/compass/commands/help.rb +7 -34
  29. data/lib/compass/commands/installer_command.rb +11 -15
  30. data/lib/compass/commands/project_base.rb +2 -2
  31. data/lib/compass/commands/update_project.rb +1 -51
  32. data/lib/compass/commands/validate_project.rb +3 -59
  33. data/lib/compass/commands/watch_project.rb +2 -4
  34. data/lib/compass/commands/write_configuration.rb +3 -84
  35. data/lib/compass/compiler.rb +4 -13
  36. data/lib/compass/configuration.rb +18 -23
  37. data/lib/compass/configuration/adapters.rb +1 -1
  38. data/lib/compass/configuration/data.rb +2 -5
  39. data/lib/compass/configuration/defaults.rb +1 -32
  40. data/lib/compass/configuration/helpers.rb +10 -47
  41. data/lib/compass/configuration/inheritance.rb +1 -1
  42. data/lib/compass/configuration/serialization.rb +2 -2
  43. data/lib/compass/errors.rb +1 -4
  44. data/lib/compass/exec.rb +0 -1
  45. data/lib/compass/exec/project_options_parser.rb +0 -4
  46. data/lib/compass/frameworks.rb +1 -40
  47. data/lib/compass/frameworks/blueprint/stylesheets/_blueprint.sass +1 -29
  48. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_ie.sass +2 -2
  49. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_print.sass +4 -1
  50. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_reset.sass +2 -57
  51. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_screen.sass +29 -2
  52. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_buttons.sass +84 -2
  53. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_colors.sass +33 -2
  54. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_debug.sass +9 -2
  55. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass +82 -2
  56. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_form.sass +55 -2
  57. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass +178 -2
  58. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_interaction.sass +58 -2
  59. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_link_icons.sass +44 -2
  60. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_liquid.sass +140 -2
  61. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_reset.sass +56 -2
  62. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass +122 -2
  63. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_scaffolding.sass +47 -2
  64. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass +160 -2
  65. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass +37 -2
  66. data/lib/compass/frameworks/blueprint/templates/buttons/buttons.sass +2 -2
  67. data/lib/compass/frameworks/blueprint/templates/buttons/manifest.rb +0 -12
  68. data/lib/compass/frameworks/blueprint/templates/link_icons/link_icons.sass +1 -1
  69. data/lib/compass/frameworks/blueprint/templates/link_icons/manifest.rb +0 -13
  70. data/lib/compass/frameworks/blueprint/templates/project/manifest.rb +0 -24
  71. data/lib/compass/frameworks/blueprint/templates/project/screen.sass +7 -1
  72. data/lib/compass/frameworks/blueprint/templates/project/welcome.html.haml +1 -9
  73. data/lib/compass/frameworks/compass/stylesheets/_compass.sass +1 -2
  74. data/lib/compass/frameworks/compass/stylesheets/compass/_utilities.sass +1 -0
  75. data/lib/compass/frameworks/compass/stylesheets/compass/utilities/_css3.sass +6 -0
  76. data/lib/compass/frameworks/compass/stylesheets/compass/{css3 → utilities/css3}/_border_radius.sass +0 -0
  77. data/lib/compass/frameworks/compass/stylesheets/compass/utilities/css3/_box_shadow.sass +12 -0
  78. data/lib/compass/frameworks/compass/stylesheets/compass/{css3 → utilities/css3}/_box_sizing.sass +0 -0
  79. data/lib/compass/frameworks/compass/stylesheets/compass/{css3 → utilities/css3}/_columns.sass +0 -0
  80. data/lib/compass/frameworks/compass/stylesheets/compass/{css3 → utilities/css3}/_inline_block.sass +0 -0
  81. data/lib/compass/frameworks/compass/stylesheets/compass/{css3 → utilities/css3}/_opacity.sass +0 -0
  82. data/lib/compass/frameworks/compass/stylesheets/compass/utilities/general/_reset.sass +2 -2
  83. data/lib/compass/frameworks/compass/templates/ellipsis/manifest.rb +1 -26
  84. data/lib/compass/frameworks/compass/templates/extension/manifest.rb +2 -16
  85. data/lib/compass/frameworks/compass/templates/project/manifest.rb +0 -1
  86. data/lib/compass/grid_builder.rb +1 -1
  87. data/lib/compass/installers.rb +1 -1
  88. data/lib/compass/installers/base.rb +52 -13
  89. data/lib/compass/installers/manifest.rb +1 -33
  90. data/lib/compass/logger.rb +2 -28
  91. data/lib/compass/sass_extensions/functions.rb +1 -3
  92. data/lib/compass/sass_extensions/functions/enumerate.rb +2 -2
  93. data/lib/compass/sass_extensions/functions/inline_image.rb +1 -22
  94. data/lib/compass/sass_extensions/functions/urls.rb +0 -20
  95. data/lib/compass/sass_extensions/monkey_patches.rb +2 -2
  96. data/lib/compass/validator.rb +3 -2
  97. data/lib/vendor/fssm.rb +6 -19
  98. data/lib/vendor/fssm/backends/fsevents.rb +60 -19
  99. data/lib/vendor/fssm/backends/polling.rb +18 -20
  100. data/lib/vendor/fssm/ext.rb +0 -30
  101. data/lib/vendor/fssm/monitor.rb +6 -10
  102. data/lib/vendor/fssm/path.rb +21 -24
  103. data/lib/vendor/fssm/state.rb +29 -37
  104. data/lib/vendor/fssm/support.rb +7 -3
  105. data/test/command_line_helper.rb +4 -12
  106. data/test/command_line_test.rb +2 -2
  107. data/test/compass_test.rb +4 -14
  108. data/test/configuration_test.rb +5 -5
  109. data/test/fixtures/stylesheets/blueprint/css/typography.css +3 -5
  110. data/test/fixtures/stylesheets/blueprint/sass/screen.sass +1 -1
  111. data/test/fixtures/stylesheets/blueprint/sass/typography.sass +2 -2
  112. data/test/fixtures/stylesheets/compass/css/print.css +8 -2
  113. data/test/fixtures/stylesheets/compass/css/reset.css +1 -1
  114. data/test/fixtures/stylesheets/image_urls/css/screen.css +0 -2
  115. data/test/io_helper.rb +1 -18
  116. data/test/rails_integration_test.rb +41 -3
  117. data/test/sass_extensions_test.rb +2 -2
  118. data/test/test_helper.rb +0 -1
  119. metadata +9 -124
  120. data/examples/compass/bootstrap.rb +0 -3
  121. data/examples/compass/extensions/yui/stylesheets/_yui.sass +0 -7
  122. data/examples/compass/extensions/yui/stylesheets/yui/modules/_base.sass +0 -70
  123. data/examples/compass/extensions/yui/stylesheets/yui/modules/_fonts.sass +0 -45
  124. data/examples/compass/extensions/yui/stylesheets/yui/modules/_grids.sass +0 -385
  125. data/examples/compass/extensions/yui/stylesheets/yui/modules/_reset.sass +0 -61
  126. data/examples/compass/extensions/yui/templates/project/manifest.rb +0 -1
  127. data/examples/compass/extensions/yui/templates/project/screen.sass +0 -4
  128. data/examples/css3/config.rb +0 -6
  129. data/examples/css3/extensions/fancy-fonts/templates/project/Vtks Revolt.ttf +0 -0
  130. data/examples/css3/extensions/fancy-fonts/templates/project/angelina.ttf +0 -0
  131. data/examples/css3/extensions/fancy-fonts/templates/project/fancy-fonts.sass +0 -7
  132. data/examples/css3/extensions/fancy-fonts/templates/project/manifest.rb +0 -5
  133. data/examples/css3/images/fresh-peas.jpg +0 -0
  134. data/examples/css3/index.html.haml +0 -55
  135. data/examples/css3/src/_base.sass +0 -14
  136. data/examples/css3/src/fancy-fonts.sass +0 -7
  137. data/examples/css3/src/gradient.sass +0 -10
  138. data/examples/css3/src/main.sass +0 -80
  139. data/examples/css3/stylesheets/fonts/Vtks Revolt.ttf +0 -0
  140. data/examples/css3/stylesheets/fonts/angelina.ttf +0 -0
  141. data/examples/susy/bootstrap.rb +0 -3
  142. data/examples/susy/config.rb +0 -9
  143. data/examples/susy/extensions/susy/LICENSE.txt +0 -28
  144. data/examples/susy/extensions/susy/README.mkdn +0 -235
  145. data/examples/susy/extensions/susy/compass-susy-plugin.gemspec +0 -35
  146. data/examples/susy/extensions/susy/docs/tutorial/build.sh +0 -141
  147. data/examples/susy/extensions/susy/docs/tutorial/code/01_target/src/_defaults.sass +0 -100
  148. data/examples/susy/extensions/susy/docs/tutorial/code/01_target/src/screen.sass +0 -98
  149. data/examples/susy/extensions/susy/docs/tutorial/code/02_container/src/_defaults.sass +0 -147
  150. data/examples/susy/extensions/susy/docs/tutorial/code/02_container/src/screen.sass +0 -19
  151. data/examples/susy/extensions/susy/docs/tutorial/code/03_structure/src/_defaults.sass +0 -147
  152. data/examples/susy/extensions/susy/docs/tutorial/code/03_structure/src/screen.sass +0 -48
  153. data/examples/susy/extensions/susy/docs/tutorial/code/_common/config.rb +0 -14
  154. data/examples/susy/extensions/susy/docs/tutorial/code/_common/images/grid.png +0 -0
  155. data/examples/susy/extensions/susy/docs/tutorial/code/_common/images/susy_logo.png +0 -0
  156. data/examples/susy/extensions/susy/docs/tutorial/code/_common/src/_base.sass +0 -63
  157. data/examples/susy/extensions/susy/docs/tutorial/code/_tools/Markdown.pl +0 -1450
  158. data/examples/susy/extensions/susy/docs/tutorial/code/site/src/_defaults.sass +0 -100
  159. data/examples/susy/extensions/susy/docs/tutorial/code/site/src/screen.sass +0 -91
  160. data/examples/susy/extensions/susy/docs/tutorial/figures/susy_element.png +0 -0
  161. data/examples/susy/extensions/susy/docs/tutorial/figures/susy_grid.png +0 -0
  162. data/examples/susy/extensions/susy/docs/tutorial/index.mkdn +0 -301
  163. data/examples/susy/extensions/susy/lib/susy.rb +0 -2
  164. data/examples/susy/extensions/susy/lib/susy/compass_plugin.rb +0 -5
  165. data/examples/susy/extensions/susy/lib/susy/sass_extensions.rb +0 -79
  166. data/examples/susy/extensions/susy/sass/susy/_grid.sass +0 -128
  167. data/examples/susy/extensions/susy/sass/susy/_reset.sass +0 -7
  168. data/examples/susy/extensions/susy/sass/susy/_susy.sass +0 -23
  169. data/examples/susy/extensions/susy/sass/susy/_text.sass +0 -15
  170. data/examples/susy/extensions/susy/sass/susy/_utils.sass +0 -81
  171. data/examples/susy/extensions/susy/templates/project/_base.sass +0 -62
  172. data/examples/susy/extensions/susy/templates/project/_defaults.sass +0 -147
  173. data/examples/susy/extensions/susy/templates/project/ie.sass +0 -9
  174. data/examples/susy/extensions/susy/templates/project/manifest.rb +0 -5
  175. data/examples/susy/extensions/susy/templates/project/print.sass +0 -7
  176. data/examples/susy/extensions/susy/templates/project/screen.sass +0 -44
  177. data/examples/susy/src/_base.sass +0 -62
  178. data/examples/susy/src/_defaults.sass +0 -148
  179. data/examples/susy/src/screen.sass +0 -114
  180. data/features/command_line.feature +0 -226
  181. data/features/extensions.feature +0 -20
  182. data/features/step_definitions/command_line_steps.rb +0 -223
  183. data/features/step_definitions/extension_steps.rb +0 -13
  184. data/lib/compass/commands/interactive.rb +0 -61
  185. data/lib/compass/commands/project_stats.rb +0 -162
  186. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_buttons.sass +0 -84
  187. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_colors.sass +0 -33
  188. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_debug.sass +0 -9
  189. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_fancy_type.sass +0 -82
  190. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_form.sass +0 -56
  191. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_grid.sass +0 -179
  192. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_interaction.sass +0 -58
  193. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_link_icons.sass +0 -44
  194. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_liquid.sass +0 -141
  195. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_rtl.sass +0 -123
  196. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_scaffolding.sass +0 -49
  197. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_typography.sass +0 -162
  198. data/lib/compass/frameworks/blueprint/stylesheets/blueprint/_utilities.sass +0 -37
  199. data/lib/compass/frameworks/compass/stylesheets/compass/_css3.sass +0 -14
  200. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_background_clip.sass +0 -16
  201. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_background_origin.sass +0 -18
  202. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_background_size.sass +0 -14
  203. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_box_shadow.sass +0 -20
  204. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_font_face.sass +0 -31
  205. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_gradient.sass +0 -40
  206. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_text_shadow.sass +0 -15
  207. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_transform.sass +0 -60
  208. data/lib/compass/frameworks/compass/stylesheets/compass/css3/_transition.sass +0 -57
  209. data/lib/compass/frameworks/compass/templates/project/USAGE.markdown +0 -32
  210. data/lib/compass/installers/bare_installer.rb +0 -58
  211. data/lib/compass/installers/manifest_installer.rb +0 -59
  212. data/lib/compass/sass_extensions/functions/color_stop.rb +0 -10
  213. data/lib/compass/sass_extensions/functions/font_files.rb +0 -11
  214. data/lib/compass/sass_extensions/monkey_patches/traversal.rb +0 -23
  215. data/lib/compass/stats.rb +0 -92
  216. data/lib/vendor/fssm/cache.rb +0 -193
  217. data/lib/vendor/fssm/fsevents.rb +0 -129
  218. data/lib/vendor/fssm/tree.rb +0 -176
  219. data/test/fixtures/stylesheets/relative/assets/images/testing.png +0 -0
  220. data/test/fixtures/stylesheets/relative/config.rb +0 -9
  221. data/test/fixtures/stylesheets/relative/css/ie.css +0 -1
  222. data/test/fixtures/stylesheets/relative/css/print.css +0 -1
  223. data/test/fixtures/stylesheets/relative/css/screen.css +0 -1
  224. data/test/fixtures/stylesheets/relative/sass/ie.sass +0 -6
  225. data/test/fixtures/stylesheets/relative/sass/print.sass +0 -6
  226. data/test/fixtures/stylesheets/relative/sass/screen.sass +0 -3
  227. data/test/rails_helper.rb +0 -40
@@ -1,159 +1,6 @@
1
1
  COMPASS CHANGELOG
2
2
  =================
3
3
 
4
- 0.10.0 (UNRELEASED)
5
- ------------
6
-
7
- Command-Line:
8
-
9
- * The compass command-line tool has been re-written to allow be easier to
10
- use and be more flexible. The old command line is still supported at
11
- this time. "compass help" will get you started on using the new
12
- command line syntax.
13
- * Allow specification of a height for the grid image
14
- * For the truly hardcore compass users, you may now create a
15
- compass project using "compass create my_project --bare"
16
- and you'll have a completely bare project created for you with no
17
- sass files provided for you.
18
- * Get stats on your compass project with "compass stats". You'll
19
- need to install the "css_parser" ruby gem to get stats on your
20
- css files.
21
-
22
- Configuration:
23
-
24
- * The entire configuration infrastructure has been re-written to make it
25
- easier to support the various sources of configuration data (project type,
26
- config file, command line, and hard coded defaults)
27
- * Whether to generate relative links to assets is now controlled by a
28
- separate boolean configuration flag called `relative_assets` in the
29
- configuration file and `--relative-assets` on the command line.
30
- Setting `http_images_path` to `:relative` is deprecated.
31
- * You may now configure the http locations for your project by simply setting
32
- `http_path` for the top level path of the project. You
33
- may also set `http_images_dir`, `http_stylesheets_dir`, and
34
- `http_javascripts_dir` relative to the `http_path` instead of
35
- setting the absolute `http_XXX_path` counterparts.
36
-
37
- Compass Core:
38
-
39
- * A new helper function `stylesheet_url(path)` can now be used to refer
40
- to assets that are relative to the css directory.
41
- * Compass sprite mixins are now more flexible and feature rich.
42
- * Fixed the append_selector function to allow comma-delimited selectors
43
- for both arguments instead of just the first
44
- * There is no longer any outline on unstyled links in the :active and :focused states.
45
- * IE6 bug fixes for sticky-footer
46
- * New CSS3 Compatibility Mixins. You can import them all with `@import compass/css3`
47
- * `+opacity(amount)` where amount should be between 0 and 1, where 0 is transparent and 1 is opaque.
48
- * `+opaque` and `+transparent` mixins for convenience. Built on top of the opacity mixin.
49
- * `+border-radius(amount)` as well as the following convenience mixins:
50
- * `+border-top-left-radius(amount)`
51
- * `+border-top-right-radius(amount)`
52
- * `+border-top-right-radius(amount)`,
53
- * `+border-bottom-left-radius(amount)`
54
- * `+border-bottom-right-radius(amount)`
55
- * `+border-top-radius(amount)`
56
- * `+border-right-radius(amount)`
57
- * `+border-left-radius(amount)`
58
- * `+border-bottom-radius(amount)`
59
- * `+box-shadow(!horiz_offset, !vert_offset, !blur, !color)`
60
- * `+box-sizing(!sizing_mode)`
61
- * Column support via the following mixins:
62
- * `+column-count`
63
- * `+column-gap`
64
- * `+column-width`
65
- * `+column-rule-width`
66
- * `+column-rule-style`
67
- * `+column-rule-color`
68
- * `+column-rule`
69
- * The import for `+inline-block` has moved from compass/utilities/general/inline_block
70
- to compass/css3/inline_block
71
- * The import for `+opacity` has moved from compass/utilities/general/opacity
72
- to compass/css3/opacity
73
- * Note: If you are using the `+opacity` or `+inline-block` mixins,
74
- you may need to update your imports.
75
-
76
- Blueprint:
77
-
78
- * Make the primary blueprint mixins easier to use by allowing them to be nested when passing true as the first argument.
79
- The old approach of passing a selector as the first argument is now deprecated in favor of a simple flag to indicate nesting or not.
80
-
81
- YUI:
82
-
83
- * YUI was upgraded to 2.7.0
84
- * Yahoo has deprecated the YUI CSS framework, as such YUI has been extracted to a plugin.
85
- If you use it, please install it with: `sudo gem install compass-yui`
86
-
87
- Extensions:
88
-
89
- * Extensions can now be installed locally by unpacking them into a project's
90
- "extensions" directory. Rails projects use "vendor/plugins/compass/extenstions".
91
- * Extensions can deliver html to projects if they like. The html can be in
92
- haml and will be transformed to html and can contain inline, compass-enabled
93
- sass.
94
- * All files can be processed using ERB before being copied into the user's
95
- project.
96
- * Compass extensions can now add support for other application frameworks.
97
- These extensions can help compass understand the project structure of that
98
- framework as well as provide runtime integration for ruby-based apps.
99
- Contact me if you plan to do this -- the first couple times may be a little
100
- rough.
101
- * Compass extensions can now add new command line commands. Contact me if you
102
- plan to do this -- the first couple times may be a little rough.
103
- * Extensions can now provide help documentation just after a project is
104
- created and on demand when the user uses the command line help system.
105
- This can be done via the manifest file or by adding a USAGE.markdown file
106
- at the top level of the framework template.
107
-
108
- Miscellaneous:
109
-
110
- * The compass configuration object is no longer a singleton, this makes it
111
- possible for other ruby software to manage multiple compass projects at a
112
- time.
113
- * Compass no longer requires rubygems in order to work, this is a ruby
114
- best-practice.
115
- * All sass provided by compass now uses css-style property syntax.
116
- * The command line tool is now tested using the cucumber testing framework.
117
-
118
- Many thanks to the following Contributors:
119
-
120
- * Brandon Mathis - CSS3 (+opacity, +border-radius) and sprites
121
- * Eric Meyer - CSS3 (+box-shadow, +columns, +box-sizing)
122
- * Jacques Crocker - Merb Compatibility fixes
123
- * Gabriel Mansour - Fixes to +unstyled-link
124
- * John Debs - IE6 Fixes for +sticky-footer
125
- * Brian Johnson - Upgraded to YUI 2.7.0
126
- * Beau Smith - fixing my dyslexia.
127
-
128
- 0.8.17 (September 24, 2009)
129
- ---------------------------
130
-
131
- * The enumerate function now accepts an optional fourth parameter that specifies the separator to be used.
132
- Enables fixing a bug in the Compass 960 Plugin.
133
-
134
- 0.8.16 (September 12, 2009)
135
- ---------------------------
136
-
137
- * Fixed a bug in compass that assumed compass extensions would provide stylesheets.
138
-
139
- 0.8.15 (September 5, 2009)
140
- --------------------------
141
-
142
- * Upgrade the FSSM library to 0.0.6 to fix bugs on windows.
143
-
144
-
145
- 0.8.14 (September 2, 2009)
146
- --------------------------
147
-
148
- * Upgrade the FSSM library to 0.0.4 to fix bugs and enable FS Events on Mac OS.
149
-
150
- 0.8.13 (August 30, 2009)
151
- ------------------------
152
-
153
- * [Blueprint] Mixins have been added for these as +prepend-top and +append-bottom and grid classes will be generated by +blueprint-grid.
154
- * [Command Line] The watch mode has been re-implemented to use the FSSM library by Travis Tilley. OSX users will
155
- now have support for filesystem monitoring. Fixes an infinite looping bug that occured with syntax users.
156
-
157
4
  0.8.12 (August 22, 2009)
158
5
  ------------------------
159
6
 
@@ -3,9 +3,8 @@ A [Sass][sass]-based CSS Meta-Framework that allows you to mix and match any of
3
3
 
4
4
  - [Compass Core][compass_core_website] - [Wiki Documentation][compass_core_wiki]
5
5
  - [Blueprint][blueprint_website] - [Wiki Documentation][bleuprint_wiki]
6
- - [960][ninesixty_website] - [Wiki Documentation][ninesixty_wiki]
7
- - [Susy][susy_website] - [Wiki Documentation][susy_wiki]
8
6
  - [YUI][yui_website] - [Wiki Documentation][yui_wiki]
7
+ - [960][ninesixty_website] - [Wiki Documentation][ninesixty_wiki]
9
8
  - New frameworks and extensions are [tracked on the wiki][plugins_wiki] as they are created.
10
9
  - Other frameworks can be added relatively easily. Create your own!
11
10
 
@@ -15,13 +14,6 @@ A [Sass][sass]-based CSS Meta-Framework that allows you to mix and match any of
15
14
  2. Simple integration with [Ruby-on-Rails][ruby_on_rails_wiki], [Merb][merb_wiki], [StaticMatic][static_matic_wiki], and even [non-ruby application servers][command_line_wiki].
16
15
  3. Loads of Sass mixins to make building your website a snap.
17
16
 
18
- ## Quick Start
19
-
20
- $ (sudo) gem install compass
21
- $ compass create my_compass_project --using blueprint
22
- $ cd my_compass_project
23
- $ compass watch
24
-
25
17
  ## More Information
26
18
  Please see the [wiki][wiki]
27
19
 
@@ -49,8 +41,6 @@ Released under a [slightly modified MIT License][license].
49
41
  [ruby_on_rails_wiki]: http://wiki.github.com/chriseppstein/compass/ruby-on-rails-integration
50
42
  [merb_wiki]: http://wiki.github.com/chriseppstein/compass/merb-integration
51
43
  [static_matic_wiki]: http://wiki.github.com/chriseppstein/compass/staticmatic-integration
52
- [chris_eppstein]: http://chriseppstein.github.com
44
+ [chris_eppstein]: http://acts-as-architect.blogspot.com
53
45
  [caring.com]: http://www.caring.com/ "Senior Care Resources"
54
46
  [license]: http://github.com/chriseppstein/compass/tree/master/LICENSE.markdown
55
- [susy_website]: http://www.oddbird.net/susy/
56
- [susy_wiki]: http://github.com/chriseppstein/compass/wikis/susy-documentation
data/REVISION CHANGED
@@ -1 +1 @@
1
- 2465baba525421ac9cac1774d940f9e27971710d
1
+ ef49c8b2a624e4120948c8165b3b5fb6c9fa07c8
data/Rakefile CHANGED
@@ -2,8 +2,7 @@ if ENV['RUN_CODE_RUN']
2
2
  # We need to checkout edge haml for the run>code>run test environment.
3
3
  if File.directory?("haml")
4
4
  Dir.chdir("haml") do
5
- sh "git", "fetch"
6
- sh "git", "reset", "--hard", "origin/stable"
5
+ sh "git", "pull"
7
6
  end
8
7
  else
9
8
  sh "git", "clone", "git://github.com/nex3/haml.git"
@@ -15,7 +14,6 @@ require 'rubygems'
15
14
  require 'rake'
16
15
  $:.unshift File.join(File.dirname(__FILE__), 'lib')
17
16
  require 'compass'
18
- require 'rcov/rcovtask'
19
17
 
20
18
  # ----- Default: Testing ------
21
19
 
@@ -26,7 +24,6 @@ require 'fileutils'
26
24
 
27
25
  Rake::TestTask.new :run_tests do |t|
28
26
  t.libs << 'lib'
29
- t.libs << 'test'
30
27
  t.libs << 'haml/lib' if ENV["RUN_CODE_RUN"]
31
28
  test_files = FileList['test/**/*_test.rb']
32
29
  test_files.exclude('test/rails/*', 'test/haml/*')
@@ -42,7 +39,7 @@ begin
42
39
  require 'jeweler'
43
40
  Jeweler::Tasks.new do |gemspec|
44
41
  gemspec.rubyforge_project = "compass"
45
- gemspec.name = "compass-edge"
42
+ gemspec.name = "compass"
46
43
  gemspec.summary = "A Real Stylesheet Framework"
47
44
  gemspec.email = "chris@eppsteins.net"
48
45
  gemspec.homepage = "http://compass-style.org"
@@ -68,7 +65,6 @@ begin
68
65
  gemspec.files -= Dir.glob("test/fixtures/stylesheets/*/saved/**/*.*")
69
66
  gemspec.test_files = Dir.glob("test/**/*.*")
70
67
  gemspec.test_files -= Dir.glob("test/fixtures/stylesheets/*/saved/**/*.*")
71
- gemspec.test_files += Dir.glob("features/**/*.*")
72
68
  end
73
69
  rescue LoadError
74
70
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
@@ -133,34 +129,3 @@ namespace :git do
133
129
  sh "git", "clean", "-fdx"
134
130
  end
135
131
  end
136
-
137
- require 'cucumber/rake/task'
138
-
139
- namespace :rcov do
140
- Cucumber::Rake::Task.new(:cucumber) do |t|
141
- t.rcov = true
142
- t.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/,features\/ --aggregate coverage.data}
143
- t.rcov_opts << %[-o "coverage"]
144
- end
145
-
146
- Rcov::RcovTask.new(:units) do |rcov|
147
- rcov.libs << 'lib'
148
- rcov.libs << 'haml/lib' if ENV["RUN_CODE_RUN"]
149
- test_files = FileList['test/**/*_test.rb']
150
- test_files.exclude('test/rails/*', 'test/haml/*')
151
- rcov.pattern = test_files
152
- rcov.output_dir = 'coverage'
153
- rcov.verbose = true
154
- rcov.rcov_opts = %w{--exclude osx\/objc,gems\/,spec\/,features\/ --aggregate coverage.data}
155
- rcov.rcov_opts << %[-o "coverage" --sort coverage]
156
- end
157
-
158
-
159
- desc "Run both specs and features to generate aggregated coverage"
160
- task :all do |t|
161
- rm "coverage.data" if File.exist?("coverage.data")
162
- Rake::Task["rcov:units"].invoke
163
- Rake::Task["rcov:cucumber"].invoke
164
- end
165
- end
166
-
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 5
2
+ :patch: 0
3
3
  :major: 0
4
4
  :minor: 9
@@ -32,7 +32,7 @@
32
32
  %a{ :href => "parts/grid.html" }
33
33
  Grid
34
34
  %td
35
- %a{ :href => "../../frameworks/blueprint/stylesheets/blueprint/_grid.sass" }
35
+ %a{ :href => "../../frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass" }
36
36
  grid.sass
37
37
  %td
38
38
  Tests classes provided by the grid module.
@@ -41,7 +41,7 @@
41
41
  %a{ :href => "parts/elements.html" }
42
42
  Typography
43
43
  %td
44
- %a{ :href => "../../frameworks/blueprint/stylesheets/blueprint/_typography.sass" }
44
+ %a{ :href => "../../frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass" }
45
45
  typography.sass
46
46
  %td
47
47
  Tests HTML elements which gets set in the typography module.
@@ -50,7 +50,7 @@
50
50
  %a{ :href => "parts/forms.html" }
51
51
  Forms
52
52
  %td
53
- %a{ :href => "../../frameworks/blueprint/stylesheets/blueprint/_form.sass" }
53
+ %a{ :href => "../../frameworks/blueprint/stylesheets/blueprint/modules/_form.sass" }
54
54
  form.sass
55
55
  %td
56
56
  Tests classes and default look provided by the form module.
@@ -184,8 +184,6 @@
184
184
  %input#q.text{ :type => "text", :name => "q", :value => "Field with class .text" }
185
185
  .span-2.last
186
186
  %input.button{ :type => "submit", :value => "submit" }
187
- / WTF This doesn't render correctly without some space.
188
- &nbsp;
189
187
  %hr
190
188
  %p
191
189
  %a{ :href => "http://validator.w3.org/check?uri=referer" }
@@ -1,5 +1,5 @@
1
1
  @import blueprint.sass
2
- @import blueprint/scaffolding.sass
2
+ @import blueprint/modules/scaffolding.sass
3
3
  @import compass/reset.sass
4
4
 
5
5
  +blueprint
@@ -31,13 +31,13 @@
31
31
  %a{ :href => "plugins/fancy_type.html" }
32
32
  Fancy Type
33
33
  %td
34
- %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/_grid.sass" }
34
+ %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/modules/_grid.sass" }
35
35
  grid.sass
36
36
  ,
37
- %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/_typography.sass" }
37
+ %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass" }
38
38
  typography.sass
39
39
  ,
40
- %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/_fancy_type.sass" }
40
+ %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/modules/_fancy_type.sass" }
41
41
  fancy_type.sass
42
42
  %td
43
43
  A simple sample page, with common elements and fancy type.
@@ -46,7 +46,7 @@
46
46
  %a{ :href => "plugins/buttons.html" }
47
47
  Buttons
48
48
  %td
49
- %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/_buttons.sass" }
49
+ %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/modules/_buttons.sass" }
50
50
  buttons.sass
51
51
  %td
52
52
  A simple page, showing links and buttons styled using the button plugin.
@@ -55,7 +55,7 @@
55
55
  %a{ :href => "plugins/link_icons.html" }
56
56
  Link Icons
57
57
  %td
58
- %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/_link_icons.sass" }
58
+ %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/modules/_link_icons.sass" }
59
59
  link_icons.sass
60
60
  %td
61
61
  A simple page, showing links icons.
@@ -64,7 +64,7 @@
64
64
  %a{ :href => "plugins/rtl.html" }
65
65
  RTL
66
66
  %td
67
- %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/_rtl.sass" }
67
+ %a{ :href => "http://github.com/chriseppstein/compass/blob/master/frameworks/blueprint/stylesheets/blueprint/modules/_rtl.sass" }
68
68
  rtl.sass
69
69
  %td
70
70
  A simple page, showing a right-to-left grid layout.
@@ -1,5 +1,5 @@
1
1
  @import compass/utilities/general/float.sass
2
- @import blueprint/buttons.sass
2
+ @import blueprint/modules/buttons.sass
3
3
 
4
4
  //
5
5
  Use the following HTML code to place the buttons on your site:
@@ -23,7 +23,7 @@ a.button
23
23
  +anchor-button("left")
24
24
  // All the button color mixins take 4 optional arguments:
25
25
  // font color, background color, border color, border highlight color
26
- // the first three default to constants set in blueprint/buttons.sass
26
+ // the first three default to constants set in blueprint/modules/buttons.sass
27
27
  // the last one defaults to a shade lighter than the border color.
28
28
  +button-colors
29
29
  +button-hover-colors
@@ -1,4 +1,4 @@
1
- @import blueprint/link_icons.sass
1
+ @import blueprint/modules/link_icons.sass
2
2
 
3
3
  // This turns link icons on for all links. You can change the scoping selector from
4
4
  // body to something more specific if you prefer.
@@ -1,7 +1,7 @@
1
1
  @import blueprint.sass
2
- @import blueprint/fancy_type.sass
3
- @import blueprint/scaffolding.sass
4
- @import blueprint/rtl.sass
2
+ @import blueprint/modules/fancy_type.sass
3
+ @import blueprint/modules/scaffolding.sass
4
+ @import blueprint/modules/rtl.sass
5
5
  @import compass/reset.sass
6
6
 
7
7
 
@@ -1,6 +1,6 @@
1
1
  @import blueprint.sass
2
- @import blueprint/fancy_type.sass
3
- @import blueprint/scaffolding.sass
2
+ @import blueprint/modules/fancy_type.sass
3
+ @import blueprint/modules/scaffolding.sass
4
4
  @import compass/reset.sass
5
5
 
6
6
 
@@ -1,7 +1,7 @@
1
1
  @import blueprint.sass
2
- @import blueprint/fancy_type.sass
3
- @import blueprint/scaffolding.sass
4
- @import blueprint/liquid.sass
2
+ @import blueprint/modules/fancy_type.sass
3
+ @import blueprint/modules/scaffolding.sass
4
+ @import blueprint/modules/liquid.sass
5
5
  @import compass/reset.sass
6
6
 
7
7
  .container
@@ -66,4 +66,4 @@ body#sample
66
66
  +reset-font
67
67
  +alt
68
68
  #parting-thought
69
- +alt
69
+ +alt
@@ -1,6 +1,6 @@
1
1
  @import blueprint.sass
2
- @import blueprint/fancy_type.sass
3
- @import blueprint/scaffolding.sass
2
+ @import blueprint/modules/fancy_type.sass
3
+ @import blueprint/modules/scaffolding.sass
4
4
  @import compass/reset.sass
5
5
 
6
6
  body.blueprint
@@ -67,4 +67,4 @@ body#sample
67
67
  +reset-font
68
68
  +alt
69
69
  #parting-thought
70
- +alt
70
+ +alt
@@ -1,8 +1,8 @@
1
1
  @import compass/reset.sass
2
2
  @import compass/utilities.sass
3
3
  @import yui/modules/base.sass
4
- @import blueprint/grid.sass
5
- @import blueprint/scaffolding.sass
4
+ @import blueprint/modules/grid.sass
5
+ @import blueprint/modules/scaffolding.sass
6
6
  @import compass/utilities/text/ellipsis.sass
7
7
 
8
8
  html