runcoderun 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/README.markdown +27 -14
  2. data/Rakefile +4 -1
  3. data/runcoderun.gemspec +10 -1
  4. data/version.yml +1 -1
  5. metadata +32 -3
@@ -4,40 +4,53 @@
4
4
  | | | |_| | | | | (_| (_) | (_| | __/ | | |_| | | | |
5
5
  |_| \__,_|_| |_|\___\___/ \__,_|\___|_| \__,_|_| |_|
6
6
 
7
-
7
+ ( the gem )
8
8
 
9
9
  RunCodeRun Gem
10
10
  ==============
11
11
 
12
12
  Hook up [RunCodeRun](http://runcoderun.com) builds from your command line.
13
13
 
14
- Right now we just support open:
14
+ Install:
15
+
16
+ gem install runcoderun
17
+
18
+ Usage:
19
+
20
+ cd [your-runcoderun-enabled-project]
21
+ runcoderun [command] [options]
22
+ or
23
+ rcr [command] [options]
15
24
 
16
- $ git clone it://github.com/floehopper/mocha.git
25
+ Right now we just support open. Open opens up your project homepage on RunCodeRun in your default browser.
26
+ Try it out:
27
+
28
+ $ git clone git://github.com/floehopper/mocha.git
17
29
  $ cd mocha
18
30
  $ rcr open # opens http://runcoderun.com/floehopper/mocha in your default browser
19
31
  $ runcoderun open # if you like to type more
20
32
 
33
+ ## TODOs
34
+
35
+ lots and lots - patches welcome!
36
+
37
+ * project status
38
+ * build status
39
+ * rebuild
40
+ * grabbing latest build output
41
+
21
42
  ## Note on Patches/Pull Requests
22
43
 
23
44
  * Fork the project.
24
45
  * Make your feature addition or bug fix.
25
- * Add tests for it. This is important so I don't break it in a
26
- future version unintentionally.
46
+ * Add tests for your change.
47
+ * Push and verify the build runs on RunCodeRun.
48
+ Check out the mainline build [here](http://runcoderun.com/rsanheim/runcoderun-gem)
27
49
  * Commit, do not mess with rakefile, version, or history.
28
50
  (if you want to have your own version, that is fine but
29
51
  bump version in a commit by itself I can ignore when I pull)
30
52
  * Send me a pull request. Bonus points for topic branches.
31
53
 
32
- ## Todos
33
-
34
- lots and lots - patches welcome!
35
-
36
- * project status
37
- * build status
38
- * rebuild
39
- * grabbing latest build output
40
-
41
54
  ## Copyright
42
55
 
43
56
  Copyright (c) 2009 Rob Sanheim. See LICENSE for details.
data/Rakefile CHANGED
@@ -9,6 +9,9 @@ begin
9
9
  gem.email = "rsanheim@gmail.com"
10
10
  gem.homepage = "http://github.com/rsanheim/runcoderun-gem"
11
11
  gem.authors = ["Rob Sanheim"]
12
+ gem.add_dependency "launchy"
13
+ gem.add_development_dependency "mocha"
14
+ gem.add_development_dependency "micronaut"
12
15
  gem.rubyforge_project = 'thinkrelevance'
13
16
  end
14
17
  Jeweler::RubyforgeTasks.new do |rubyforge|
@@ -41,7 +44,7 @@ end
41
44
 
42
45
  task :default => :examples
43
46
 
44
- task :release => ["examples", "rubyforge:release"]
47
+ task :release => ["examples"]
45
48
 
46
49
  require 'rake/rdoctask'
47
50
  Rake::RDocTask.new do |rdoc|
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{runcoderun}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rob Sanheim"]
@@ -51,8 +51,17 @@ Gem::Specification.new do |s|
51
51
  s.specification_version = 3
52
52
 
53
53
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
54
+ s.add_runtime_dependency(%q<launchy>, [">= 0"])
55
+ s.add_development_dependency(%q<mocha>, [">= 0"])
56
+ s.add_development_dependency(%q<micronaut>, [">= 0"])
54
57
  else
58
+ s.add_dependency(%q<launchy>, [">= 0"])
59
+ s.add_dependency(%q<mocha>, [">= 0"])
60
+ s.add_dependency(%q<micronaut>, [">= 0"])
55
61
  end
56
62
  else
63
+ s.add_dependency(%q<launchy>, [">= 0"])
64
+ s.add_dependency(%q<mocha>, [">= 0"])
65
+ s.add_dependency(%q<micronaut>, [">= 0"])
57
66
  end
58
67
  end
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 2
4
- :patch: 1
4
+ :patch: 2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runcoderun
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Sanheim
@@ -11,8 +11,37 @@ cert_chain: []
11
11
 
12
12
  date: 2009-09-29 00:00:00 -04:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: launchy
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: mocha
27
+ type: :development
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: "0"
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: micronaut
37
+ type: :development
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: "0"
44
+ version:
16
45
  description: runcoderun command line gem
17
46
  email: rsanheim@gmail.com
18
47
  executables: