pathy 0.0.1 → 0.0.2
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/Gemfile +4 -2
- data/lib/pathy/version.rb +1 -1
- data/pathy.gemspec +4 -1
- metadata +19 -5
data/Gemfile
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
source "http://rubygems.org"
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
gemspec
|
|
3
|
+
|
|
5
4
|
|
|
6
5
|
gem 'json'
|
|
7
6
|
|
|
@@ -9,3 +8,6 @@ group :development do
|
|
|
9
8
|
gem 'rspec'
|
|
10
9
|
gem 'ZenTest'
|
|
11
10
|
end
|
|
11
|
+
|
|
12
|
+
# Specify your gem's dependencies in pathy.gemspec
|
|
13
|
+
gemspec
|
data/lib/pathy/version.rb
CHANGED
data/pathy.gemspec
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
$:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
require "pathy/version"
|
|
4
4
|
|
|
5
|
+
|
|
5
6
|
Gem::Specification.new do |s|
|
|
6
7
|
s.name = "pathy"
|
|
7
8
|
s.version = Pathy::VERSION
|
|
@@ -13,7 +14,9 @@ Gem::Specification.new do |s|
|
|
|
13
14
|
s.description = %q{Simple JSON Validation and rspec matchers}
|
|
14
15
|
|
|
15
16
|
s.rubyforge_project = "pathy"
|
|
16
|
-
|
|
17
|
+
|
|
18
|
+
s.add_dependency "json", "~> 1.4"
|
|
19
|
+
|
|
17
20
|
s.files = `git ls-files`.split("\n")
|
|
18
21
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
19
22
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pathy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Christopher Burnett
|
|
@@ -17,8 +17,22 @@ cert_chain: []
|
|
|
17
17
|
|
|
18
18
|
date: 2011-03-02 00:00:00 -08:00
|
|
19
19
|
default_executable:
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: json
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ~>
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 7
|
|
30
|
+
segments:
|
|
31
|
+
- 1
|
|
32
|
+
- 4
|
|
33
|
+
version: "1.4"
|
|
34
|
+
type: :runtime
|
|
35
|
+
version_requirements: *id001
|
|
22
36
|
description: Simple JSON Validation and rspec matchers
|
|
23
37
|
email:
|
|
24
38
|
- signalstatic@gmail.com
|