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 CHANGED
@@ -2,3 +2,6 @@ source "http://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in nil_to_chill.gemspec
4
4
  gemspec
5
+
6
+ gem 'guard'
7
+ gem 'guard-rspec'
data/Guardfile ADDED
@@ -0,0 +1,9 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard 'rspec', :version => 2 do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+ end
9
+
data/lib/nil_to_chill.rb CHANGED
@@ -1,8 +1,6 @@
1
1
  require "nil_to_chill/version"
2
- require "lib/stunner_shades"
3
2
 
4
3
  module NilToChill
5
- # Your code goes here...
6
4
  end
7
5
 
8
6
  def chill
@@ -1,3 +1,3 @@
1
1
  module NilToChill
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
data/nil_to_chill.gemspec CHANGED
@@ -19,6 +19,6 @@ Gem::Specification.new do |s|
19
19
  s.require_paths = ["lib"]
20
20
 
21
21
  # specify any dependencies here; for example:
22
- # s.add_development_dependency "rspec"
22
+ s.add_development_dependency "rspec"
23
23
  # s.add_runtime_dependency "rest-client"
24
24
  end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+
3
+ describe "NilToChill" do
4
+ context "all nill are now chill" do
5
+ it "should be chill" do
6
+ chill.should == nil
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ require 'rubygems'
2
+ require 'rspec'
3
+ require 'nil_to_chill'
4
+
5
+ $:.unshift File.expand_path('..', __FILE__)
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.2
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