mutagem 0.2.2 → 0.2.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.
- data/.gemfiles +0 -2
- data/Gemfile.lock +4 -5
- data/HISTORY.markdown +4 -0
- data/LICENSE +1 -1
- data/README.markdown +7 -7
- data/Rakefile +1 -26
- data/VERSION +1 -1
- data/mutagem.gemspec +0 -4
- metadata +4 -39
- data/.yardopts +0 -5
- data/TODO.markdown +0 -4
data/.gemfiles
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mutagem (0.2.
|
|
4
|
+
mutagem (0.2.3)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -18,9 +18,7 @@ GEM
|
|
|
18
18
|
multi_json (~> 1.3)
|
|
19
19
|
multi_json (1.7.6)
|
|
20
20
|
rake (10.0.4)
|
|
21
|
-
redcarpet (2.3.0)
|
|
22
21
|
rspec (1.3.1)
|
|
23
|
-
yard (0.8.6.1)
|
|
24
22
|
|
|
25
23
|
PLATFORMS
|
|
26
24
|
ruby
|
|
@@ -31,6 +29,7 @@ DEPENDENCIES
|
|
|
31
29
|
cucumber (~> 1.0)
|
|
32
30
|
mutagem!
|
|
33
31
|
rake (>= 0.8.7)
|
|
34
|
-
redcarpet (>= 1.17.2)
|
|
35
32
|
rspec (= 1.3.1)
|
|
36
|
-
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
1.16.0
|
data/HISTORY.markdown
CHANGED
data/LICENSE
CHANGED
data/README.markdown
CHANGED
|
@@ -9,10 +9,10 @@ Overview
|
|
|
9
9
|
The Mutagem library provides file based mutexes for recursion protection and wrapper classes for
|
|
10
10
|
external processes with support for output and exit status capturing.
|
|
11
11
|
|
|
12
|
-
A test suite is provided for both unit testing with
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
cloning [BasicGem](http://github.com/robertwahler/basic_gem).
|
|
12
|
+
A test suite is provided for both unit testing with
|
|
13
|
+
[RSpec](http://github.com/dchelimsky/rspec) and functional testing with
|
|
14
|
+
[Cucumber](http://github.com/aslakhellesoy/cucumber). Mutagem development was
|
|
15
|
+
jump-started by cloning [BasicGem](http://github.com/robertwahler/basic_gem).
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
Example Usage
|
|
@@ -92,6 +92,8 @@ Mutagem is avaliable on [RubyGems.org](http://rubygems.org/gems/mutagem)
|
|
|
92
92
|
Development
|
|
93
93
|
-----------
|
|
94
94
|
|
|
95
|
+
Development dependencies require Ruby 1.9.3
|
|
96
|
+
|
|
95
97
|
Mutagem uses [Bundler](http://github.com/carlhuda/bundler) to manage dependencies, the gemspec
|
|
96
98
|
file is maintained by hand.
|
|
97
99
|
|
|
@@ -105,8 +107,6 @@ Use bundle to install development dependencies
|
|
|
105
107
|
rake -T
|
|
106
108
|
|
|
107
109
|
rake build # Build mutagem-0.1.2.gem into the pkg directory
|
|
108
|
-
rake doc:clean # Remove generated documenation
|
|
109
|
-
rake doc:generate # Generate YARD Documentation
|
|
110
110
|
rake features # Run Cucumber features
|
|
111
111
|
rake install # Build and install mutagem-0.1.2.gem into system gems
|
|
112
112
|
rake release # Create tag v0.1.2 and build and push mutagem-0.1.2.gem to Rubygems
|
|
@@ -117,4 +117,4 @@ rake -T
|
|
|
117
117
|
Copyright
|
|
118
118
|
---------
|
|
119
119
|
|
|
120
|
-
Copyright (c) 2010 GearheadForHire, LLC. See [LICENSE](LICENSE) for details.
|
|
120
|
+
Copyright (c) 2010-2017 GearheadForHire, LLC. See [LICENSE](LICENSE) for details.
|
data/Rakefile
CHANGED
|
@@ -31,29 +31,4 @@ end
|
|
|
31
31
|
desc "Run specs and features"
|
|
32
32
|
task :test => [:spec, :features]
|
|
33
33
|
|
|
34
|
-
task :default => :test
|
|
35
|
-
|
|
36
|
-
namespace :doc do
|
|
37
|
-
project_root = File.expand_path(File.dirname(__FILE__))
|
|
38
|
-
doc_destination = File.join(project_root, 'rdoc')
|
|
39
|
-
|
|
40
|
-
require 'yard'
|
|
41
|
-
require 'yard/rake/yardoc_task'
|
|
42
|
-
|
|
43
|
-
YARD::Rake::YardocTask.new(:generate) do |yt|
|
|
44
|
-
yt.options = ['--output-dir', doc_destination
|
|
45
|
-
] +
|
|
46
|
-
gemspec.rdoc_options - ['--line-numbers', '--inline-source']
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
desc "Remove generated documenation"
|
|
50
|
-
task :clean do
|
|
51
|
-
rm_r doc_destination if File.exists?(doc_destination)
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
desc "List undocumented objects"
|
|
55
|
-
task :undocumented do
|
|
56
|
-
system('yard stats --list-undoc')
|
|
57
|
-
end
|
|
58
|
-
|
|
59
|
-
end
|
|
34
|
+
task :default => :test
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
data/mutagem.gemspec
CHANGED
|
@@ -45,10 +45,6 @@ Gem::Specification.new do |s|
|
|
|
45
45
|
s.add_development_dependency "aruba", "= 0.2.2"
|
|
46
46
|
s.add_development_dependency "rake", ">= 0.8.7"
|
|
47
47
|
|
|
48
|
-
# doc generation
|
|
49
|
-
s.add_development_dependency "yard", ">= 0.7.2"
|
|
50
|
-
s.add_development_dependency "redcarpet", ">= 1.17.2"
|
|
51
|
-
|
|
52
48
|
s.files = @gemfiles.split("\n")
|
|
53
49
|
s.executables = @gemfiles.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
|
54
50
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mutagem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
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: bundler
|
|
@@ -91,38 +91,6 @@ dependencies:
|
|
|
91
91
|
- - ! '>='
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: 0.8.7
|
|
94
|
-
- !ruby/object:Gem::Dependency
|
|
95
|
-
name: yard
|
|
96
|
-
requirement: !ruby/object:Gem::Requirement
|
|
97
|
-
none: false
|
|
98
|
-
requirements:
|
|
99
|
-
- - ! '>='
|
|
100
|
-
- !ruby/object:Gem::Version
|
|
101
|
-
version: 0.7.2
|
|
102
|
-
type: :development
|
|
103
|
-
prerelease: false
|
|
104
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
-
none: false
|
|
106
|
-
requirements:
|
|
107
|
-
- - ! '>='
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
version: 0.7.2
|
|
110
|
-
- !ruby/object:Gem::Dependency
|
|
111
|
-
name: redcarpet
|
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
|
113
|
-
none: false
|
|
114
|
-
requirements:
|
|
115
|
-
- - ! '>='
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: 1.17.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: 1.17.2
|
|
126
94
|
description: ! "The Mutagem library provides file based mutexes for recursion protection
|
|
127
95
|
and\n classes for threading of external processes with support
|
|
128
96
|
for output and\n exit status capturing. A test suite is provided
|
|
@@ -137,14 +105,12 @@ files:
|
|
|
137
105
|
- .gemfiles
|
|
138
106
|
- .gitattributes
|
|
139
107
|
- .gitignore
|
|
140
|
-
- .yardopts
|
|
141
108
|
- Gemfile
|
|
142
109
|
- Gemfile.lock
|
|
143
110
|
- HISTORY.markdown
|
|
144
111
|
- LICENSE
|
|
145
112
|
- README.markdown
|
|
146
113
|
- Rakefile
|
|
147
|
-
- TODO.markdown
|
|
148
114
|
- VERSION
|
|
149
115
|
- config/cucumber.yml
|
|
150
116
|
- features/mutex.feature
|
|
@@ -186,7 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
186
152
|
version: '0'
|
|
187
153
|
segments:
|
|
188
154
|
- 0
|
|
189
|
-
hash:
|
|
155
|
+
hash: -309457806063577147
|
|
190
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
191
157
|
none: false
|
|
192
158
|
requirements:
|
|
@@ -195,9 +161,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
161
|
version: 1.3.6
|
|
196
162
|
requirements: []
|
|
197
163
|
rubyforge_project: mutagem
|
|
198
|
-
rubygems_version: 1.8.23
|
|
164
|
+
rubygems_version: 1.8.23.2
|
|
199
165
|
signing_key:
|
|
200
166
|
specification_version: 3
|
|
201
167
|
summary: File based mutexes with a simple external process management wrapper
|
|
202
168
|
test_files: []
|
|
203
|
-
has_rdoc: yard
|
data/.yardopts
DELETED
data/TODO.markdown
DELETED