nil_to_chill 0.0.2 → 0.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.
- data/Gemfile +3 -0
- data/Guardfile +9 -0
- data/lib/nil_to_chill.rb +0 -2
- data/lib/nil_to_chill/version.rb +1 -1
- data/nil_to_chill.gemspec +1 -1
- data/spec/lib/nil_to_chill_spec.rb +9 -0
- data/spec/spec_helper.rb +5 -0
- metadata +19 -3
data/Gemfile
CHANGED
data/Guardfile
ADDED
data/lib/nil_to_chill.rb
CHANGED
data/lib/nil_to_chill/version.rb
CHANGED
data/nil_to_chill.gemspec
CHANGED
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nil_to_chill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,18 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2011-10-20 00:00:00.000000000Z
|
13
|
-
dependencies:
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: &70298105379640 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *70298105379640
|
14
25
|
description: Take your app from nil to chill in seven seconds or less
|
15
26
|
email:
|
16
27
|
- basscannondrop@gmail.com
|
@@ -21,11 +32,14 @@ files:
|
|
21
32
|
- .gitignore
|
22
33
|
- .rvmrc
|
23
34
|
- Gemfile
|
35
|
+
- Guardfile
|
24
36
|
- Rakefile
|
25
37
|
- lib/nil_to_chill.rb
|
26
38
|
- lib/nil_to_chill/version.rb
|
27
39
|
- lib/stunner_shades.rb
|
28
40
|
- nil_to_chill.gemspec
|
41
|
+
- spec/lib/nil_to_chill_spec.rb
|
42
|
+
- spec/spec_helper.rb
|
29
43
|
homepage: ''
|
30
44
|
licenses: []
|
31
45
|
post_install_message:
|
@@ -50,4 +64,6 @@ rubygems_version: 1.8.6
|
|
50
64
|
signing_key:
|
51
65
|
specification_version: 3
|
52
66
|
summary: Take your app from nil to chill in seven seconds or less
|
53
|
-
test_files:
|
67
|
+
test_files:
|
68
|
+
- spec/lib/nil_to_chill_spec.rb
|
69
|
+
- spec/spec_helper.rb
|