nightlight 0.0.1 → 0.0.2

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: f5e7d1152629e208b9d0ea11ab788b8c9569add9
4
- data.tar.gz: 07d1c0028a88ebcaf5be49bbe7a5fa9b431f0bca
3
+ metadata.gz: 1caf1cc8adbb6c0ea6d5188eeff9c1f03d245f7d
4
+ data.tar.gz: 8981ae37e69dfa27501f979f94c45d29791a303c
5
5
  SHA512:
6
- metadata.gz: 6bc362c658af258b64c31ce7e206e71d633a3d61c73e9106dbd5b6eb842c37a827d33dfe13aed17e3066f0a73aebbe962d085b3a35325d4e427a190059dbe56d
7
- data.tar.gz: 8f65234757a690c21cb157cf00f9e38a0846ff83feb9bd5e6461fc67f750031b647c64f3172462ebd877c26219798664bb0142eaa7c61ba9a1bcf943e6229484
6
+ metadata.gz: ecf5aa3b1da5be86c50855c377cdf0bb2e52634ffd81280862448f10b92a59c77e98abebbb785d5c51f7a10c6664d63ee32d4cadec2a95cd2e591bbf966bd69f
7
+ data.tar.gz: 62767315fe6f34688dadeb5fc5b002f3a06d3ba525c2c051fe318002aa2fecf6dcad230b0c88cbf83fd56ea9c3a4edd2056e7bdc04a9c639d3f0124abaa39b07
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
+ /Gemfile.lock
3
4
  /_yardoc/
4
5
  /coverage/
5
6
  /doc/
data/README.md CHANGED
@@ -4,6 +4,8 @@ Shed light on the dark corners of your app
4
4
 
5
5
  Nightlight helps you make sure all pages in your app are getting the love and attention they deserve
6
6
 
7
+ Inspired by [Cap Watkins](https://twitter.com/cap)' [The Dark Corners of Your UI](http://blog.capwatkins.com/dark-corners)
8
+
7
9
  ## Installation
8
10
 
9
11
  Add this line to your application's Gemfile:
@@ -54,6 +56,12 @@ authenticate :user, lambda{|user| user.admin? } do
54
56
  end
55
57
  ```
56
58
 
59
+ ### Credit
60
+
61
+ Inspired by:
62
+ - [Cap Watkins](https://twitter.com/cap)' [The Dark Corners of Your UI](http://blog.capwatkins.com/dark-corners)
63
+ - [@ankane](https://github.com/ankane)'s [ankane/blazer](https://github.com/ankane/blazer)
64
+
57
65
  ## Contributing
58
66
 
59
67
  1. Fork it ( https://github.com/bonsaiben/nightlight/fork )
@@ -1,3 +1,3 @@
1
1
  module Nightlight
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nightlight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Sullivan
@@ -61,7 +61,6 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - .gitignore
63
63
  - Gemfile
64
- - Gemfile.lock
65
64
  - LICENSE.txt
66
65
  - README.md
67
66
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,112 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- nightlight (0.0.1)
5
- rails
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.2.0)
11
- actionpack (= 4.2.0)
12
- actionview (= 4.2.0)
13
- activejob (= 4.2.0)
14
- mail (~> 2.5, >= 2.5.4)
15
- rails-dom-testing (~> 1.0, >= 1.0.5)
16
- actionpack (4.2.0)
17
- actionview (= 4.2.0)
18
- activesupport (= 4.2.0)
19
- rack (~> 1.6.0)
20
- rack-test (~> 0.6.2)
21
- rails-dom-testing (~> 1.0, >= 1.0.5)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
23
- actionview (4.2.0)
24
- activesupport (= 4.2.0)
25
- builder (~> 3.1)
26
- erubis (~> 2.7.0)
27
- rails-dom-testing (~> 1.0, >= 1.0.5)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
29
- activejob (4.2.0)
30
- activesupport (= 4.2.0)
31
- globalid (>= 0.3.0)
32
- activemodel (4.2.0)
33
- activesupport (= 4.2.0)
34
- builder (~> 3.1)
35
- activerecord (4.2.0)
36
- activemodel (= 4.2.0)
37
- activesupport (= 4.2.0)
38
- arel (~> 6.0)
39
- activesupport (4.2.0)
40
- i18n (~> 0.7)
41
- json (~> 1.7, >= 1.7.7)
42
- minitest (~> 5.1)
43
- thread_safe (~> 0.3, >= 0.3.4)
44
- tzinfo (~> 1.1)
45
- arel (6.0.0)
46
- builder (3.2.2)
47
- erubis (2.7.0)
48
- globalid (0.3.0)
49
- activesupport (>= 4.1.0)
50
- hike (1.2.3)
51
- i18n (0.7.0)
52
- json (1.8.2)
53
- loofah (2.0.1)
54
- nokogiri (>= 1.5.9)
55
- mail (2.6.3)
56
- mime-types (>= 1.16, < 3)
57
- mime-types (2.4.3)
58
- mini_portile (0.6.2)
59
- minitest (5.5.1)
60
- multi_json (1.10.1)
61
- nokogiri (1.6.5)
62
- mini_portile (~> 0.6.0)
63
- rack (1.6.0)
64
- rack-test (0.6.3)
65
- rack (>= 1.0)
66
- rails (4.2.0)
67
- actionmailer (= 4.2.0)
68
- actionpack (= 4.2.0)
69
- actionview (= 4.2.0)
70
- activejob (= 4.2.0)
71
- activemodel (= 4.2.0)
72
- activerecord (= 4.2.0)
73
- activesupport (= 4.2.0)
74
- bundler (>= 1.3.0, < 2.0)
75
- railties (= 4.2.0)
76
- sprockets-rails
77
- rails-deprecated_sanitizer (1.0.3)
78
- activesupport (>= 4.2.0.alpha)
79
- rails-dom-testing (1.0.5)
80
- activesupport (>= 4.2.0.beta, < 5.0)
81
- nokogiri (~> 1.6.0)
82
- rails-deprecated_sanitizer (>= 1.0.1)
83
- rails-html-sanitizer (1.0.1)
84
- loofah (~> 2.0)
85
- railties (4.2.0)
86
- actionpack (= 4.2.0)
87
- activesupport (= 4.2.0)
88
- rake (>= 0.8.7)
89
- thor (>= 0.18.1, < 2.0)
90
- rake (10.4.2)
91
- sprockets (2.12.3)
92
- hike (~> 1.2)
93
- multi_json (~> 1.0)
94
- rack (~> 1.0)
95
- tilt (~> 1.1, != 1.3.0)
96
- sprockets-rails (2.2.2)
97
- actionpack (>= 3.0)
98
- activesupport (>= 3.0)
99
- sprockets (>= 2.8, < 4.0)
100
- thor (0.19.1)
101
- thread_safe (0.3.4)
102
- tilt (1.4.1)
103
- tzinfo (1.2.2)
104
- thread_safe (~> 0.1)
105
-
106
- PLATFORMS
107
- ruby
108
-
109
- DEPENDENCIES
110
- bundler (~> 1.7)
111
- nightlight!
112
- rake (~> 10.0)