working_man 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
4
+ - 1.9.3
data/README.md CHANGED
@@ -3,6 +3,11 @@
3
3
  WorkingMan is here to help you get started with your work day. He opens the
4
4
  applications you need as well as any URLs.
5
5
 
6
+ ## CI Status
7
+
8
+ [![Build Status](https://secure.travis-ci.org/[emachnic]/[working_man].png)](http://travis-ci.org/[emachnic]/[working_man])
9
+
10
+
6
11
  ## Installation
7
12
 
8
13
  Install like normal in your system then start/stop as needed.
@@ -1,7 +1,7 @@
1
- Feature: My bootstrapped app kinda works
2
- In order to get going on coding my awesome app
3
- I want to have aruba and cucumber setup
4
- So I don't have to do it myself
1
+ Feature: WorkingMan actually works
2
+ In order to make it easy to start and stop work each day
3
+ I want to have WorkingMan automatically open and close my apps
4
+ So that I can be lazy
5
5
 
6
6
  Scenario: App just runs
7
7
  When I get help for "working_man"
@@ -21,7 +21,6 @@ Scenario: Start work successfully with app and url
21
21
  urls:
22
22
  - 'http://www.google.com'
23
23
  """
24
- Then the file "/tmp/fakehome/.working_man.yml" should contain "Twitter"
25
24
  And I run `working_man start`
26
25
  Then the output should contain "Work hard today"
27
26
  And the exit status should be 0
@@ -33,7 +32,6 @@ Scenario: Start work successfully with app and no url
33
32
  - 'Twitter'
34
33
  urls:
35
34
  """
36
- Then the file "/tmp/fakehome/.working_man.yml" should contain "Twitter"
37
35
  And I run `working_man start`
38
36
  Then the output should contain "Work hard today"
39
37
  And the exit status should be 0
@@ -45,7 +43,6 @@ Scenario: Start work unsuccessfully without any apps
45
43
  urls:
46
44
  - 'http://www.google.com'
47
45
  """
48
- Then the file "/tmp/fakehome/.working_man.yml" should contain "http://www.google.com"
49
46
  And I run `working_man start`
50
47
  Then the output should contain "No applications in configuration"
51
48
  And the exit status should be 2
@@ -1,3 +1,3 @@
1
1
  module WorkingMan
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
data/working_man.gemspec CHANGED
@@ -14,8 +14,8 @@ Gem::Specification.new do |gem|
14
14
  gem.name = "working_man"
15
15
  gem.require_paths = ["lib"]
16
16
  gem.version = WorkingMan::VERSION
17
- gem.add_development_dependency('rdoc')
18
- gem.add_development_dependency('rake', '~> 0.9.2')
17
+ gem.add_development_dependency 'rdoc'
18
+ gem.add_development_dependency 'rake', '~> 0.9.2'
19
19
  gem.add_development_dependency 'aruba', '~> 0.4.11'
20
- gem.add_dependency('methadone', '~>1.0.0.rc4')
20
+ gem.add_dependency 'methadone', '~>1.0.0.rc4'
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: working_man
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-04 00:00:00.000000000 Z
12
+ date: 2012-04-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rdoc
@@ -85,6 +85,7 @@ extra_rdoc_files: []
85
85
  files:
86
86
  - .gitignore
87
87
  - .rspec
88
+ - .travis.yml
88
89
  - Gemfile
89
90
  - Gemfile.lock
90
91
  - LICENSE
@@ -97,8 +98,6 @@ files:
97
98
  - lib/working_man.rb
98
99
  - lib/working_man/actions.rb
99
100
  - lib/working_man/version.rb
100
- - spec/lib/working_man_spec.rb
101
- - spec/spec_helper.rb
102
101
  - working_man.gemspec
103
102
  homepage: http://emachnic.github.com/working_man
104
103
  licenses: []
@@ -127,5 +126,3 @@ summary: Start/stop your work apps for the day
127
126
  test_files:
128
127
  - features/support/env.rb
129
128
  - features/working_man.feature
130
- - spec/lib/working_man_spec.rb
131
- - spec/spec_helper.rb
@@ -1,5 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe WorkingMan do
4
-
5
- end
data/spec/spec_helper.rb DELETED
@@ -1 +0,0 @@
1
- require 'working_man'