splittingred 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f20d07a0fa7e3139a88487b99c0fa70920aa6e58
4
- data.tar.gz: 3ba920987576a26910b81cc6a58b95ff8ab3a9db
3
+ metadata.gz: 1c46754b7f005019cf597427b3106f6dfbf31cbf
4
+ data.tar.gz: 50e327d1a5b579dd8d4fc60932ddb0b7eba84b4f
5
5
  SHA512:
6
- metadata.gz: c6990f9c95e0fe24fdaaebb17edfd559ac9623dedc3eddbad114f43e71258433af559be08248d9ca9776dc8e4cde090ef7c500d0d6c2a6058a93360337fd212a
7
- data.tar.gz: a5b264a324eb5c199df09eb1e3cb244dfa5dfd4b40793c4a9a6f2b39af4f0ae836075da22a6de42f27ae097164bbd13c4cf94ea6426c8d07f18b04f79a91ec96
6
+ metadata.gz: 8c4877041062656ed8ece703eab720629be3dbd8f49673ae49d612b9bd7c59e4f1034e629b40b90ab0e62ac4080a55a87852639a69bf66d9c4dfb31e6b8b2d7b
7
+ data.tar.gz: 48cc36a661e32ba6c5e054d65c8b8658d5ad0dba31bf4c06f20df3b78aa44b75d7f33eb8753e84fdd3a2191c8038bc05aefa1a3fa19e91e9c3113ce3abf6d43b
data/.gitignore CHANGED
@@ -4,6 +4,7 @@
4
4
  nbproject
5
5
  .idea
6
6
  .DS_Store
7
+ .yardoc
7
8
 
8
9
  # log stuff
9
10
  log/*.log
@@ -0,0 +1 @@
1
+ --no-private --protected lib/**/*.rb - README LICENSE.txt
@@ -0,0 +1,5 @@
1
+ guard 'rspec', :version => 2, :cli => '--format documentation' do
2
+ watch(%r{^spec/.+_spec\.rb$})
3
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4
+ watch('spec/spec_helper.rb') { "spec/" }
5
+ end
data/README.md CHANGED
@@ -10,27 +10,28 @@ Add this line to your application's Gemfile:
10
10
 
11
11
  And then execute:
12
12
 
13
- $ bundle
13
+ bundle
14
14
 
15
15
  Or install it yourself as:
16
16
 
17
- $ gem install splittingred
17
+ gem install splittingred
18
18
 
19
19
  ## Usage
20
20
 
21
- $ rake splittingred
21
+ rake splittingred
22
22
 
23
23
  ### Running Standalone
24
24
 
25
25
  To load standalone, rather than in an application, first install the gem, then create a Rakefile somewhere, like so:
26
26
 
27
- $ nano Rakefile
27
+ nano Rakefile
28
28
 
29
29
  In that Rakefile place:
30
30
 
31
+ require 'rubygems'
31
32
  require 'splittingred'
32
33
 
33
34
  Then from a Terminal type:
34
35
 
35
- $ irb
36
- `rake splittingred`
36
+ irb
37
+ > `rake splittingred`
@@ -1,5 +1,6 @@
1
1
  require 'launchy'
2
2
 
3
+ # Rake tasks for launching the resume
3
4
  namespace :splittingred do
4
5
  desc 'Launch my personal website, GitHub page, Twitter profile, LinkedIn profile and resume.'
5
6
  task :all => [:website,:github,:twitter,:linkedin,:resume]
@@ -1,3 +1,5 @@
1
+ # @author Shaun McCormick
1
2
  module Splittingred
2
- VERSION = '0.1.3'
3
+ # The version of my resume app
4
+ VERSION = '0.2.0'
3
5
  end
@@ -1,7 +1,10 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe Splittingred do
4
+ #
5
+ # Ensure version is reported correctly
6
+ #
4
7
  it 'version check' do
5
- Splittingred::VERSION.should eq('0.1.3')
8
+ Splittingred::VERSION.should eq('0.2.0')
6
9
  end
7
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: splittingred
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shaun McCormick
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-19 00:00:00.000000000 Z
11
+ date: 2013-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: launchy
@@ -75,7 +75,9 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - .gitignore
77
77
  - .rspec
78
+ - .yardopts
78
79
  - Gemfile
80
+ - Guardfile
79
81
  - LICENSE.txt
80
82
  - README.md
81
83
  - Rakefile