nachos 0.0.4 → 0.0.5

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/Rakefile CHANGED
@@ -14,7 +14,7 @@ begin
14
14
  gem.add_dependency "octopussy"
15
15
  # may want to vendor this...could conflict with the manual install folks
16
16
  gem.add_dependency "git-hub", "1.4.1"
17
- gem.add_development_dependency "rspec", "~> 2.0.0.beta.12"
17
+ gem.add_development_dependency "rspec", "~> 2.4"
18
18
  gem.add_development_dependency "faker"
19
19
  gem.add_development_dependency "mocha"
20
20
  gem.add_development_dependency "fakeweb"
data/lib/nachos/main.rb CHANGED
@@ -34,7 +34,7 @@ Current configuration: #{config.display_config}]
34
34
  end
35
35
 
36
36
  def sync_repo(repo)
37
- git_url = repo.url.gsub("http", "git")
37
+ git_url = repo.url.gsub("https", "git")
38
38
  path = repo_path(repo)
39
39
  if repo_exists?(repo)
40
40
  chdir(path) do
@@ -1,3 +1,3 @@
1
1
  class Nachos
2
- VERSION = Version = "0.0.4"
2
+ VERSION = Version = "0.0.5"
3
3
  end
data/nachos.gemspec CHANGED
@@ -1,61 +1,59 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{nachos}
8
- s.version = "0.0.4"
8
+ s.version = "0.0.5"
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"]
12
- s.date = %q{2010-11-06}
12
+ s.date = %q{2011-01-07}
13
13
  s.default_executable = %q{nachos}
14
14
  s.description = %q{Because everyone loves Nachos!}
15
15
  s.email = %q{rsanheim@gmail.com}
16
16
  s.executables = ["nachos"]
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE",
19
- "README.markdown"
19
+ "README.markdown"
20
20
  ]
21
21
  s.files = [
22
22
  ".document",
23
- ".gitignore",
24
- ".rvmrc",
25
- "LICENSE",
26
- "README.markdown",
27
- "Rakefile",
28
- "bin/nachos",
29
- "features/nachos.feature",
30
- "features/step_definitions/nachos_steps.rb",
31
- "features/support/env.rb",
32
- "features/support/fakeweb/fakes.rb",
33
- "lib/nachos.rb",
34
- "lib/nachos/cli.rb",
35
- "lib/nachos/config.rb",
36
- "lib/nachos/github.rb",
37
- "lib/nachos/main.rb",
38
- "lib/nachos/version.rb",
39
- "nachos.gemspec",
40
- "spec/nachos/cli_spec.rb",
41
- "spec/nachos/config_spec.rb",
42
- "spec/nachos/github_spec.rb",
43
- "spec/nachos/main_spec.rb",
44
- "spec/nachos_spec.rb",
45
- "spec/spec_helper.rb"
23
+ ".rvmrc",
24
+ "LICENSE",
25
+ "README.markdown",
26
+ "Rakefile",
27
+ "bin/nachos",
28
+ "features/nachos.feature",
29
+ "features/step_definitions/nachos_steps.rb",
30
+ "features/support/env.rb",
31
+ "features/support/fakeweb/fakes.rb",
32
+ "lib/nachos.rb",
33
+ "lib/nachos/cli.rb",
34
+ "lib/nachos/config.rb",
35
+ "lib/nachos/github.rb",
36
+ "lib/nachos/main.rb",
37
+ "lib/nachos/version.rb",
38
+ "nachos.gemspec",
39
+ "spec/nachos/cli_spec.rb",
40
+ "spec/nachos/config_spec.rb",
41
+ "spec/nachos/github_spec.rb",
42
+ "spec/nachos/main_spec.rb",
43
+ "spec/nachos_spec.rb",
44
+ "spec/spec_helper.rb"
46
45
  ]
47
46
  s.homepage = %q{http://github.com/rsanheim/nachos}
48
- s.rdoc_options = ["--charset=UTF-8"]
49
47
  s.require_paths = ["lib"]
50
48
  s.rubygems_version = %q{1.3.7}
51
49
  s.summary = %q{Nachos - sync and stuff with Github}
52
50
  s.test_files = [
53
51
  "spec/nachos/cli_spec.rb",
54
- "spec/nachos/config_spec.rb",
55
- "spec/nachos/github_spec.rb",
56
- "spec/nachos/main_spec.rb",
57
- "spec/nachos_spec.rb",
58
- "spec/spec_helper.rb"
52
+ "spec/nachos/config_spec.rb",
53
+ "spec/nachos/github_spec.rb",
54
+ "spec/nachos/main_spec.rb",
55
+ "spec/nachos_spec.rb",
56
+ "spec/spec_helper.rb"
59
57
  ]
60
58
 
61
59
  if s.respond_to? :specification_version then
@@ -65,14 +63,14 @@ Gem::Specification.new do |s|
65
63
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
66
64
  s.add_runtime_dependency(%q<octopussy>, [">= 0"])
67
65
  s.add_runtime_dependency(%q<git-hub>, ["= 1.4.1"])
68
- s.add_development_dependency(%q<rspec>, ["~> 2.0.0.beta.12"])
66
+ s.add_development_dependency(%q<rspec>, ["~> 2.4"])
69
67
  s.add_development_dependency(%q<faker>, [">= 0"])
70
68
  s.add_development_dependency(%q<mocha>, [">= 0"])
71
69
  s.add_development_dependency(%q<fakeweb>, [">= 0"])
72
70
  else
73
71
  s.add_dependency(%q<octopussy>, [">= 0"])
74
72
  s.add_dependency(%q<git-hub>, ["= 1.4.1"])
75
- s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.12"])
73
+ s.add_dependency(%q<rspec>, ["~> 2.4"])
76
74
  s.add_dependency(%q<faker>, [">= 0"])
77
75
  s.add_dependency(%q<mocha>, [">= 0"])
78
76
  s.add_dependency(%q<fakeweb>, [">= 0"])
@@ -80,7 +78,7 @@ Gem::Specification.new do |s|
80
78
  else
81
79
  s.add_dependency(%q<octopussy>, [">= 0"])
82
80
  s.add_dependency(%q<git-hub>, ["= 1.4.1"])
83
- s.add_dependency(%q<rspec>, ["~> 2.0.0.beta.12"])
81
+ s.add_dependency(%q<rspec>, ["~> 2.4"])
84
82
  s.add_dependency(%q<faker>, [">= 0"])
85
83
  s.add_dependency(%q<mocha>, [">= 0"])
86
84
  s.add_dependency(%q<fakeweb>, [">= 0"])
data/spec/spec_helper.rb CHANGED
@@ -15,7 +15,7 @@ RSpec.configure do |config|
15
15
  config.formatter = :documentation
16
16
  config.color_enabled = true
17
17
  config.alias_example_to :fit, :focused => true
18
- config.filter_run :options => { :focused => true }
18
+ config.filter_run :focused => true
19
19
  config.run_all_when_everything_filtered = true
20
20
  end
21
21
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 4
9
- version: 0.0.4
8
+ - 5
9
+ version: 0.0.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Rob Sanheim
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-11-06 00:00:00 -04:00
17
+ date: 2011-01-07 00:00:00 -05:00
18
18
  default_executable: nachos
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -55,11 +55,8 @@ dependencies:
55
55
  - !ruby/object:Gem::Version
56
56
  segments:
57
57
  - 2
58
- - 0
59
- - 0
60
- - beta
61
- - 12
62
- version: 2.0.0.beta.12
58
+ - 4
59
+ version: "2.4"
63
60
  type: :development
64
61
  version_requirements: *id003
65
62
  - !ruby/object:Gem::Dependency
@@ -112,7 +109,6 @@ extra_rdoc_files:
112
109
  - README.markdown
113
110
  files:
114
111
  - .document
115
- - .gitignore
116
112
  - .rvmrc
117
113
  - LICENSE
118
114
  - README.markdown
@@ -140,8 +136,8 @@ homepage: http://github.com/rsanheim/nachos
140
136
  licenses: []
141
137
 
142
138
  post_install_message:
143
- rdoc_options:
144
- - --charset=UTF-8
139
+ rdoc_options: []
140
+
145
141
  require_paths:
146
142
  - lib
147
143
  required_ruby_version: !ruby/object:Gem::Requirement
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC