emcee 1.0.2 → 1.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e7df9a77ef258840c1a811639a644afa7ae1f2c
4
- data.tar.gz: 89f10f8439283386a3e4ffdf31e22076ae9655f5
3
+ metadata.gz: 58f64e44f4d45b44be482f4f9579d70124724321
4
+ data.tar.gz: b63b3ec259584fed47e19771e92f8775985e740a
5
5
  SHA512:
6
- metadata.gz: b75a9fb8517d1aa780565aab44a6ecaa00fe8fcb21f919672fa2e2fc7486ea5df11646ee74bdc2fa8dfdd4c290c1aac8b3885dedb5a887621288d08cc0d6f0f1
7
- data.tar.gz: be3eb998ddac383574b88a0d3990ec4301d1d78d294b35eee8b04d9e6c1c731996f0d40a79b68300f438777285c419762394fcb761a3efa9c27f5158232f8721
6
+ metadata.gz: 923112678d218ddb5f2b9e72c4f06754cb59f98c4b7410040a228afc3b9a11f30c79bb12350b26b9c506c859b85a1c180aad8fc8fd3a196c96050e7fabcec50c
7
+ data.tar.gz: 5525dfa98e132cec0f7a6dd528bd8d8f262e4cef87033d515ceaa131381afee48900a0737f8d6236155eb740b3cc45c8b02c3dc5ba6b8cf489438589bb88068d
@@ -5,7 +5,7 @@ module Emcee
5
5
  class HtmlCompressor
6
6
  HTML_COMMENTS = /\<!\s*--(?:.*?)(?:--\s*\>)/m
7
7
  JS_MULTI_COMMENTS = /\/\*(?:.*?)\*\//m
8
- JS_COMMENTS = /\/\/.*$/
8
+ JS_COMMENTS = /^\s*\/\/.*$/
9
9
  BLANK_LINES = /^[\s]*$\n/
10
10
 
11
11
  def compress(string)
@@ -1,3 +1,3 @@
1
1
  module Emcee
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
@@ -82,4 +82,17 @@ class CompressorsTest < ActiveSupport::TestCase
82
82
  <p>test</p>
83
83
  }
84
84
  end
85
+
86
+ test "compressor should not attempt to remove javascript comments within a string" do
87
+ content = %q{
88
+ <script>
89
+ var url = 'http://www.w3.org/2000/svg';
90
+ </script>
91
+ }
92
+ assert_equal "\n" + @compressor.compress(content), %q{
93
+ <script>
94
+ var url = 'http://www.w3.org/2000/svg';
95
+ </script>
96
+ }
97
+ end
85
98
  end
@@ -70533,3 +70533,834 @@ PostProcessorsTest: test_processing_scripts_should_work
70533
70533
  PostProcessorsTest: test_processing_stylesheets_should_work
70534
70534
  -----------------------------------------------------------
70535
70535
   (0.0ms) rollback transaction
70536
+  (0.1ms) begin transaction
70537
+ -------------------------------------
70538
+ Helpers: test_html_import_should_work
70539
+ -------------------------------------
70540
+  (0.0ms) rollback transaction
70541
+  (0.0ms) begin transaction
70542
+ ----------------------------------------------------------
70543
+ CompressorsTest: test_compressor_should_remove_blank_lines
70544
+ ----------------------------------------------------------
70545
+  (0.0ms) rollback transaction
70546
+  (0.0ms) begin transaction
70547
+ -----------------------------------------------------------
70548
+ CompressorsTest: test_compressor_should_remove_css_comments
70549
+ -----------------------------------------------------------
70550
+  (0.0ms) rollback transaction
70551
+  (0.0ms) begin transaction
70552
+ ------------------------------------------------------------
70553
+ CompressorsTest: test_compressor_should_remove_html_comments
70554
+ ------------------------------------------------------------
70555
+  (0.0ms) rollback transaction
70556
+  (0.0ms) begin transaction
70557
+ -----------------------------------------------------------------------------
70558
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70559
+ -----------------------------------------------------------------------------
70560
+  (0.0ms) rollback transaction
70561
+  (0.0ms) begin transaction
70562
+ ------------------------------------------------------------------------------
70563
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70564
+ ------------------------------------------------------------------------------
70565
+  (0.0ms) rollback transaction
70566
+  (0.0ms) begin transaction
70567
+ -------------------------------------------------------------------------------------------
70568
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70569
+ -------------------------------------------------------------------------------------------
70570
+ Processing by DummyController#index as HTML
70571
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
70572
+  (0.1ms) rollback transaction
70573
+  (0.1ms) begin transaction
70574
+ ---------------------------------------------------------------------------------
70575
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70576
+ ---------------------------------------------------------------------------------
70577
+ Processing by DummyController#assets as HTML
70578
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70579
+  (0.1ms) rollback transaction
70580
+  (0.1ms) begin transaction
70581
+ -------------------------------------------------------
70582
+ PostProcessorsTest: test_processing_imports_should_work
70583
+ -------------------------------------------------------
70584
+  (0.1ms) rollback transaction
70585
+  (0.0ms) begin transaction
70586
+ -------------------------------------------------------
70587
+ PostProcessorsTest: test_processing_scripts_should_work
70588
+ -------------------------------------------------------
70589
+  (0.0ms) rollback transaction
70590
+  (0.0ms) begin transaction
70591
+ -----------------------------------------------------------
70592
+ PostProcessorsTest: test_processing_stylesheets_should_work
70593
+ -----------------------------------------------------------
70594
+  (0.1ms) rollback transaction
70595
+  (0.1ms) begin transaction
70596
+ -------------------------------------------------------
70597
+ PostProcessorsTest: test_processing_imports_should_work
70598
+ -------------------------------------------------------
70599
+  (0.1ms) rollback transaction
70600
+  (0.1ms) begin transaction
70601
+ -------------------------------------------------------
70602
+ PostProcessorsTest: test_processing_scripts_should_work
70603
+ -------------------------------------------------------
70604
+  (0.0ms) rollback transaction
70605
+  (0.0ms) begin transaction
70606
+ -----------------------------------------------------------
70607
+ PostProcessorsTest: test_processing_stylesheets_should_work
70608
+ -----------------------------------------------------------
70609
+  (0.0ms) rollback transaction
70610
+  (0.0ms) begin transaction
70611
+ --------------------------------------------------------------------------------------
70612
+ CompressorsTest: test_compressor_should_not_remove_javascript_comments_within_a_string
70613
+ --------------------------------------------------------------------------------------
70614
+  (0.1ms) rollback transaction
70615
+  (0.0ms) begin transaction
70616
+ ----------------------------------------------------------
70617
+ CompressorsTest: test_compressor_should_remove_blank_lines
70618
+ ----------------------------------------------------------
70619
+  (0.0ms) rollback transaction
70620
+  (0.1ms) begin transaction
70621
+ -----------------------------------------------------------
70622
+ CompressorsTest: test_compressor_should_remove_css_comments
70623
+ -----------------------------------------------------------
70624
+  (0.0ms) rollback transaction
70625
+  (0.0ms) begin transaction
70626
+ ------------------------------------------------------------
70627
+ CompressorsTest: test_compressor_should_remove_html_comments
70628
+ ------------------------------------------------------------
70629
+  (0.0ms) rollback transaction
70630
+  (0.0ms) begin transaction
70631
+ -----------------------------------------------------------------------------
70632
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70633
+ -----------------------------------------------------------------------------
70634
+  (0.0ms) rollback transaction
70635
+  (0.0ms) begin transaction
70636
+ ------------------------------------------------------------------------------
70637
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70638
+ ------------------------------------------------------------------------------
70639
+  (0.0ms) rollback transaction
70640
+  (0.0ms) begin transaction
70641
+ -------------------------------------------------------------------------------------------
70642
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70643
+ -------------------------------------------------------------------------------------------
70644
+ Processing by DummyController#index as HTML
70645
+ Rendered dummy/index.html.erb within layouts/application (1.8ms)
70646
+ Completed 200 OK in 37ms (Views: 36.3ms | ActiveRecord: 0.0ms)
70647
+  (0.1ms) rollback transaction
70648
+  (0.1ms) begin transaction
70649
+ ---------------------------------------------------------------------------------
70650
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70651
+ ---------------------------------------------------------------------------------
70652
+ Processing by DummyController#assets as HTML
70653
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70654
+  (0.1ms) rollback transaction
70655
+  (0.0ms) begin transaction
70656
+ -------------------------------------
70657
+ Helpers: test_html_import_should_work
70658
+ -------------------------------------
70659
+  (0.0ms) rollback transaction
70660
+  (0.1ms) begin transaction
70661
+ -------------------------------------------------------------------------------------------
70662
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70663
+ -------------------------------------------------------------------------------------------
70664
+ Processing by DummyController#index as HTML
70665
+ Rendered dummy/index.html.erb within layouts/application (1.2ms)
70666
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
70667
+  (0.1ms) rollback transaction
70668
+  (0.0ms) begin transaction
70669
+ ---------------------------------------------------------------------------------
70670
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70671
+ ---------------------------------------------------------------------------------
70672
+ Processing by DummyController#assets as HTML
70673
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70674
+  (0.1ms) rollback transaction
70675
+  (0.0ms) begin transaction
70676
+ -------------------------------------------------------
70677
+ PostProcessorsTest: test_processing_imports_should_work
70678
+ -------------------------------------------------------
70679
+  (0.0ms) rollback transaction
70680
+  (0.0ms) begin transaction
70681
+ -------------------------------------------------------
70682
+ PostProcessorsTest: test_processing_scripts_should_work
70683
+ -------------------------------------------------------
70684
+  (0.0ms) rollback transaction
70685
+  (0.0ms) begin transaction
70686
+ -----------------------------------------------------------
70687
+ PostProcessorsTest: test_processing_stylesheets_should_work
70688
+ -----------------------------------------------------------
70689
+  (0.1ms) rollback transaction
70690
+  (0.1ms) begin transaction
70691
+ --------------------------------------------------------------------------------------
70692
+ CompressorsTest: test_compressor_should_not_remove_javascript_comments_within_a_string
70693
+ --------------------------------------------------------------------------------------
70694
+  (0.1ms) rollback transaction
70695
+  (0.2ms) begin transaction
70696
+ ----------------------------------------------------------
70697
+ CompressorsTest: test_compressor_should_remove_blank_lines
70698
+ ----------------------------------------------------------
70699
+  (0.1ms) rollback transaction
70700
+  (0.1ms) begin transaction
70701
+ -----------------------------------------------------------
70702
+ CompressorsTest: test_compressor_should_remove_css_comments
70703
+ -----------------------------------------------------------
70704
+  (0.1ms) rollback transaction
70705
+  (0.1ms) begin transaction
70706
+ ------------------------------------------------------------
70707
+ CompressorsTest: test_compressor_should_remove_html_comments
70708
+ ------------------------------------------------------------
70709
+  (0.1ms) rollback transaction
70710
+  (0.1ms) begin transaction
70711
+ -----------------------------------------------------------------------------
70712
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70713
+ -----------------------------------------------------------------------------
70714
+  (0.0ms) rollback transaction
70715
+  (0.0ms) begin transaction
70716
+ ------------------------------------------------------------------------------
70717
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70718
+ ------------------------------------------------------------------------------
70719
+  (0.0ms) rollback transaction
70720
+  (0.0ms) begin transaction
70721
+ -------------------------------------
70722
+ Helpers: test_html_import_should_work
70723
+ -------------------------------------
70724
+  (0.1ms) rollback transaction
70725
+  (0.1ms) begin transaction
70726
+ -------------------------------------------------------
70727
+ PostProcessorsTest: test_processing_imports_should_work
70728
+ -------------------------------------------------------
70729
+  (0.1ms) rollback transaction
70730
+  (0.1ms) begin transaction
70731
+ -------------------------------------------------------
70732
+ PostProcessorsTest: test_processing_scripts_should_work
70733
+ -------------------------------------------------------
70734
+  (0.1ms) rollback transaction
70735
+  (0.0ms) begin transaction
70736
+ -----------------------------------------------------------
70737
+ PostProcessorsTest: test_processing_stylesheets_should_work
70738
+ -----------------------------------------------------------
70739
+  (0.1ms) rollback transaction
70740
+  (0.1ms) begin transaction
70741
+ -------------------------------------
70742
+ Helpers: test_html_import_should_work
70743
+ -------------------------------------
70744
+  (0.1ms) rollback transaction
70745
+  (0.0ms) begin transaction
70746
+ -------------------------------------------------------------------------------------------
70747
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70748
+ -------------------------------------------------------------------------------------------
70749
+ Processing by DummyController#index as HTML
70750
+ Completed 200 OK in 208ms (Views: 207.6ms | ActiveRecord: 0.0ms)
70751
+  (0.1ms) rollback transaction
70752
+  (0.1ms) begin transaction
70753
+ ---------------------------------------------------------------------------------
70754
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70755
+ ---------------------------------------------------------------------------------
70756
+ Processing by DummyController#assets as HTML
70757
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70758
+  (0.1ms) rollback transaction
70759
+  (0.0ms) begin transaction
70760
+ --------------------------------------------------------------------------------------
70761
+ CompressorsTest: test_compressor_should_not_remove_javascript_comments_within_a_string
70762
+ --------------------------------------------------------------------------------------
70763
+  (0.0ms) rollback transaction
70764
+  (0.0ms) begin transaction
70765
+ ----------------------------------------------------------
70766
+ CompressorsTest: test_compressor_should_remove_blank_lines
70767
+ ----------------------------------------------------------
70768
+  (0.0ms) rollback transaction
70769
+  (0.0ms) begin transaction
70770
+ -----------------------------------------------------------
70771
+ CompressorsTest: test_compressor_should_remove_css_comments
70772
+ -----------------------------------------------------------
70773
+  (0.1ms) rollback transaction
70774
+  (0.0ms) begin transaction
70775
+ ------------------------------------------------------------
70776
+ CompressorsTest: test_compressor_should_remove_html_comments
70777
+ ------------------------------------------------------------
70778
+  (0.0ms) rollback transaction
70779
+  (0.1ms) begin transaction
70780
+ -----------------------------------------------------------------------------
70781
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70782
+ -----------------------------------------------------------------------------
70783
+  (0.0ms) rollback transaction
70784
+  (0.0ms) begin transaction
70785
+ ------------------------------------------------------------------------------
70786
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70787
+ ------------------------------------------------------------------------------
70788
+  (0.0ms) rollback transaction
70789
+  (0.1ms) begin transaction
70790
+ -------------------------------------------------------------------------------------------
70791
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70792
+ -------------------------------------------------------------------------------------------
70793
+ Processing by DummyController#index as HTML
70794
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
70795
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
70796
+  (0.1ms) rollback transaction
70797
+  (0.1ms) begin transaction
70798
+ ---------------------------------------------------------------------------------
70799
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70800
+ ---------------------------------------------------------------------------------
70801
+ Processing by DummyController#assets as HTML
70802
+ Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70803
+  (0.1ms) rollback transaction
70804
+  (0.1ms) begin transaction
70805
+ -------------------------------------
70806
+ Helpers: test_html_import_should_work
70807
+ -------------------------------------
70808
+  (0.1ms) rollback transaction
70809
+  (0.1ms) begin transaction
70810
+ -------------------------------------------------------
70811
+ PostProcessorsTest: test_processing_imports_should_work
70812
+ -------------------------------------------------------
70813
+  (0.1ms) rollback transaction
70814
+  (0.0ms) begin transaction
70815
+ -------------------------------------------------------
70816
+ PostProcessorsTest: test_processing_scripts_should_work
70817
+ -------------------------------------------------------
70818
+  (0.0ms) rollback transaction
70819
+  (0.1ms) begin transaction
70820
+ -----------------------------------------------------------
70821
+ PostProcessorsTest: test_processing_stylesheets_should_work
70822
+ -----------------------------------------------------------
70823
+  (0.1ms) rollback transaction
70824
+  (0.1ms) begin transaction
70825
+ --------------------------------------------------------------------------------------
70826
+ CompressorsTest: test_compressor_should_not_remove_javascript_comments_within_a_string
70827
+ --------------------------------------------------------------------------------------
70828
+  (0.0ms) rollback transaction
70829
+  (0.1ms) begin transaction
70830
+ ----------------------------------------------------------
70831
+ CompressorsTest: test_compressor_should_remove_blank_lines
70832
+ ----------------------------------------------------------
70833
+  (0.0ms) rollback transaction
70834
+  (0.0ms) begin transaction
70835
+ -----------------------------------------------------------
70836
+ CompressorsTest: test_compressor_should_remove_css_comments
70837
+ -----------------------------------------------------------
70838
+  (0.0ms) rollback transaction
70839
+  (0.0ms) begin transaction
70840
+ ------------------------------------------------------------
70841
+ CompressorsTest: test_compressor_should_remove_html_comments
70842
+ ------------------------------------------------------------
70843
+  (0.0ms) rollback transaction
70844
+  (0.0ms) begin transaction
70845
+ -----------------------------------------------------------------------------
70846
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70847
+ -----------------------------------------------------------------------------
70848
+  (0.0ms) rollback transaction
70849
+  (0.0ms) begin transaction
70850
+ ------------------------------------------------------------------------------
70851
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70852
+ ------------------------------------------------------------------------------
70853
+  (0.0ms) rollback transaction
70854
+  (0.1ms) begin transaction
70855
+ -------------------------------------
70856
+ Helpers: test_html_import_should_work
70857
+ -------------------------------------
70858
+  (0.0ms) rollback transaction
70859
+  (0.0ms) begin transaction
70860
+ -------------------------------------------------------------------------------------------
70861
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70862
+ -------------------------------------------------------------------------------------------
70863
+ Processing by DummyController#index as HTML
70864
+ Completed 200 OK in 16ms (Views: 16.3ms | ActiveRecord: 0.0ms)
70865
+  (0.1ms) rollback transaction
70866
+  (0.0ms) begin transaction
70867
+ ---------------------------------------------------------------------------------
70868
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70869
+ ---------------------------------------------------------------------------------
70870
+ Processing by DummyController#assets as HTML
70871
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70872
+  (0.1ms) rollback transaction
70873
+  (0.1ms) begin transaction
70874
+ --------------------------------------------------------------------------------------
70875
+ CompressorsTest: test_compressor_should_not_remove_javascript_comments_within_a_string
70876
+ --------------------------------------------------------------------------------------
70877
+  (0.1ms) rollback transaction
70878
+  (0.1ms) begin transaction
70879
+ ----------------------------------------------------------
70880
+ CompressorsTest: test_compressor_should_remove_blank_lines
70881
+ ----------------------------------------------------------
70882
+  (0.1ms) rollback transaction
70883
+  (0.0ms) begin transaction
70884
+ -----------------------------------------------------------
70885
+ CompressorsTest: test_compressor_should_remove_css_comments
70886
+ -----------------------------------------------------------
70887
+  (0.0ms) rollback transaction
70888
+  (0.0ms) begin transaction
70889
+ ------------------------------------------------------------
70890
+ CompressorsTest: test_compressor_should_remove_html_comments
70891
+ ------------------------------------------------------------
70892
+  (0.0ms) rollback transaction
70893
+  (0.0ms) begin transaction
70894
+ -----------------------------------------------------------------------------
70895
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70896
+ -----------------------------------------------------------------------------
70897
+  (0.0ms) rollback transaction
70898
+  (0.0ms) begin transaction
70899
+ ------------------------------------------------------------------------------
70900
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70901
+ ------------------------------------------------------------------------------
70902
+  (0.0ms) rollback transaction
70903
+  (0.1ms) begin transaction
70904
+ -------------------------------------------------------
70905
+ PostProcessorsTest: test_processing_imports_should_work
70906
+ -------------------------------------------------------
70907
+  (0.0ms) rollback transaction
70908
+  (0.0ms) begin transaction
70909
+ -------------------------------------------------------
70910
+ PostProcessorsTest: test_processing_scripts_should_work
70911
+ -------------------------------------------------------
70912
+  (0.0ms) rollback transaction
70913
+  (0.0ms) begin transaction
70914
+ -----------------------------------------------------------
70915
+ PostProcessorsTest: test_processing_stylesheets_should_work
70916
+ -----------------------------------------------------------
70917
+  (0.0ms) rollback transaction
70918
+  (0.1ms) begin transaction
70919
+ --------------------------------------------------------------------------------------
70920
+ CompressorsTest: test_compressor_should_not_remove_javascript_comments_within_a_string
70921
+ --------------------------------------------------------------------------------------
70922
+  (0.0ms) rollback transaction
70923
+  (0.0ms) begin transaction
70924
+ ----------------------------------------------------------
70925
+ CompressorsTest: test_compressor_should_remove_blank_lines
70926
+ ----------------------------------------------------------
70927
+  (0.0ms) rollback transaction
70928
+  (0.0ms) begin transaction
70929
+ -----------------------------------------------------------
70930
+ CompressorsTest: test_compressor_should_remove_css_comments
70931
+ -----------------------------------------------------------
70932
+  (0.1ms) rollback transaction
70933
+  (0.1ms) begin transaction
70934
+ ------------------------------------------------------------
70935
+ CompressorsTest: test_compressor_should_remove_html_comments
70936
+ ------------------------------------------------------------
70937
+  (0.0ms) rollback transaction
70938
+  (0.0ms) begin transaction
70939
+ -----------------------------------------------------------------------------
70940
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70941
+ -----------------------------------------------------------------------------
70942
+  (0.0ms) rollback transaction
70943
+  (0.0ms) begin transaction
70944
+ ------------------------------------------------------------------------------
70945
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70946
+ ------------------------------------------------------------------------------
70947
+  (0.0ms) rollback transaction
70948
+  (0.0ms) begin transaction
70949
+ -------------------------------------------------------
70950
+ PostProcessorsTest: test_processing_imports_should_work
70951
+ -------------------------------------------------------
70952
+  (0.0ms) rollback transaction
70953
+  (0.1ms) begin transaction
70954
+ -------------------------------------------------------
70955
+ PostProcessorsTest: test_processing_scripts_should_work
70956
+ -------------------------------------------------------
70957
+  (0.0ms) rollback transaction
70958
+  (0.1ms) begin transaction
70959
+ -----------------------------------------------------------
70960
+ PostProcessorsTest: test_processing_stylesheets_should_work
70961
+ -----------------------------------------------------------
70962
+  (0.0ms) rollback transaction
70963
+  (0.0ms) begin transaction
70964
+ -------------------------------------
70965
+ Helpers: test_html_import_should_work
70966
+ -------------------------------------
70967
+  (0.0ms) rollback transaction
70968
+  (0.0ms) begin transaction
70969
+ -------------------------------------------------------------------------------------------
70970
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70971
+ -------------------------------------------------------------------------------------------
70972
+ Processing by DummyController#index as HTML
70973
+ Completed 200 OK in 219ms (Views: 218.8ms | ActiveRecord: 0.0ms)
70974
+  (0.1ms) rollback transaction
70975
+  (0.1ms) begin transaction
70976
+ ---------------------------------------------------------------------------------
70977
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70978
+ ---------------------------------------------------------------------------------
70979
+ Processing by DummyController#assets as HTML
70980
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70981
+  (0.1ms) rollback transaction
70982
+  (0.1ms) begin transaction
70983
+ -------------------------------------------------------
70984
+ PostProcessorsTest: test_processing_imports_should_work
70985
+ -------------------------------------------------------
70986
+  (0.0ms) rollback transaction
70987
+  (0.0ms) begin transaction
70988
+ -------------------------------------------------------
70989
+ PostProcessorsTest: test_processing_scripts_should_work
70990
+ -------------------------------------------------------
70991
+  (0.0ms) rollback transaction
70992
+  (0.0ms) begin transaction
70993
+ -----------------------------------------------------------
70994
+ PostProcessorsTest: test_processing_stylesheets_should_work
70995
+ -----------------------------------------------------------
70996
+  (0.0ms) rollback transaction
70997
+  (0.0ms) begin transaction
70998
+ -------------------------------------
70999
+ Helpers: test_html_import_should_work
71000
+ -------------------------------------
71001
+  (0.0ms) rollback transaction
71002
+  (0.0ms) begin transaction
71003
+ -------------------------------------------------------------------------------------------
71004
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
71005
+ -------------------------------------------------------------------------------------------
71006
+ Processing by DummyController#index as HTML
71007
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
71008
+  (0.1ms) rollback transaction
71009
+  (0.0ms) begin transaction
71010
+ ---------------------------------------------------------------------------------
71011
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
71012
+ ---------------------------------------------------------------------------------
71013
+ Processing by DummyController#assets as HTML
71014
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
71015
+  (0.1ms) rollback transaction
71016
+  (0.0ms) begin transaction
71017
+ -------------------------------------------------------------------------------------------------
71018
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
71019
+ -------------------------------------------------------------------------------------------------
71020
+  (0.1ms) rollback transaction
71021
+  (0.1ms) begin transaction
71022
+ ----------------------------------------------------------
71023
+ CompressorsTest: test_compressor_should_remove_blank_lines
71024
+ ----------------------------------------------------------
71025
+  (0.1ms) rollback transaction
71026
+  (0.1ms) begin transaction
71027
+ -----------------------------------------------------------
71028
+ CompressorsTest: test_compressor_should_remove_css_comments
71029
+ -----------------------------------------------------------
71030
+  (0.0ms) rollback transaction
71031
+  (0.1ms) begin transaction
71032
+ ------------------------------------------------------------
71033
+ CompressorsTest: test_compressor_should_remove_html_comments
71034
+ ------------------------------------------------------------
71035
+  (0.1ms) rollback transaction
71036
+  (0.1ms) begin transaction
71037
+ -----------------------------------------------------------------------------
71038
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
71039
+ -----------------------------------------------------------------------------
71040
+  (0.0ms) rollback transaction
71041
+  (0.1ms) begin transaction
71042
+ ------------------------------------------------------------------------------
71043
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
71044
+ ------------------------------------------------------------------------------
71045
+  (0.0ms) rollback transaction
71046
+  (0.1ms) begin transaction
71047
+ -------------------------------------------------------------------------------------------------
71048
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
71049
+ -------------------------------------------------------------------------------------------------
71050
+  (0.0ms) rollback transaction
71051
+  (0.0ms) begin transaction
71052
+ ----------------------------------------------------------
71053
+ CompressorsTest: test_compressor_should_remove_blank_lines
71054
+ ----------------------------------------------------------
71055
+  (0.0ms) rollback transaction
71056
+  (0.0ms) begin transaction
71057
+ -----------------------------------------------------------
71058
+ CompressorsTest: test_compressor_should_remove_css_comments
71059
+ -----------------------------------------------------------
71060
+  (0.0ms) rollback transaction
71061
+  (0.1ms) begin transaction
71062
+ ------------------------------------------------------------
71063
+ CompressorsTest: test_compressor_should_remove_html_comments
71064
+ ------------------------------------------------------------
71065
+  (0.0ms) rollback transaction
71066
+  (0.0ms) begin transaction
71067
+ -----------------------------------------------------------------------------
71068
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
71069
+ -----------------------------------------------------------------------------
71070
+  (0.0ms) rollback transaction
71071
+  (0.1ms) begin transaction
71072
+ ------------------------------------------------------------------------------
71073
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
71074
+ ------------------------------------------------------------------------------
71075
+  (0.0ms) rollback transaction
71076
+  (0.0ms) begin transaction
71077
+ -------------------------------------------------------
71078
+ PostProcessorsTest: test_processing_imports_should_work
71079
+ -------------------------------------------------------
71080
+  (0.0ms) rollback transaction
71081
+  (0.1ms) begin transaction
71082
+ -------------------------------------------------------
71083
+ PostProcessorsTest: test_processing_scripts_should_work
71084
+ -------------------------------------------------------
71085
+  (0.0ms) rollback transaction
71086
+  (0.0ms) begin transaction
71087
+ -----------------------------------------------------------
71088
+ PostProcessorsTest: test_processing_stylesheets_should_work
71089
+ -----------------------------------------------------------
71090
+  (0.0ms) rollback transaction
71091
+  (0.0ms) begin transaction
71092
+ -------------------------------------
71093
+ Helpers: test_html_import_should_work
71094
+ -------------------------------------
71095
+  (0.0ms) rollback transaction
71096
+  (0.0ms) begin transaction
71097
+ -------------------------------------------------------------------------------------------
71098
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
71099
+ -------------------------------------------------------------------------------------------
71100
+ Processing by DummyController#index as HTML
71101
+ Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
71102
+  (0.1ms) rollback transaction
71103
+  (0.1ms) begin transaction
71104
+ ---------------------------------------------------------------------------------
71105
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
71106
+ ---------------------------------------------------------------------------------
71107
+ Processing by DummyController#assets as HTML
71108
+ Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.0ms)
71109
+  (0.1ms) rollback transaction
71110
+  (0.1ms) begin transaction
71111
+ -------------------------------------------------------------------------------------------------
71112
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
71113
+ -------------------------------------------------------------------------------------------------
71114
+  (0.1ms) rollback transaction
71115
+  (0.1ms) begin transaction
71116
+ ----------------------------------------------------------
71117
+ CompressorsTest: test_compressor_should_remove_blank_lines
71118
+ ----------------------------------------------------------
71119
+  (0.0ms) rollback transaction
71120
+  (0.0ms) begin transaction
71121
+ -----------------------------------------------------------
71122
+ CompressorsTest: test_compressor_should_remove_css_comments
71123
+ -----------------------------------------------------------
71124
+  (0.0ms) rollback transaction
71125
+  (0.0ms) begin transaction
71126
+ ------------------------------------------------------------
71127
+ CompressorsTest: test_compressor_should_remove_html_comments
71128
+ ------------------------------------------------------------
71129
+  (0.0ms) rollback transaction
71130
+  (0.0ms) begin transaction
71131
+ -----------------------------------------------------------------------------
71132
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
71133
+ -----------------------------------------------------------------------------
71134
+  (0.1ms) rollback transaction
71135
+  (0.0ms) begin transaction
71136
+ ------------------------------------------------------------------------------
71137
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
71138
+ ------------------------------------------------------------------------------
71139
+  (0.0ms) rollback transaction
71140
+  (0.0ms) begin transaction
71141
+ -------------------------------------------------------------------------------------------
71142
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
71143
+ -------------------------------------------------------------------------------------------
71144
+ Processing by DummyController#index as HTML
71145
+ Rendered dummy/index.html.erb within layouts/application (1.9ms)
71146
+ Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
71147
+  (0.1ms) rollback transaction
71148
+  (0.1ms) begin transaction
71149
+ ---------------------------------------------------------------------------------
71150
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
71151
+ ---------------------------------------------------------------------------------
71152
+ Processing by DummyController#assets as HTML
71153
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
71154
+  (0.1ms) rollback transaction
71155
+  (0.1ms) begin transaction
71156
+ -------------------------------------
71157
+ Helpers: test_html_import_should_work
71158
+ -------------------------------------
71159
+  (0.0ms) rollback transaction
71160
+  (0.0ms) begin transaction
71161
+ -------------------------------------------------------
71162
+ PostProcessorsTest: test_processing_imports_should_work
71163
+ -------------------------------------------------------
71164
+  (0.1ms) rollback transaction
71165
+  (0.1ms) begin transaction
71166
+ -------------------------------------------------------
71167
+ PostProcessorsTest: test_processing_scripts_should_work
71168
+ -------------------------------------------------------
71169
+  (0.1ms) rollback transaction
71170
+  (0.1ms) begin transaction
71171
+ -----------------------------------------------------------
71172
+ PostProcessorsTest: test_processing_stylesheets_should_work
71173
+ -----------------------------------------------------------
71174
+  (0.1ms) rollback transaction
71175
+  (0.1ms) begin transaction
71176
+ -------------------------------------------------------
71177
+ PostProcessorsTest: test_processing_imports_should_work
71178
+ -------------------------------------------------------
71179
+  (0.1ms) rollback transaction
71180
+  (0.1ms) begin transaction
71181
+ -------------------------------------------------------
71182
+ PostProcessorsTest: test_processing_scripts_should_work
71183
+ -------------------------------------------------------
71184
+  (0.1ms) rollback transaction
71185
+  (0.0ms) begin transaction
71186
+ -----------------------------------------------------------
71187
+ PostProcessorsTest: test_processing_stylesheets_should_work
71188
+ -----------------------------------------------------------
71189
+  (0.0ms) rollback transaction
71190
+  (0.0ms) begin transaction
71191
+ -------------------------------------
71192
+ Helpers: test_html_import_should_work
71193
+ -------------------------------------
71194
+  (0.0ms) rollback transaction
71195
+  (0.0ms) begin transaction
71196
+ -------------------------------------------------------------------------------------------------
71197
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
71198
+ -------------------------------------------------------------------------------------------------
71199
+  (0.0ms) rollback transaction
71200
+  (0.0ms) begin transaction
71201
+ ----------------------------------------------------------
71202
+ CompressorsTest: test_compressor_should_remove_blank_lines
71203
+ ----------------------------------------------------------
71204
+  (0.0ms) rollback transaction
71205
+  (0.0ms) begin transaction
71206
+ -----------------------------------------------------------
71207
+ CompressorsTest: test_compressor_should_remove_css_comments
71208
+ -----------------------------------------------------------
71209
+  (0.0ms) rollback transaction
71210
+  (0.0ms) begin transaction
71211
+ ------------------------------------------------------------
71212
+ CompressorsTest: test_compressor_should_remove_html_comments
71213
+ ------------------------------------------------------------
71214
+  (0.0ms) rollback transaction
71215
+  (0.0ms) begin transaction
71216
+ -----------------------------------------------------------------------------
71217
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
71218
+ -----------------------------------------------------------------------------
71219
+  (0.0ms) rollback transaction
71220
+  (0.0ms) begin transaction
71221
+ ------------------------------------------------------------------------------
71222
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
71223
+ ------------------------------------------------------------------------------
71224
+  (0.0ms) rollback transaction
71225
+  (0.0ms) begin transaction
71226
+ -------------------------------------------------------------------------------------------
71227
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
71228
+ -------------------------------------------------------------------------------------------
71229
+ Processing by DummyController#index as HTML
71230
+ Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms)
71231
+  (0.1ms) rollback transaction
71232
+  (0.0ms) begin transaction
71233
+ ---------------------------------------------------------------------------------
71234
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
71235
+ ---------------------------------------------------------------------------------
71236
+ Processing by DummyController#assets as HTML
71237
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
71238
+  (0.1ms) rollback transaction
71239
+  (0.1ms) begin transaction
71240
+ -------------------------------------
71241
+ Helpers: test_html_import_should_work
71242
+ -------------------------------------
71243
+  (0.0ms) rollback transaction
71244
+  (0.0ms) begin transaction
71245
+ -------------------------------------------------------
71246
+ PostProcessorsTest: test_processing_imports_should_work
71247
+ -------------------------------------------------------
71248
+  (0.0ms) rollback transaction
71249
+  (0.1ms) begin transaction
71250
+ -------------------------------------------------------
71251
+ PostProcessorsTest: test_processing_scripts_should_work
71252
+ -------------------------------------------------------
71253
+  (0.0ms) rollback transaction
71254
+  (0.0ms) begin transaction
71255
+ -----------------------------------------------------------
71256
+ PostProcessorsTest: test_processing_stylesheets_should_work
71257
+ -----------------------------------------------------------
71258
+  (0.0ms) rollback transaction
71259
+  (0.0ms) begin transaction
71260
+ -------------------------------------------------------------------------------------------
71261
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
71262
+ -------------------------------------------------------------------------------------------
71263
+ Processing by DummyController#index as HTML
71264
+ Completed 200 OK in 319ms (Views: 318.3ms | ActiveRecord: 0.0ms)
71265
+  (0.1ms) rollback transaction
71266
+  (0.1ms) begin transaction
71267
+ ---------------------------------------------------------------------------------
71268
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
71269
+ ---------------------------------------------------------------------------------
71270
+ Processing by DummyController#assets as HTML
71271
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
71272
+  (0.1ms) rollback transaction
71273
+  (0.0ms) begin transaction
71274
+ -------------------------------------------------------------------------------------------------
71275
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
71276
+ -------------------------------------------------------------------------------------------------
71277
+  (0.0ms) rollback transaction
71278
+  (0.0ms) begin transaction
71279
+ ----------------------------------------------------------
71280
+ CompressorsTest: test_compressor_should_remove_blank_lines
71281
+ ----------------------------------------------------------
71282
+  (0.0ms) rollback transaction
71283
+  (0.0ms) begin transaction
71284
+ -----------------------------------------------------------
71285
+ CompressorsTest: test_compressor_should_remove_css_comments
71286
+ -----------------------------------------------------------
71287
+  (0.0ms) rollback transaction
71288
+  (0.0ms) begin transaction
71289
+ ------------------------------------------------------------
71290
+ CompressorsTest: test_compressor_should_remove_html_comments
71291
+ ------------------------------------------------------------
71292
+  (0.0ms) rollback transaction
71293
+  (0.0ms) begin transaction
71294
+ -----------------------------------------------------------------------------
71295
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
71296
+ -----------------------------------------------------------------------------
71297
+  (0.0ms) rollback transaction
71298
+  (0.0ms) begin transaction
71299
+ ------------------------------------------------------------------------------
71300
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
71301
+ ------------------------------------------------------------------------------
71302
+  (0.0ms) rollback transaction
71303
+  (0.1ms) begin transaction
71304
+ -------------------------------------------------------
71305
+ PostProcessorsTest: test_processing_imports_should_work
71306
+ -------------------------------------------------------
71307
+  (0.0ms) rollback transaction
71308
+  (0.0ms) begin transaction
71309
+ -------------------------------------------------------
71310
+ PostProcessorsTest: test_processing_scripts_should_work
71311
+ -------------------------------------------------------
71312
+  (0.0ms) rollback transaction
71313
+  (0.0ms) begin transaction
71314
+ -----------------------------------------------------------
71315
+ PostProcessorsTest: test_processing_stylesheets_should_work
71316
+ -----------------------------------------------------------
71317
+  (0.0ms) rollback transaction
71318
+  (0.0ms) begin transaction
71319
+ -------------------------------------
71320
+ Helpers: test_html_import_should_work
71321
+ -------------------------------------
71322
+  (0.0ms) rollback transaction
71323
+  (0.0ms) begin transaction
71324
+ -------------------------------------------------------------------------------------------
71325
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
71326
+ -------------------------------------------------------------------------------------------
71327
+ Processing by DummyController#index as HTML
71328
+ Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms)
71329
+  (0.1ms) rollback transaction
71330
+  (0.1ms) begin transaction
71331
+ ---------------------------------------------------------------------------------
71332
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
71333
+ ---------------------------------------------------------------------------------
71334
+ Processing by DummyController#assets as HTML
71335
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
71336
+  (0.1ms) rollback transaction
71337
+  (0.0ms) begin transaction
71338
+ -------------------------------------------------------------------------------------------------
71339
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
71340
+ -------------------------------------------------------------------------------------------------
71341
+  (0.1ms) rollback transaction
71342
+  (0.0ms) begin transaction
71343
+ ----------------------------------------------------------
71344
+ CompressorsTest: test_compressor_should_remove_blank_lines
71345
+ ----------------------------------------------------------
71346
+  (0.0ms) rollback transaction
71347
+  (0.0ms) begin transaction
71348
+ -----------------------------------------------------------
71349
+ CompressorsTest: test_compressor_should_remove_css_comments
71350
+ -----------------------------------------------------------
71351
+  (0.0ms) rollback transaction
71352
+  (0.0ms) begin transaction
71353
+ ------------------------------------------------------------
71354
+ CompressorsTest: test_compressor_should_remove_html_comments
71355
+ ------------------------------------------------------------
71356
+  (0.0ms) rollback transaction
71357
+  (0.0ms) begin transaction
71358
+ -----------------------------------------------------------------------------
71359
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
71360
+ -----------------------------------------------------------------------------
71361
+  (0.0ms) rollback transaction
71362
+  (0.0ms) begin transaction
71363
+ ------------------------------------------------------------------------------
71364
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
71365
+ ------------------------------------------------------------------------------
71366
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: emcee
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Huth
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-02 00:00:00.000000000 Z
11
+ date: 2014-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri