spree 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of spree might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.9.1
2
+
3
+ * # - 813 Fixed compass gem dependency issue caused by Github changes
4
+
1
5
  == 0.9.0
2
6
 
3
7
  * # - 137 Products without variants can't have a weight.
@@ -5,7 +5,7 @@
5
5
  # ENV['RAILS_ENV'] ||= 'production'
6
6
 
7
7
  # Specifies gem version of Rails to use when vendor/rails is not present
8
- SPREE_GEM_VERSION = '0.9.0' unless defined? SPREE_GEM_VERSION
8
+ SPREE_GEM_VERSION = '0.9.1' unless defined? SPREE_GEM_VERSION
9
9
 
10
10
  # Bootstrap the Rails environment, frameworks, and default configuration
11
11
  require File.join(File.dirname(__FILE__), 'boot')
@@ -31,8 +31,8 @@ Spree::Initializer.run do |config|
31
31
  config.gem "activemerchant", :lib => "active_merchant", :version => '>=1.4.1'
32
32
  config.gem "tlsmail", :version => '0.0.1'
33
33
  config.gem 'activerecord-tableless', :lib => 'tableless', :version => '>=0.1.0'
34
- config.gem 'haml-edge', :lib=> 'haml', :version => ">=2.1.37"
35
- config.gem 'chriseppstein-compass', :lib => 'compass', :source => "http://gems.github.com", :version => '0.6.15'
34
+ config.gem 'haml', :version => '2.2.0'
35
+ config.gem 'chriseppstein-compass', :lib => 'compass', :source => "http://gems.github.com", :version => '0.8.17'
36
36
  config.gem 'calendar_date_select', :version => '1.15'
37
37
  config.gem 'rsl-stringex', :lib => 'stringex', :source => "http://gems.github.com"
38
38
  config.gem 'chronic' #required for whenever
@@ -9,7 +9,7 @@ unless defined? Spree::Version
9
9
  module Version
10
10
  Major = '0'
11
11
  Minor = '9'
12
- Tiny = '0'
12
+ Tiny = '1'
13
13
 
14
14
  class << self
15
15
  def to_s
@@ -21,5 +21,40 @@ sub {
21
21
  hr {
22
22
  margin: -8px auto 11px; }
23
23
 
24
+ img {
25
+ -ms-interpolation-mode: bicubic; }
26
+
24
27
  fieldset {
25
28
  padding-top: 0; }
29
+
30
+ input.text {
31
+ margin: 0.5em 0;
32
+ background-color: #fff;
33
+ border: 1px solid #bbb; }
34
+ input.text:focus {
35
+ border: 1px solid #666; }
36
+ input.title {
37
+ margin: 0.5em 0;
38
+ background-color: #fff;
39
+ border: 1px solid #bbb; }
40
+ input.title:focus {
41
+ border: 1px solid #666; }
42
+ input.checkbox {
43
+ position: relative;
44
+ top: 0.25em; }
45
+ input.radio {
46
+ position: relative;
47
+ top: 0.25em; }
48
+ input.button {
49
+ position: relative;
50
+ top: 0.25em; }
51
+
52
+ textarea {
53
+ margin: 0.5em 0; }
54
+
55
+ select {
56
+ margin: 0.5em 0; }
57
+
58
+ button {
59
+ position: relative;
60
+ top: 0.25em; }
@@ -1,66 +1,49 @@
1
- html, body {
1
+ html, body, div, span, applet, object, iframe,
2
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
3
+ a, abbr, acronym, address, big, cite, code,
4
+ del, dfn, em, font, img, ins, kbd, q, s, samp,
5
+ small, strike, strong, sub, sup, tt, var,
6
+ dl, dt, dd, ol, ul, li,
7
+ fieldset, form, label, legend,
8
+ table, caption, tbody, tfoot, thead, tr, th, td {
2
9
  margin: 0;
3
10
  padding: 0;
4
11
  border: 0;
12
+ outline: 0;
5
13
  font-weight: inherit;
6
14
  font-style: inherit;
7
15
  font-size: 100%;
8
16
  font-family: inherit;
9
17
  vertical-align: baseline; }
10
18
 
11
- div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
12
- pre, a, abbr, acronym, address, code, del, dfn, em, img,
13
- dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr {
14
- margin: 0;
15
- padding: 0;
16
- border: 0;
17
- font-weight: inherit;
18
- font-style: inherit;
19
- font-size: 100%;
20
- font-family: inherit;
21
- vertical-align: baseline; }
19
+ *:focus {
20
+ outline: 0; }
22
21
 
23
- blockquote, q {
24
- margin: 0;
25
- padding: 0;
26
- border: 0;
27
- font-weight: inherit;
28
- font-style: inherit;
29
- font-size: 100%;
30
- font-family: inherit;
31
- vertical-align: baseline;
32
- quotes: "" ""; }
33
- blockquote:before, q:before,
34
- blockquote:after, q:after {
35
- content: ""; }
22
+ body {
23
+ line-height: 1em;
24
+ color: black;
25
+ background: #fff; }
36
26
 
37
- th, td, caption {
38
- margin: 0;
39
- padding: 0;
40
- border: 0;
41
- font-weight: inherit;
42
- font-style: inherit;
43
- font-size: 100%;
44
- font-family: inherit;
45
- vertical-align: baseline;
46
- text-align: left;
47
- font-weight: normal;
48
- vertical-align: middle; }
27
+ ol, ul {
28
+ list-style: none; }
49
29
 
30
+ /* tables still need 'cellspacing="0"' in the markup */
50
31
  table {
51
- margin: 0;
52
- padding: 0;
53
- border: 0;
54
- font-weight: inherit;
55
- font-style: inherit;
56
- font-size: 100%;
57
- font-family: inherit;
58
- vertical-align: baseline;
59
32
  border-collapse: separate;
60
33
  border-spacing: 0;
61
34
  vertical-align: middle; }
62
35
 
63
- a img {
36
+ caption, th, td {
37
+ text-align: left;
38
+ font-weight: normal;
39
+ vertical-align: middle; }
40
+
41
+ q, blockquote {
42
+ quotes: "" ""; }
43
+ q:before, q:after, blockquote:before, blockquote:after {
44
+ content: ""; }
45
+
46
+ img a {
64
47
  border: none; }
65
48
 
66
49
  body {
@@ -692,8 +675,14 @@ input.span-24, textarea.span-24, select.span-24 {
692
675
  .push-24 {
693
676
  margin: 0 -960px 1.5em 960px; }
694
677
 
678
+ .prepend-top {
679
+ margin-top: 1.5em; }
680
+
681
+ .append-bottom {
682
+ margin-bottom: 1.5em; }
683
+
695
684
  .showgrid {
696
- background: url(grid.png); }
685
+ background: url('/grid.png'); }
697
686
 
698
687
  .error {
699
688
  padding: .8em;
@@ -744,50 +733,49 @@ label {
744
733
 
745
734
  fieldset {
746
735
  padding: 1.4em;
747
- margin: 0 0 1.5em 0;
748
- border: 1px solid #ccc; }
736
+ margin: 0 0 1.5em 0; }
749
737
 
750
738
  legend {
751
739
  font-weight: bold;
752
740
  font-size: 1.2em; }
753
741
 
754
- input.text {
742
+ input.text, input.title, input[type=text] {
755
743
  margin: 0.5em 0;
756
- border: 1px solid #bbb;
757
- width: 300px;
744
+ background-color: #fff;
758
745
  padding: 5px; }
759
- input.text:focus {
760
- border: 1px solid #666; }
761
746
  input.title {
762
747
  font-size: 1.5em; }
748
+ input[type=checkbox], input.checkbox,
749
+ input[type=radio], input.radio {
750
+ position: relative;
751
+ top: 0.25em; }
763
752
 
764
- input.title {
753
+ textarea {
765
754
  margin: 0.5em 0;
766
- border: 1px solid #bbb;
767
- width: 300px;
768
755
  padding: 5px; }
769
- input.title:focus {
770
- border: 1px solid #666; }
771
756
 
772
- textarea {
773
- margin: 0.5em 0;
774
- border: 1px solid #bbb; }
775
- textarea:focus {
776
- border: 1px solid #666; }
757
+ select {
758
+ margin: 0.5em 0; }
777
759
 
760
+ fieldset {
761
+ border: 1px solid #cccccc; }
762
+
763
+ input.text, input.title,
764
+ textarea,
778
765
  select {
779
- margin: 0.5em 0;
780
- border: 1px solid #bbb; }
766
+ border: 1px solid #bbbbbb; }
767
+ input.text:focus, input.title:focus,
768
+ textarea:focus,
781
769
  select:focus {
782
- border: 1px solid #666; }
770
+ border: 1px solid #666666; }
771
+
772
+ input.text, input.title {
773
+ width: 300px; }
783
774
 
784
775
  textarea {
785
776
  width: 390px;
786
- height: 250px;
787
- padding: 5px; }
777
+ height: 250px; }
788
778
 
789
- body {
790
- margin: 1.5em 0; }
791
779
 
792
780
  .box {
793
781
  padding: 1.5em;
@@ -797,16 +785,16 @@ body {
797
785
  div.border {
798
786
  padding-right: 4px;
799
787
  margin-right: 5px;
800
- border-right: 1px solid #eee; }
788
+ border-right: 1px solid #eeeeee; }
801
789
 
802
790
  div.colborder {
803
791
  padding-right: 24px;
804
792
  margin-right: 25px;
805
- border-right: 1px solid #eee; }
793
+ border-right: 1px solid #eeeeee; }
806
794
 
807
795
  hr {
808
- background: #ddd;
809
- color: #ddd;
796
+ background: #dddddd;
797
+ color: #dddddd;
810
798
  clear: both;
811
799
  float: none;
812
800
  width: 100%;
@@ -815,8 +803,8 @@ hr {
815
803
  border: none; }
816
804
 
817
805
  hr.space {
818
- background: #ddd;
819
- color: #ddd;
806
+ background: #dddddd;
807
+ color: #dddddd;
820
808
  clear: both;
821
809
  float: none;
822
810
  width: 100%;
@@ -853,7 +841,7 @@ body {
853
841
  width: 150px;
854
842
  padding-right: 24px;
855
843
  margin-right: 25px;
856
- border-right: 1px solid #eee; }
844
+ border-right: 1px solid #eeeeee; }
857
845
  * html #sidebar {
858
846
  overflow-x: hidden; }
859
847
  #sidebar h3 {
@@ -1262,7 +1250,7 @@ ul.thumbnails {
1262
1250
  width: 310px;
1263
1251
  padding-right: 24px;
1264
1252
  margin-right: 25px;
1265
- border-right: 1px solid #eee; }
1253
+ border-right: 1px solid #eeeeee; }
1266
1254
  * html #product-description {
1267
1255
  overflow-x: hidden; }
1268
1256
 
@@ -1348,11 +1336,11 @@ div#checkout {
1348
1336
  div#checkout div#methods p input, div#checkout div#registration_choice p input {
1349
1337
  width: 15px; }
1350
1338
  div#checkout #registration {
1351
- background: transparent url(/images/steps/1.png) top right no-repeat; }
1339
+ background: transparent url('/images/steps/1.png') top right no-repeat; }
1352
1340
  div#checkout #registration.completed, div#checkout #registration.disabled {
1353
1341
  background-image: none; }
1354
1342
  div#checkout #registration.completed h2, div#checkout #registration.disabled h2 {
1355
- background: transparent url(/images/steps/1_small.png) top left no-repeat;
1343
+ background: transparent url('/images/steps/1_small.png') top left no-repeat;
1356
1344
  margin-bottom: 0.25em; }
1357
1345
  div#checkout #registration div.inner {
1358
1346
  display: none;
@@ -1367,21 +1355,21 @@ div#checkout {
1367
1355
  div#checkout #registration div#guest_user, div#checkout #registration div#existing_user, div#checkout #registration div#already_logged_in {
1368
1356
  display: none; }
1369
1357
  div#checkout #billing {
1370
- background: transparent url(/images/steps/2.png) top right no-repeat; }
1358
+ background: transparent url('/images/steps/2.png') top right no-repeat; }
1371
1359
  div#checkout #billing.completed, div#checkout #billing.disabled {
1372
1360
  background-image: none; }
1373
1361
  div#checkout #billing.completed h2, div#checkout #billing.disabled h2 {
1374
- background: transparent url(/images/steps/2_small.png) top left no-repeat;
1362
+ background: transparent url('/images/steps/2_small.png') top left no-repeat;
1375
1363
  margin-bottom: 0.25em; }
1376
1364
  div#checkout #billing div.inner {
1377
1365
  display: none;
1378
1366
  padding: 10px 2px; }
1379
1367
  div#checkout #shipping {
1380
- background: transparent url(/images/steps/3.png) top right no-repeat; }
1368
+ background: transparent url('/images/steps/3.png') top right no-repeat; }
1381
1369
  div#checkout #shipping.completed, div#checkout #shipping.disabled {
1382
1370
  background-image: none; }
1383
1371
  div#checkout #shipping.completed h2, div#checkout #shipping.disabled h2 {
1384
- background: transparent url(/images/steps/3_small.png) top left no-repeat;
1372
+ background: transparent url('/images/steps/3_small.png') top left no-repeat;
1385
1373
  margin-bottom: 0.25em; }
1386
1374
  div#checkout #shipping div.inner {
1387
1375
  display: none;
@@ -1402,11 +1390,11 @@ div#checkout {
1402
1390
  div#checkout #shipping.completed h2, div#checkout #shipping.disabled h2 {
1403
1391
  padding-left: 32px; }
1404
1392
  div#checkout #shipping_method {
1405
- background: transparent url(/images/steps/4.png) top right no-repeat; }
1393
+ background: transparent url('/images/steps/4.png') top right no-repeat; }
1406
1394
  div#checkout #shipping_method.completed, div#checkout #shipping_method.disabled {
1407
1395
  background-image: none; }
1408
1396
  div#checkout #shipping_method.completed h2, div#checkout #shipping_method.disabled h2 {
1409
- background: transparent url(/images/steps/4_small.png) top left no-repeat;
1397
+ background: transparent url('/images/steps/4_small.png') top left no-repeat;
1410
1398
  margin-bottom: 0.25em; }
1411
1399
  div#checkout #shipping_method div.inner {
1412
1400
  display: none;
@@ -1416,11 +1404,11 @@ div#checkout {
1416
1404
  div#checkout #shipping_method div.error {
1417
1405
  display: none; }
1418
1406
  div#checkout #payment {
1419
- background: transparent url(/images/steps/5.png) top right no-repeat; }
1407
+ background: transparent url('/images/steps/5.png') top right no-repeat; }
1420
1408
  div#checkout #payment.completed, div#checkout #payment.disabled {
1421
1409
  background-image: none; }
1422
1410
  div#checkout #payment.completed h2, div#checkout #payment.disabled h2 {
1423
- background: transparent url(/images/steps/5_small.png) top left no-repeat;
1411
+ background: transparent url('/images/steps/5_small.png') top left no-repeat;
1424
1412
  margin-bottom: 0.25em; }
1425
1413
  div#checkout #payment div.inner {
1426
1414
  display: none;
@@ -1428,11 +1416,11 @@ div#checkout {
1428
1416
  div#checkout #payment p select {
1429
1417
  width: 75px; }
1430
1418
  div#checkout #confirmation {
1431
- background: transparent url(/images/steps/6.png) top right no-repeat; }
1419
+ background: transparent url('/images/steps/6.png') top right no-repeat; }
1432
1420
  div#checkout #confirmation.completed, div#checkout #confirmation.disabled {
1433
1421
  background-image: none; }
1434
1422
  div#checkout #confirmation.completed h2, div#checkout #confirmation.disabled h2 {
1435
- background: transparent url(/images/steps/6_small.png) top left no-repeat;
1423
+ background: transparent url('/images/steps/6_small.png') top left no-repeat;
1436
1424
  margin-bottom: 0.25em; }
1437
1425
  div#checkout #confirmation div.inner {
1438
1426
  display: none;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Schofield
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-21 00:00:00 -04:00
12
+ date: 2009-10-13 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -2675,6 +2675,8 @@ rdoc_options:
2675
2675
  - --exclude
2676
2676
  - log
2677
2677
  - --exclude
2678
+ - pkg
2679
+ - --exclude
2678
2680
  - public
2679
2681
  - --exclude
2680
2682
  - script