smurfville 0.1.0 → 0.1.1

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.
data/README.md CHANGED
@@ -48,7 +48,7 @@ There is also a 3rd goal about [in-browser module development](https://github.co
48
48
 
49
49
  The gem is currently able to parse your Sass files and display all the used color variables (e.g. `$primary-color`) in a nice styleguide.
50
50
 
51
- Future goals include extracting typography information and rendering SMRUF modules.
51
+ Future goals include extracting typography information and rendering SMURF modules.
52
52
 
53
53
  ## Prerequisites
54
54
 
@@ -67,7 +67,7 @@ Add an initializer to your Rails project in which you tell Smurfville where it c
67
67
 
68
68
  # config/initializers/smurfville.rb
69
69
 
70
- if defined?(Smurfville) != nil
70
+ if defined?(Smurfville)
71
71
  Smurfville.sass_directory = Rails.root.join('app', 'assets', 'stylesheets').to_s
72
72
  end
73
73
 
@@ -75,7 +75,7 @@ Mount the `Smurfville::Engine` in your routes:
75
75
 
76
76
  # config/routes.rb
77
77
 
78
- if defined?(Smurfville) != nil
78
+ if defined?(Smurfville)
79
79
  mount Smurfville::Engine => "/smurfville"
80
80
  end
81
81
 
@@ -1,6 +1,6 @@
1
1
  Smurfville::Engine.routes.draw do
2
2
  root :to => "styleguide#colors"
3
3
 
4
- match "/colors" => "styleguide#colors"
5
- match "/typography" => "styleguide#typography"
4
+ get "/colors" => "styleguide#colors"
5
+ get "/typography" => "styleguide#typography"
6
6
  end
@@ -1,3 +1,3 @@
1
1
  module Smurfville
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -6,9 +6,6 @@ Dummy::Application.configure do
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
9
  # Show full error reports and disable caching
13
10
  config.consider_all_requests_local = true
14
11
  config.action_controller.perform_caching = false
@@ -34,4 +31,6 @@ Dummy::Application.configure do
34
31
 
35
32
  # Expands the lines which load the assets
36
33
  config.assets.debug = true
34
+
35
+ config.eager_load = true
37
36
  end
@@ -64,4 +64,6 @@ Dummy::Application.configure do
64
64
  # Log the query plan for queries taking more than this (works
65
65
  # with SQLite, MySQL, and PostgreSQL)
66
66
  # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+
68
+ config.eager_load = false
67
69
  end
@@ -11,9 +11,6 @@ Dummy::Application.configure do
11
11
  config.serve_static_assets = true
12
12
  config.static_cache_control = "public, max-age=3600"
13
13
 
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
16
-
17
14
  # Show full error reports and disable caching
18
15
  config.consider_all_requests_local = true
19
16
  config.action_controller.perform_caching = false
@@ -34,4 +31,6 @@ Dummy::Application.configure do
34
31
 
35
32
  # Print deprecation notices to the stderr
36
33
  config.active_support.deprecation = :stderr
34
+
35
+ config.eager_load = true
37
36
  end
@@ -4,4 +4,4 @@
4
4
  # If you change this key, all old signed cookies will become invalid!
5
5
  # Make sure the secret is at least 30 characters and all random,
6
6
  # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = '8e5f13bcc136f57ebd88c50617157a969a1e83d2f834c1447b365f67dd0b12eef435598b9cc4dbd13d762715b3042d35c750efa18275d70d0c874002b08c07e4'
7
+ Dummy::Application.config.secret_key_base = '8e5f13bcc136f57ebd88c50617157a969a1e83d2f834c1447b365f67dd0b12eef435598b9cc4dbd13d762715b3042d35c750efa18275d70d0c874002b08c07e4'
@@ -3523,3 +3523,154 @@ Completed 200 OK in 67ms (Views: 50.4ms)
3523
3523
 
3524
3524
  Started GET "/assets/smurfville/application.css?body=1" for 127.0.0.1 at 2013-02-17 19:25:20 +0100
3525
3525
  Served asset /smurfville/application.css - 200 OK (22ms)
3526
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138)
3527
+
3528
+
3529
+ Started GET "/" for 127.0.0.1 at 2013-08-13 11:07:15 +0200
3530
+ Processing by Rails::WelcomeController#index as HTML
3531
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (6.3ms)
3532
+ Completed 200 OK in 61ms (Views: 60.6ms)
3533
+
3534
+
3535
+ Started GET "/colors" for 127.0.0.1 at 2013-08-13 11:07:19 +0200
3536
+
3537
+ ActionController::RoutingError (No route matches [GET] "/colors"):
3538
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3539
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3540
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
3541
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
3542
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3543
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
3544
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
3545
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
3546
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3547
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3548
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3549
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3550
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3551
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3552
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
3553
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
3554
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3555
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3556
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3557
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3558
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3559
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3560
+
3561
+
3562
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
3563
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
3564
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
3565
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (18.2ms)
3566
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (36.4ms)
3567
+
3568
+
3569
+ Started GET "/styleguide/colors" for 127.0.0.1 at 2013-08-13 11:07:50 +0200
3570
+
3571
+ ActionController::RoutingError (No route matches [GET] "/styleguide/colors"):
3572
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3573
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3574
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
3575
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
3576
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3577
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
3578
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
3579
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
3580
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3581
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3582
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3583
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3584
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3585
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3586
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
3587
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
3588
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3589
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3590
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3591
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3592
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3593
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3594
+
3595
+
3596
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
3597
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
3598
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
3599
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
3600
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.0ms)
3601
+
3602
+
3603
+ Started GET "/styleguide" for 127.0.0.1 at 2013-08-13 11:07:52 +0200
3604
+
3605
+ ActionController::RoutingError (No route matches [GET] "/styleguide"):
3606
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3607
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3608
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
3609
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
3610
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
3611
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
3612
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
3613
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
3614
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3615
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3616
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3617
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3618
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3619
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
3620
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
3621
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
3622
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3623
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3624
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3625
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
3626
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
3627
+ /home/jk/.rvm/rubies/ruby-1.9.3-p385-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
3628
+
3629
+
3630
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
3631
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
3632
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
3633
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
3634
+ Rendered /home/jk/.rvm/gems/ruby-1.9.3-p385-perf@smurfville/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.1ms)
3635
+
3636
+
3637
+ Started GET "/smurfville" for 127.0.0.1 at 2013-08-13 11:07:57 +0200
3638
+ Processing by Smurfville::StyleguideController#colors as HTML
3639
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (4.3ms)
3640
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
3641
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
3642
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
3643
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
3644
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
3645
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
3646
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (36.1ms)
3647
+ Completed 200 OK in 248ms (Views: 151.7ms)
3648
+
3649
+
3650
+ Started GET "/assets/smurfville/application.css?body=1" for 127.0.0.1 at 2013-08-13 11:07:57 +0200
3651
+
3652
+
3653
+ Started GET "/smurfville/colors" for 127.0.0.1 at 2013-08-13 11:08:01 +0200
3654
+ Processing by Smurfville::StyleguideController#colors as HTML
3655
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
3656
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
3657
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
3658
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
3659
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
3660
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
3661
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
3662
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (26.8ms)
3663
+ Completed 200 OK in 46ms (Views: 33.5ms)
3664
+
3665
+
3666
+ Started GET "/assets/smurfville/application.css?body=1" for 127.0.0.1 at 2013-08-13 11:08:02 +0200
3667
+
3668
+
3669
+ Started GET "/smurfville/typography" for 127.0.0.1 at 2013-08-13 11:08:06 +0200
3670
+ Processing by Smurfville::StyleguideController#typography as HTML
3671
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_typography_classes.erb (0.6ms)
3672
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/typography.html.haml within layouts/smurfville/application (16.8ms)
3673
+ Completed 200 OK in 22ms (Views: 19.9ms)
3674
+
3675
+
3676
+ Started GET "/assets/smurfville/application.css?body=1" for 127.0.0.1 at 2013-08-13 11:08:06 +0200
@@ -228,3 +228,213 @@ Processing by Smurfville::StyleguideController#colors as HTML
228
228
  Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
229
229
  Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
230
230
  Completed 200 OK in 47ms (Views: 15.3ms)
231
+ ----------------------------------------
232
+ ColorVariablesTest: test_parse_sass_file
233
+ ----------------------------------------
234
+ ---------------------------------------------
235
+ ColorVariablesTest: test_parse_variable_usage
236
+ ---------------------------------------------
237
+ -------------------------------------------------------
238
+ ColorVariablesTest: test_print_variable_usage_count_for
239
+ -------------------------------------------------------
240
+ ---------------------------
241
+ NavigationTest: test_colors
242
+ ---------------------------
243
+ Started GET "/smurfville/colors" for 127.0.0.1 at 2013-08-13 11:08:22 +0200
244
+ Processing by Smurfville::StyleguideController#colors as HTML
245
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (2.2ms)
246
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
247
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
248
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
249
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
250
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
251
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
252
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (14.2ms)
253
+ Completed 200 OK in 116ms (Views: 52.3ms)
254
+ ------------------------------
255
+ NavigationTest: test_root_path
256
+ ------------------------------
257
+ Started GET "/smurfville" for 127.0.0.1 at 2013-08-13 11:08:22 +0200
258
+ Processing by Smurfville::StyleguideController#colors as HTML
259
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
260
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
261
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
262
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
263
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
264
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
265
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
266
+ Completed 200 OK in 43ms (Views: 12.0ms)
267
+ -------------------------------------------------------
268
+ Smurfville::StyleguideHelperTest: test_foreground_color
269
+ -------------------------------------------------------
270
+ --------------------------
271
+ SmurfvilleTest: test_truth
272
+ --------------------------
273
+ ----------------------------------------
274
+ ColorVariablesTest: test_parse_sass_file
275
+ ----------------------------------------
276
+ ---------------------------------------------
277
+ ColorVariablesTest: test_parse_variable_usage
278
+ ---------------------------------------------
279
+ -------------------------------------------------------
280
+ ColorVariablesTest: test_print_variable_usage_count_for
281
+ -------------------------------------------------------
282
+ ---------------------------
283
+ NavigationTest: test_colors
284
+ ---------------------------
285
+ Started GET "/smurfville/colors" for 127.0.0.1 at 2013-08-13 11:09:29 +0200
286
+ Processing by Smurfville::StyleguideController#colors as HTML
287
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (2.2ms)
288
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
289
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
290
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
291
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
292
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
293
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
294
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (15.0ms)
295
+ Completed 200 OK in 61ms (Views: 23.6ms)
296
+ ------------------------------
297
+ NavigationTest: test_root_path
298
+ ------------------------------
299
+ Started GET "/smurfville" for 127.0.0.1 at 2013-08-13 11:09:29 +0200
300
+ Processing by Smurfville::StyleguideController#colors as HTML
301
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
302
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
303
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
304
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
305
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
306
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
307
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
308
+ Completed 200 OK in 46ms (Views: 12.5ms)
309
+ -------------------------------------------------------
310
+ Smurfville::StyleguideHelperTest: test_foreground_color
311
+ -------------------------------------------------------
312
+ --------------------------
313
+ SmurfvilleTest: test_truth
314
+ --------------------------
315
+ ----------------------------------------
316
+ ColorVariablesTest: test_parse_sass_file
317
+ ----------------------------------------
318
+ ---------------------------------------------
319
+ ColorVariablesTest: test_parse_variable_usage
320
+ ---------------------------------------------
321
+ -------------------------------------------------------
322
+ ColorVariablesTest: test_print_variable_usage_count_for
323
+ -------------------------------------------------------
324
+ ---------------------------
325
+ NavigationTest: test_colors
326
+ ---------------------------
327
+ Started GET "/smurfville/colors" for 127.0.0.1 at 2013-08-13 11:10:37 +0200
328
+ Processing by Smurfville::StyleguideController#colors as HTML
329
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (6.9ms)
330
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
331
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.4ms)
332
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
333
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
334
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
335
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
336
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (25.6ms)
337
+ Completed 200 OK in 74ms (Views: 43.1ms)
338
+ ------------------------------
339
+ NavigationTest: test_root_path
340
+ ------------------------------
341
+ Started GET "/smurfville" for 127.0.0.1 at 2013-08-13 11:10:37 +0200
342
+ Processing by Smurfville::StyleguideController#colors as HTML
343
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
344
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
345
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
346
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
347
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
348
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
349
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
350
+ Completed 200 OK in 51ms (Views: 15.1ms)
351
+ -------------------------------------------------------
352
+ Smurfville::StyleguideHelperTest: test_foreground_color
353
+ -------------------------------------------------------
354
+ --------------------------
355
+ SmurfvilleTest: test_truth
356
+ --------------------------
357
+ ----------------------------------------
358
+ ColorVariablesTest: test_parse_sass_file
359
+ ----------------------------------------
360
+ ---------------------------------------------
361
+ ColorVariablesTest: test_parse_variable_usage
362
+ ---------------------------------------------
363
+ -------------------------------------------------------
364
+ ColorVariablesTest: test_print_variable_usage_count_for
365
+ -------------------------------------------------------
366
+ ---------------------------
367
+ NavigationTest: test_colors
368
+ ---------------------------
369
+ Started GET "/smurfville/colors" for 127.0.0.1 at 2013-08-13 11:11:05 +0200
370
+ Processing by Smurfville::StyleguideController#colors as HTML
371
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (5.8ms)
372
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
373
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
374
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
375
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
376
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
377
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
378
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (19.6ms)
379
+ Completed 200 OK in 66ms (Views: 29.0ms)
380
+ ------------------------------
381
+ NavigationTest: test_root_path
382
+ ------------------------------
383
+ Started GET "/smurfville" for 127.0.0.1 at 2013-08-13 11:11:05 +0200
384
+ Processing by Smurfville::StyleguideController#colors as HTML
385
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
386
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
387
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
388
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
389
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
390
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
391
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
392
+ Completed 200 OK in 34ms (Views: 3.6ms)
393
+ -------------------------------------------------------
394
+ Smurfville::StyleguideHelperTest: test_foreground_color
395
+ -------------------------------------------------------
396
+ --------------------------
397
+ SmurfvilleTest: test_truth
398
+ --------------------------
399
+ ----------------------------------------
400
+ ColorVariablesTest: test_parse_sass_file
401
+ ----------------------------------------
402
+ ---------------------------------------------
403
+ ColorVariablesTest: test_parse_variable_usage
404
+ ---------------------------------------------
405
+ -------------------------------------------------------
406
+ ColorVariablesTest: test_print_variable_usage_count_for
407
+ -------------------------------------------------------
408
+ ---------------------------
409
+ NavigationTest: test_colors
410
+ ---------------------------
411
+ Started GET "/smurfville/colors" for 127.0.0.1 at 2013-08-13 11:12:06 +0200
412
+ Processing by Smurfville::StyleguideController#colors as HTML
413
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (1.8ms)
414
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
415
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
416
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
417
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
418
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
419
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.1ms)
420
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/colors.html.haml within layouts/smurfville/application (12.5ms)
421
+ Completed 200 OK in 54ms (Views: 21.3ms)
422
+ ------------------------------
423
+ NavigationTest: test_root_path
424
+ ------------------------------
425
+ Started GET "/smurfville" for 127.0.0.1 at 2013-08-13 11:12:07 +0200
426
+ Processing by Smurfville::StyleguideController#colors as HTML
427
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
428
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
429
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.5ms)
430
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
431
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.3ms)
432
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
433
+ Rendered /home/jk/railslove/smurfville/app/views/smurfville/styleguide/_color_var.html.haml (0.2ms)
434
+ Completed 200 OK in 46ms (Views: 11.9ms)
435
+ -------------------------------------------------------
436
+ Smurfville::StyleguideHelperTest: test_foreground_color
437
+ -------------------------------------------------------
438
+ --------------------------
439
+ SmurfvilleTest: test_truth
440
+ --------------------------
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smurfville
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2013-02-17 00:00:00.000000000 Z
14
+ date: 2013-08-13 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: color
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirement: !ruby/object:Gem::Requirement
51
51
  none: false
52
52
  requirements:
53
- - - ~>
53
+ - - ! '>='
54
54
  - !ruby/object:Gem::Version
55
55
  version: '3.1'
56
56
  type: :runtime
@@ -58,7 +58,7 @@ dependencies:
58
58
  version_requirements: !ruby/object:Gem::Requirement
59
59
  none: false
60
60
  requirements:
61
- - - ~>
61
+ - - ! '>='
62
62
  - !ruby/object:Gem::Version
63
63
  version: '3.1'
64
64
  - !ruby/object:Gem::Dependency
@@ -129,7 +129,15 @@ files:
129
129
  - test/dummy/tmp/cache/assets/E93/8D0/sprockets%2F585cb1ceee30feaa7acf7b993f1fd6be
130
130
  - test/dummy/tmp/cache/assets/E44/290/sprockets%2F3eb5e7d41dbddceae0faa1b02185fa15
131
131
  - test/dummy/tmp/cache/assets/D21/AE0/sprockets%2Fa4b75eade53b1f02d320bc720513a645
132
+ - test/dummy/tmp/cache/assets/development/sprockets/6cd474670f7dd5f06041b6b25711eb0d
133
+ - test/dummy/tmp/cache/assets/development/sprockets/78ad329b32ade44bbea292b9e05f9728
134
+ - test/dummy/tmp/cache/assets/development/sprockets/c7707635524d769f850d0052fd2626b4
135
+ - test/dummy/tmp/cache/assets/development/sass/ed127188a8bde4a87bbd73f2def631bd6583f432/application.css.sassc
132
136
  - test/dummy/tmp/cache/assets/D73/630/sprockets%2F78ad329b32ade44bbea292b9e05f9728
137
+ - test/dummy/tmp/cache/assets/test/sprockets/6cd474670f7dd5f06041b6b25711eb0d
138
+ - test/dummy/tmp/cache/assets/test/sprockets/78ad329b32ade44bbea292b9e05f9728
139
+ - test/dummy/tmp/cache/assets/test/sprockets/c7707635524d769f850d0052fd2626b4
140
+ - test/dummy/tmp/cache/assets/test/sass/ed127188a8bde4a87bbd73f2def631bd6583f432/application.css.sassc
133
141
  - test/dummy/tmp/cache/assets/DC2/3F0/sprockets%2Fe83ce5c8393ea833ad2a2eab114bd82c
134
142
  - test/dummy/tmp/cache/assets/D05/E40/sprockets%2F6cd474670f7dd5f06041b6b25711eb0d
135
143
  - test/dummy/tmp/cache/assets/D9B/000/sprockets%2F77ae28c0bdfc6bac8bb08415fb456644
@@ -174,7 +182,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
174
182
  version: '0'
175
183
  segments:
176
184
  - 0
177
- hash: 1558584876731474371
185
+ hash: 1025808035885307875
178
186
  required_rubygems_version: !ruby/object:Gem::Requirement
179
187
  none: false
180
188
  requirements:
@@ -183,10 +191,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
191
  version: '0'
184
192
  segments:
185
193
  - 0
186
- hash: 1558584876731474371
194
+ hash: 1025808035885307875
187
195
  requirements: []
188
196
  rubyforge_project:
189
- rubygems_version: 1.8.24
197
+ rubygems_version: 1.8.25
190
198
  signing_key:
191
199
  specification_version: 3
192
200
  summary: ! 'Conventions and tools for: Scalable, Modular, reUsable Rails Frontends
@@ -213,7 +221,15 @@ test_files:
213
221
  - test/dummy/tmp/cache/assets/E93/8D0/sprockets%2F585cb1ceee30feaa7acf7b993f1fd6be
214
222
  - test/dummy/tmp/cache/assets/E44/290/sprockets%2F3eb5e7d41dbddceae0faa1b02185fa15
215
223
  - test/dummy/tmp/cache/assets/D21/AE0/sprockets%2Fa4b75eade53b1f02d320bc720513a645
224
+ - test/dummy/tmp/cache/assets/development/sprockets/6cd474670f7dd5f06041b6b25711eb0d
225
+ - test/dummy/tmp/cache/assets/development/sprockets/78ad329b32ade44bbea292b9e05f9728
226
+ - test/dummy/tmp/cache/assets/development/sprockets/c7707635524d769f850d0052fd2626b4
227
+ - test/dummy/tmp/cache/assets/development/sass/ed127188a8bde4a87bbd73f2def631bd6583f432/application.css.sassc
216
228
  - test/dummy/tmp/cache/assets/D73/630/sprockets%2F78ad329b32ade44bbea292b9e05f9728
229
+ - test/dummy/tmp/cache/assets/test/sprockets/6cd474670f7dd5f06041b6b25711eb0d
230
+ - test/dummy/tmp/cache/assets/test/sprockets/78ad329b32ade44bbea292b9e05f9728
231
+ - test/dummy/tmp/cache/assets/test/sprockets/c7707635524d769f850d0052fd2626b4
232
+ - test/dummy/tmp/cache/assets/test/sass/ed127188a8bde4a87bbd73f2def631bd6583f432/application.css.sassc
217
233
  - test/dummy/tmp/cache/assets/DC2/3F0/sprockets%2Fe83ce5c8393ea833ad2a2eab114bd82c
218
234
  - test/dummy/tmp/cache/assets/D05/E40/sprockets%2F6cd474670f7dd5f06041b6b25711eb0d
219
235
  - test/dummy/tmp/cache/assets/D9B/000/sprockets%2F77ae28c0bdfc6bac8bb08415fb456644