oct 0.3.1 → 0.3.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/.gemfiles +0 -1
- data/.gitignore +0 -1
- data/Gemfile +1 -1
- data/Gemfile.lock +7 -8
- data/HISTORY.markdown +4 -0
- data/LICENSE +1 -1
- data/README.markdown +2 -3
- data/Rakefile +0 -27
- data/VERSION +1 -1
- data/oct.gemspec +0 -4
- metadata +4 -38
- data/.yardopts +0 -5
data/.gemfiles
CHANGED
data/.gitignore
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
oct (0.3.
|
|
4
|
+
oct (0.3.2)
|
|
5
5
|
term-ansicolor (>= 1.0.4)
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
|
-
remote:
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
10
|
aruba (0.4.6)
|
|
11
11
|
bcat (>= 0.6.1)
|
|
@@ -28,11 +28,10 @@ GEM
|
|
|
28
28
|
ffi (1.0.10)
|
|
29
29
|
gherkin (2.5.4)
|
|
30
30
|
json (>= 1.4.6)
|
|
31
|
-
json (1.
|
|
32
|
-
rack (1.
|
|
31
|
+
json (2.1.0)
|
|
32
|
+
rack (1.6.8)
|
|
33
33
|
rake (0.9.2.2)
|
|
34
34
|
rdiscount (1.6.8)
|
|
35
|
-
redcarpet (1.17.2)
|
|
36
35
|
rspec (2.7.0)
|
|
37
36
|
rspec-core (~> 2.7.0)
|
|
38
37
|
rspec-expectations (~> 2.7.0)
|
|
@@ -42,7 +41,6 @@ GEM
|
|
|
42
41
|
diff-lcs (~> 1.1.2)
|
|
43
42
|
rspec-mocks (2.7.0)
|
|
44
43
|
term-ansicolor (1.0.7)
|
|
45
|
-
yard (0.7.3)
|
|
46
44
|
|
|
47
45
|
PLATFORMS
|
|
48
46
|
ruby
|
|
@@ -53,6 +51,7 @@ DEPENDENCIES
|
|
|
53
51
|
cucumber (~> 1.0)
|
|
54
52
|
oct!
|
|
55
53
|
rake (>= 0.8.7)
|
|
56
|
-
redcarpet (>= 1.17.2)
|
|
57
54
|
rspec (>= 2.6.0)
|
|
58
|
-
|
|
55
|
+
|
|
56
|
+
BUNDLED WITH
|
|
57
|
+
1.16.0
|
data/HISTORY.markdown
CHANGED
data/LICENSE
CHANGED
data/README.markdown
CHANGED
|
@@ -41,6 +41,7 @@ Here is an equivalent bash script
|
|
|
41
41
|
Run-time dependencies
|
|
42
42
|
---------------------
|
|
43
43
|
|
|
44
|
+
* Ruby 1.9.3
|
|
44
45
|
* Term-ansicolor for optional color output <http://github.com/flori/term-ansicolor>
|
|
45
46
|
|
|
46
47
|
|
|
@@ -51,8 +52,6 @@ Development dependencies
|
|
|
51
52
|
* Rspec for unit testing <http://github.com/rspec/rspec>
|
|
52
53
|
* Cucumber for functional testing <http://github.com/cucumber/cucumber>
|
|
53
54
|
* Aruba for CLI testing <http://github.com/cucumber/aruba>
|
|
54
|
-
* Yard for documentation generation <http://github.com/lsegal/yard>
|
|
55
|
-
* Redcarpet for documentation markup processing <http://github.com/tanoku/redcarpet>
|
|
56
55
|
|
|
57
56
|
Installation
|
|
58
57
|
------------
|
|
@@ -97,4 +96,4 @@ oct
|
|
|
97
96
|
Copyright
|
|
98
97
|
---------
|
|
99
98
|
|
|
100
|
-
Copyright (c) 2010-
|
|
99
|
+
Copyright (c) 2010-2017 GearheadForHire, LLC. See [LICENSE](LICENSE) for details.
|
data/Rakefile
CHANGED
|
@@ -23,33 +23,6 @@ task :test => [:spec, :features]
|
|
|
23
23
|
|
|
24
24
|
task :default => :test
|
|
25
25
|
|
|
26
|
-
namespace :doc do
|
|
27
|
-
|
|
28
|
-
doc_version = File.open(File.join(File.dirname(__FILE__), 'VERSION'), "r") { |f| f.read }
|
|
29
|
-
project_root = File.expand_path(File.dirname(__FILE__))
|
|
30
|
-
doc_destination = File.join(project_root, 'rdoc')
|
|
31
|
-
|
|
32
|
-
require 'yard'
|
|
33
|
-
|
|
34
|
-
YARD::Rake::YardocTask.new(:generate) do |yt|
|
|
35
|
-
yt.options = ['--output-dir', doc_destination,
|
|
36
|
-
'--title', "Oct #{doc_version} Documentation",
|
|
37
|
-
'--main', "README.markdown"
|
|
38
|
-
]
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
desc "Remove generated documenation"
|
|
42
|
-
task :clean do
|
|
43
|
-
rm_r doc_destination if File.exists?(doc_destination)
|
|
44
|
-
end
|
|
45
|
-
|
|
46
|
-
desc "List undocumented objects"
|
|
47
|
-
task :undocumented do
|
|
48
|
-
system('yard stats --list-undoc')
|
|
49
|
-
end
|
|
50
|
-
|
|
51
|
-
end
|
|
52
|
-
|
|
53
26
|
# put the gemfiles task in the bundler dependency chain
|
|
54
27
|
task :build => [:gemfiles]
|
|
55
28
|
task :install => [:gemfiles]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.2
|
data/oct.gemspec
CHANGED
|
@@ -38,10 +38,6 @@ Gem::Specification.new do |s|
|
|
|
38
38
|
s.add_development_dependency "aruba", "~> 0.4.3"
|
|
39
39
|
s.add_development_dependency "rake", ">= 0.8.7"
|
|
40
40
|
|
|
41
|
-
# doc generation
|
|
42
|
-
s.add_development_dependency "yard", ">= 0.7.2"
|
|
43
|
-
s.add_development_dependency "redcarpet", ">= 1.17.2"
|
|
44
|
-
|
|
45
41
|
s.files = gemfiles.split("\n")
|
|
46
42
|
s.executables = gemfiles.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
|
47
43
|
s.require_paths = ["lib"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oct
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2017-12-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: term-ansicolor
|
|
@@ -107,38 +107,6 @@ dependencies:
|
|
|
107
107
|
- - ! '>='
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: 0.8.7
|
|
110
|
-
- !ruby/object:Gem::Dependency
|
|
111
|
-
name: yard
|
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
|
113
|
-
none: false
|
|
114
|
-
requirements:
|
|
115
|
-
- - ! '>='
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: 0.7.2
|
|
118
|
-
type: :development
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
none: false
|
|
122
|
-
requirements:
|
|
123
|
-
- - ! '>='
|
|
124
|
-
- !ruby/object:Gem::Version
|
|
125
|
-
version: 0.7.2
|
|
126
|
-
- !ruby/object:Gem::Dependency
|
|
127
|
-
name: redcarpet
|
|
128
|
-
requirement: !ruby/object:Gem::Requirement
|
|
129
|
-
none: false
|
|
130
|
-
requirements:
|
|
131
|
-
- - ! '>='
|
|
132
|
-
- !ruby/object:Gem::Version
|
|
133
|
-
version: 1.17.2
|
|
134
|
-
type: :development
|
|
135
|
-
prerelease: false
|
|
136
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
-
none: false
|
|
138
|
-
requirements:
|
|
139
|
-
- - ! '>='
|
|
140
|
-
- !ruby/object:Gem::Version
|
|
141
|
-
version: 1.17.2
|
|
142
110
|
description: Command line octal file permissions
|
|
143
111
|
email:
|
|
144
112
|
- robert@gearheadforhire.com
|
|
@@ -150,7 +118,6 @@ files:
|
|
|
150
118
|
- .gemfiles
|
|
151
119
|
- .gitattributes
|
|
152
120
|
- .gitignore
|
|
153
|
-
- .yardopts
|
|
154
121
|
- Gemfile
|
|
155
122
|
- Gemfile.lock
|
|
156
123
|
- HISTORY.markdown
|
|
@@ -202,7 +169,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
202
169
|
version: '0'
|
|
203
170
|
segments:
|
|
204
171
|
- 0
|
|
205
|
-
hash:
|
|
172
|
+
hash: -1238567969304806079
|
|
206
173
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
207
174
|
none: false
|
|
208
175
|
requirements:
|
|
@@ -211,9 +178,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
211
178
|
version: 1.3.6
|
|
212
179
|
requirements: []
|
|
213
180
|
rubyforge_project: oct
|
|
214
|
-
rubygems_version: 1.8.23
|
|
181
|
+
rubygems_version: 1.8.23.2
|
|
215
182
|
signing_key:
|
|
216
183
|
specification_version: 3
|
|
217
184
|
summary: Command line octal file permissions
|
|
218
185
|
test_files: []
|
|
219
|
-
has_rdoc:
|