cider 0.1.7 → 0.1.8
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 +2 -4
- metadata +10 -45
- data/bin/cider +0 -38
data/Rakefile
CHANGED
@@ -3,7 +3,7 @@ require 'rubygems/specification'
|
|
3
3
|
require 'bundler'
|
4
4
|
|
5
5
|
GEM = "cider"
|
6
|
-
GEM_VERSION = "0.1.
|
6
|
+
GEM_VERSION = "0.1.8"
|
7
7
|
AUTHOR = "Corey Donohoe"
|
8
8
|
EMAIL = "atmos@atmos.org"
|
9
9
|
HOMEPAGE = "http://github.com/atmos/cider"
|
@@ -21,14 +21,12 @@ spec = Gem::Specification.new do |s|
|
|
21
21
|
s.email = EMAIL
|
22
22
|
s.homepage = HOMEPAGE
|
23
23
|
|
24
|
-
bundle = Bundler::Definition.
|
24
|
+
bundle = Bundler::Definition.build('Gemfile', 'Gemfile.lock', { })
|
25
25
|
bundle.dependencies.each do |dep|
|
26
26
|
next unless dep.groups.include?(:runtime)
|
27
27
|
s.add_dependency(dep.name, dep.version_requirements.to_s)
|
28
28
|
end
|
29
29
|
|
30
|
-
s.bindir = "bin"
|
31
|
-
s.executables = %w( cider )
|
32
30
|
s.require_path = 'lib'
|
33
31
|
s.files = %w(LICENSE README.md Rakefile) + Dir.glob("{lib}/**/*")
|
34
32
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 8
|
10
|
+
version: 0.1.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Corey Donohoe
|
@@ -15,61 +15,27 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-08-
|
18
|
+
date: 2010-08-31 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
-
prerelease: false
|
23
22
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
24
23
|
none: false
|
25
24
|
requirements:
|
26
|
-
- -
|
25
|
+
- - ">="
|
27
26
|
- !ruby/object:Gem::Version
|
28
|
-
hash:
|
27
|
+
hash: 3
|
29
28
|
segments:
|
30
29
|
- 0
|
31
|
-
|
32
|
-
- 32
|
33
|
-
version: 0.1.32
|
30
|
+
version: "0"
|
34
31
|
requirement: *id001
|
35
32
|
type: :runtime
|
36
|
-
name:
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
prerelease: false
|
39
|
-
version_requirements: &id002 !ruby/object:Gem::Requirement
|
40
|
-
none: false
|
41
|
-
requirements:
|
42
|
-
- - ~>
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
hash: 43
|
45
|
-
segments:
|
46
|
-
- 0
|
47
|
-
- 9
|
48
|
-
- 8
|
49
|
-
version: 0.9.8
|
50
|
-
requirement: *id002
|
51
|
-
type: :runtime
|
52
|
-
name: chef
|
53
|
-
- !ruby/object:Gem::Dependency
|
33
|
+
name: cinderella
|
54
34
|
prerelease: false
|
55
|
-
version_requirements: &id003 !ruby/object:Gem::Requirement
|
56
|
-
none: false
|
57
|
-
requirements:
|
58
|
-
- - "="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
hash: 3
|
61
|
-
segments:
|
62
|
-
- 1
|
63
|
-
- 4
|
64
|
-
- 2
|
65
|
-
version: 1.4.2
|
66
|
-
requirement: *id003
|
67
|
-
type: :runtime
|
68
|
-
name: json
|
69
35
|
description: The development environment you never wanted to manage alone
|
70
36
|
email: atmos@atmos.org
|
71
|
-
executables:
|
72
|
-
|
37
|
+
executables: []
|
38
|
+
|
73
39
|
extensions: []
|
74
40
|
|
75
41
|
extra_rdoc_files:
|
@@ -80,7 +46,6 @@ files:
|
|
80
46
|
- Rakefile
|
81
47
|
- lib/cider/solo.rb
|
82
48
|
- lib/cider.rb
|
83
|
-
- bin/cider
|
84
49
|
has_rdoc: true
|
85
50
|
homepage: http://github.com/atmos/cider
|
86
51
|
licenses: []
|
data/bin/cider
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "rubygems"
|
4
|
-
require "cider"
|
5
|
-
require "optparse"
|
6
|
-
|
7
|
-
ENV['HOME'] ||= '/Users/bofh'
|
8
|
-
ENV['USER'] ||= 'bofh'
|
9
|
-
ENV['EMAIL'] ||= 'noreploy@gmail.com'
|
10
|
-
ENV['EDITOR'] ||= 'vim'
|
11
|
-
ENV['FULLNAME'] ||= 'Marlon Brando'
|
12
|
-
|
13
|
-
RECOMMENDED_LLVM = 2206
|
14
|
-
MACOS_FULL_VERSION = `/usr/bin/sw_vers -productVersion`.chomp
|
15
|
-
MACOS_VERSION = /(10\.\d+)(\.\d+)?/.match(MACOS_FULL_VERSION).captures.first.to_f
|
16
|
-
|
17
|
-
if MACOS_VERSION >= 10.6
|
18
|
-
begin
|
19
|
-
xcode_path = `/usr/bin/xcode-select -print-path`.chomp
|
20
|
-
exit(1) if xcode_path.empty?
|
21
|
-
if `#{xcode_path}/usr/bin/llvm-gcc-4.2 -v 2>&1` =~ /LLVM build (\d{4,})/
|
22
|
-
if $1.to_i < RECOMMENDED_LLVM
|
23
|
-
$stderr.puts "You should really upgrade your xcode install"
|
24
|
-
end
|
25
|
-
end
|
26
|
-
rescue
|
27
|
-
$stderr.puts "You need xcode for this to work :\\"
|
28
|
-
exit(1)
|
29
|
-
end
|
30
|
-
else
|
31
|
-
$stderr.puts "You should really upgrade to snow leopard"
|
32
|
-
$stderr.puts "Make sure you have xcode installed and cross your fingers"
|
33
|
-
$stderr.puts "I've seen it work on leopard though..."
|
34
|
-
end
|
35
|
-
|
36
|
-
Cider::Runner.run
|
37
|
-
|
38
|
-
# vim:ft=ruby
|