engage 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  pkg/*
2
2
  *.gem
3
3
  .bundle
4
+ Gemfile.lock
data/lib/engage/runner.rb CHANGED
@@ -6,7 +6,7 @@ module Engage
6
6
  class_option :source, :type => :string, :desc => "Adds the given source to the user list."
7
7
 
8
8
  def self.banner
9
- "USAGE: engage [project] [options]"
9
+ "USAGE: engage [project] [--source SOURCE]"
10
10
  end
11
11
 
12
12
  def check_parameters
@@ -76,7 +76,7 @@ module Engage
76
76
  end
77
77
 
78
78
  def rubyversion
79
- `#{ENV["HOME"]}/.rvm/bin/rvm-prompt v`.strip
79
+ `rvm-prompt v`.strip
80
80
  end
81
81
 
82
82
  def selected_ruby
@@ -1,3 +1,3 @@
1
1
  module Engage
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engage
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lucas Mazza
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-21 00:00:00 -02:00
18
+ date: 2010-12-26 00:00:00 -02:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -89,7 +89,6 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - .gitignore
91
91
  - Gemfile
92
- - Gemfile.lock
93
92
  - README.markdown
94
93
  - Rakefile
95
94
  - bin/engage
data/Gemfile.lock DELETED
@@ -1,30 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- engage (0.0.5)
5
- thor (~> 0.14)
6
-
7
- GEM
8
- remote: http://rubygems.org/
9
- specs:
10
- diff-lcs (1.1.2)
11
- fakefs (0.3.1)
12
- rspec (2.3.0)
13
- rspec-core (~> 2.3.0)
14
- rspec-expectations (~> 2.3.0)
15
- rspec-mocks (~> 2.3.0)
16
- rspec-core (2.3.1)
17
- rspec-expectations (2.3.0)
18
- diff-lcs (~> 1.1.2)
19
- rspec-mocks (2.3.0)
20
- thor (0.14.6)
21
-
22
- PLATFORMS
23
- ruby
24
-
25
- DEPENDENCIES
26
- bundler (~> 1.0)
27
- engage!
28
- fakefs
29
- rspec (~> 2.3)
30
- thor (~> 0.14)