callsite 0.0.6 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -1
- data/LICENSE.txt +7 -0
- data/Rakefile +6 -4
- data/callsite.gemspec +5 -6
- data/lib/callsite/version.rb +1 -1
- data/spec/load_path_find_spec.rb +1 -1
- metadata +54 -78
- data/Gemfile.lock +0 -19
data/.gitignore
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
pkg
|
1
|
+
pkg
|
2
|
+
Gemfile.lock
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2011 Joshua Hull
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ namespace(:spec) do
|
|
6
6
|
Spec::Rake::SpecTask.new(:dirge) do |t|
|
7
7
|
t.spec_opts ||= []
|
8
8
|
t.spec_opts << "-rubygems"
|
9
|
-
t.spec_opts << '-
|
9
|
+
t.spec_opts << '-r./lib/dirge'
|
10
10
|
t.spec_opts << "--options" << "spec/spec.opts"
|
11
11
|
t.spec_files = FileList['spec/**/dirge_spec.rb']
|
12
12
|
end
|
@@ -14,7 +14,7 @@ namespace(:spec) do
|
|
14
14
|
Spec::Rake::SpecTask.new(:load_path_find) do |t|
|
15
15
|
t.spec_opts ||= []
|
16
16
|
t.spec_opts << "-rubygems"
|
17
|
-
t.spec_opts << '-
|
17
|
+
t.spec_opts << '-r./lib/load_path_find'
|
18
18
|
t.spec_opts << "--options" << "spec/spec.opts"
|
19
19
|
t.spec_files = FileList['spec/**/load_path_find_spec.rb']
|
20
20
|
end
|
@@ -22,7 +22,7 @@ namespace(:spec) do
|
|
22
22
|
Spec::Rake::SpecTask.new(:callsite) do |t|
|
23
23
|
t.spec_opts ||= []
|
24
24
|
t.spec_opts << "-rubygems"
|
25
|
-
t.spec_opts << '-
|
25
|
+
t.spec_opts << '-r./lib/load_path_find'
|
26
26
|
t.spec_opts << "--options" << "spec/spec.opts"
|
27
27
|
t.spec_files = FileList['spec/**/callsite_spec.rb']
|
28
28
|
end
|
@@ -30,4 +30,6 @@ namespace(:spec) do
|
|
30
30
|
end
|
31
31
|
|
32
32
|
require 'bundler'
|
33
|
-
Bundler::GemHelper.install_tasks
|
33
|
+
Bundler::GemHelper.install_tasks
|
34
|
+
|
35
|
+
task :default => :spec
|
data/callsite.gemspec
CHANGED
@@ -5,10 +5,7 @@ require File.join(File.dirname(__FILE__), 'lib', 'callsite', 'version')
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = %q{callsite}
|
7
7
|
s.version = Callsite::VERSION
|
8
|
-
|
9
|
-
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
10
8
|
s.authors = ["Joshua Hull"]
|
11
|
-
s.date = %q{2010-07-22}
|
12
9
|
s.description = %q{Caller/backtrace parser with some useful utilities for manipulating the load path, and doing other relative things.}
|
13
10
|
s.email = %q{joshbuddy@gmail.com}
|
14
11
|
s.extra_rdoc_files = [
|
@@ -20,10 +17,12 @@ Gem::Specification.new do |s|
|
|
20
17
|
s.require_paths = ["lib"]
|
21
18
|
s.rubygems_version = %q{1.3.5}
|
22
19
|
s.summary = %q{Caller/backtrace parser with some useful utilities for manipulating the load path, and doing other relative things.}
|
20
|
+
s.license = "MIT"
|
21
|
+
|
23
22
|
s.test_files = `git ls-files`.split("\n").select{|f| f[/^spec/]}
|
24
23
|
|
25
|
-
s.
|
26
|
-
s.add_development_dependency 'rake',
|
27
|
-
s.add_development_dependency 'rspec',
|
24
|
+
s.add_development_dependency 'bundler', '~> 1.0.0'
|
25
|
+
s.add_development_dependency 'rake', '~> 0.8.7'
|
26
|
+
s.add_development_dependency 'rspec', '~> 1.3.0'
|
28
27
|
end
|
29
28
|
|
data/lib/callsite/version.rb
CHANGED
data/spec/load_path_find_spec.rb
CHANGED
metadata
CHANGED
@@ -1,83 +1,60 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: callsite
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.11
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 6
|
10
|
-
version: 0.0.6
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Joshua Hull
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
prerelease: false
|
23
|
-
version_requirements: &id001 !ruby/object:Gem::Requirement
|
12
|
+
date: 2011-11-10 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: &70286557932560 !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
18
|
+
requirements:
|
26
19
|
- - ~>
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
hash: 23
|
29
|
-
segments:
|
30
|
-
- 1
|
31
|
-
- 0
|
32
|
-
- 0
|
20
|
+
- !ruby/object:Gem::Version
|
33
21
|
version: 1.0.0
|
34
|
-
|
35
|
-
name: bundler
|
36
|
-
type: :runtime
|
37
|
-
- !ruby/object:Gem::Dependency
|
22
|
+
type: :development
|
38
23
|
prerelease: false
|
39
|
-
version_requirements:
|
24
|
+
version_requirements: *70286557932560
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: rake
|
27
|
+
requirement: &70286557932060 !ruby/object:Gem::Requirement
|
40
28
|
none: false
|
41
|
-
requirements:
|
42
|
-
- -
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
hash: 49
|
45
|
-
segments:
|
46
|
-
- 0
|
47
|
-
- 8
|
48
|
-
- 7
|
29
|
+
requirements:
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
49
32
|
version: 0.8.7
|
50
|
-
requirement: *id002
|
51
|
-
name: rake
|
52
33
|
type: :development
|
53
|
-
- !ruby/object:Gem::Dependency
|
54
34
|
prerelease: false
|
55
|
-
version_requirements:
|
35
|
+
version_requirements: *70286557932060
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: rspec
|
38
|
+
requirement: &70286557931600 !ruby/object:Gem::Requirement
|
56
39
|
none: false
|
57
|
-
requirements:
|
40
|
+
requirements:
|
58
41
|
- - ~>
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
hash: 27
|
61
|
-
segments:
|
62
|
-
- 1
|
63
|
-
- 3
|
64
|
-
- 0
|
42
|
+
- !ruby/object:Gem::Version
|
65
43
|
version: 1.3.0
|
66
|
-
requirement: *id003
|
67
|
-
name: rspec
|
68
44
|
type: :development
|
69
|
-
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *70286557931600
|
47
|
+
description: Caller/backtrace parser with some useful utilities for manipulating the
|
48
|
+
load path, and doing other relative things.
|
70
49
|
email: joshbuddy@gmail.com
|
71
50
|
executables: []
|
72
|
-
|
73
51
|
extensions: []
|
74
|
-
|
75
|
-
extra_rdoc_files:
|
52
|
+
extra_rdoc_files:
|
76
53
|
- README.rdoc
|
77
|
-
files:
|
54
|
+
files:
|
78
55
|
- .gitignore
|
79
56
|
- Gemfile
|
80
|
-
-
|
57
|
+
- LICENSE.txt
|
81
58
|
- README.rdoc
|
82
59
|
- Rakefile
|
83
60
|
- callsite.gemspec
|
@@ -99,41 +76,40 @@ files:
|
|
99
76
|
- spec/load_path_find_spec.rb
|
100
77
|
- spec/spec.opts
|
101
78
|
- spec/test2test/test.rb
|
102
|
-
has_rdoc: true
|
103
79
|
homepage: http://github.com/joshbuddy/callsite
|
104
|
-
licenses:
|
105
|
-
|
80
|
+
licenses:
|
81
|
+
- MIT
|
106
82
|
post_install_message:
|
107
|
-
rdoc_options:
|
83
|
+
rdoc_options:
|
108
84
|
- --charset=UTF-8
|
109
|
-
require_paths:
|
85
|
+
require_paths:
|
110
86
|
- lib
|
111
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
112
88
|
none: false
|
113
|
-
requirements:
|
114
|
-
- -
|
115
|
-
- !ruby/object:Gem::Version
|
116
|
-
|
117
|
-
segments:
|
89
|
+
requirements:
|
90
|
+
- - ! '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
segments:
|
118
94
|
- 0
|
119
|
-
|
120
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
|
+
hash: -4466444092068515186
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
121
97
|
none: false
|
122
|
-
requirements:
|
123
|
-
- -
|
124
|
-
- !ruby/object:Gem::Version
|
125
|
-
|
126
|
-
segments:
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
segments:
|
127
103
|
- 0
|
128
|
-
|
104
|
+
hash: -4466444092068515186
|
129
105
|
requirements: []
|
130
|
-
|
131
106
|
rubyforge_project:
|
132
|
-
rubygems_version: 1.
|
107
|
+
rubygems_version: 1.8.10
|
133
108
|
signing_key:
|
134
109
|
specification_version: 3
|
135
|
-
summary: Caller/backtrace parser with some useful utilities for manipulating the load
|
136
|
-
|
110
|
+
summary: Caller/backtrace parser with some useful utilities for manipulating the load
|
111
|
+
path, and doing other relative things.
|
112
|
+
test_files:
|
137
113
|
- spec/callsite_spec.rb
|
138
114
|
- spec/data/dir1/file1
|
139
115
|
- spec/data/dir1/test.rb
|
data/Gemfile.lock
DELETED