pa 1.0.3 → 1.1.3

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.
metadata CHANGED
@@ -1,44 +1,28 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: pa
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.3
4
5
  prerelease:
5
- version: 1.0.3
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Guten
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
+ date: 2011-09-10 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: ! 'a path library for Ruby
12
15
 
13
- date: 2011-07-05 00:00:00 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: tagen
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ~>
22
- - !ruby/object:Gem::Version
23
- version: 1.0.0
24
- type: :runtime
25
- version_requirements: *id001
26
- description: |
27
- a path library for Ruby
28
-
16
+ '
29
17
  email: ywzhaifei@Gmail.com
30
18
  executables: []
31
-
32
19
  extensions: []
33
-
34
20
  extra_rdoc_files: []
35
-
36
- files:
21
+ files:
37
22
  - .gitignore
38
23
  - .rspec
39
24
  - Gemfile
40
25
  - Gemfile.lock
41
- - LICENSE
42
26
  - README.md
43
27
  - Ragfile
44
28
  - lib/pa.rb
@@ -46,6 +30,8 @@ files:
46
30
  - lib/pa/dir.rb
47
31
  - lib/pa/path.rb
48
32
  - lib/pa/state.rb
33
+ - lib/pa/util.rb
34
+ - lib/pa/version.rb
49
35
  - pa.gemspec
50
36
  - pa.watchr
51
37
  - spec/pa/cmd_spec.rb
@@ -54,33 +40,28 @@ files:
54
40
  - spec/pa/state_spec.rb
55
41
  - spec/pa_spec.rb
56
42
  - spec/spec_helper.rb
57
- - version.rb
58
43
  homepage: http://github.com/GutenYe/pa
59
44
  licenses: []
60
-
61
45
  post_install_message:
62
46
  rdoc_options: []
63
-
64
- require_paths:
47
+ require_paths:
65
48
  - lib
66
- required_ruby_version: !ruby/object:Gem::Requirement
49
+ required_ruby_version: !ruby/object:Gem::Requirement
67
50
  none: false
68
- requirements:
69
- - - ">="
70
- - !ruby/object:Gem::Version
71
- version: "0"
72
- required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
56
  none: false
74
- requirements:
75
- - - ">="
76
- - !ruby/object:Gem::Version
77
- version: "0"
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
78
61
  requirements: []
79
-
80
62
  rubyforge_project: xx
81
63
  rubygems_version: 1.8.5
82
64
  signing_key:
83
65
  specification_version: 3
84
66
  summary: a path library for Ruby
85
67
  test_files: []
86
-
data/LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2011 Guten
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- 'Software'), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/version.rb DELETED
@@ -1,9 +0,0 @@
1
- class Pa
2
- module VERSION
3
- MAJOR = 1
4
- MINOR = 0
5
- PATCH = 3
6
-
7
- IS = [MAJOR, MINOR, PATCH].join(".")
8
- end
9
- end