seamus 0.2.1 → 0.2.4
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/Rakefile +2 -2
- data/VERSION +1 -1
- data/features/{Seamus.feature → seamus.feature} +0 -0
- data/features/step_definitions/{Seamus_steps.rb → seamus_steps.rb} +0 -0
- data/lib/{Seamus.rb → seamus.rb} +0 -0
- data/{Seamus.gemspec → seamus.gemspec} +11 -7
- data/spec/{Seamus_spec.rb → seamus_spec.rb} +0 -0
- metadata +7 -7
data/Rakefile
CHANGED
|
@@ -11,7 +11,7 @@ begin
|
|
|
11
11
|
gem.homepage = "http://github.com/scottburton11/Seamus"
|
|
12
12
|
gem.authors = ["Scott Burton"]
|
|
13
13
|
end
|
|
14
|
-
|
|
14
|
+
Jeweler::GemcutterTasks.new
|
|
15
15
|
rescue LoadError
|
|
16
16
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
|
17
17
|
end
|
|
@@ -51,7 +51,7 @@ Rake::RDocTask.new do |rdoc|
|
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
rdoc.rdoc_dir = 'rdoc'
|
|
54
|
-
rdoc.title = "
|
|
54
|
+
rdoc.title = "seamus #{version}"
|
|
55
55
|
rdoc.rdoc_files.include('README*')
|
|
56
56
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
57
57
|
end
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
|
File without changes
|
|
File without changes
|
data/lib/{Seamus.rb → seamus.rb}
RENAMED
|
File without changes
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
1
4
|
# -*- encoding: utf-8 -*-
|
|
2
5
|
|
|
3
6
|
Gem::Specification.new do |s|
|
|
4
7
|
s.name = %q{seamus}
|
|
5
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.4"
|
|
6
9
|
|
|
7
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
11
|
s.authors = ["Scott Burton"]
|
|
@@ -19,14 +22,13 @@ Gem::Specification.new do |s|
|
|
|
19
22
|
"LICENSE",
|
|
20
23
|
"README.rdoc",
|
|
21
24
|
"Rakefile",
|
|
22
|
-
"Seamus.gemspec",
|
|
23
25
|
"VERSION",
|
|
24
|
-
"features/
|
|
25
|
-
"features/step_definitions/
|
|
26
|
+
"features/seamus.feature",
|
|
27
|
+
"features/step_definitions/seamus_steps.rb",
|
|
26
28
|
"features/support/env.rb",
|
|
27
|
-
"lib/Seamus.rb",
|
|
28
29
|
"lib/core/numeric.rb",
|
|
29
30
|
"lib/mime_table.rb",
|
|
31
|
+
"lib/seamus.rb",
|
|
30
32
|
"lib/seamus/inspector.rb",
|
|
31
33
|
"lib/seamus/inspector/application_inspector.rb",
|
|
32
34
|
"lib/seamus/inspector/audio_inspector.rb",
|
|
@@ -39,10 +41,11 @@ Gem::Specification.new do |s|
|
|
|
39
41
|
"lib/seamus/processor/image_processor.rb",
|
|
40
42
|
"lib/seamus/processor/text_processor.rb",
|
|
41
43
|
"lib/seamus/processor/video_processor.rb",
|
|
42
|
-
"
|
|
44
|
+
"seamus.gemspec",
|
|
43
45
|
"spec/lib/core/numeric_spec.rb",
|
|
44
46
|
"spec/lib/seamus/inspector/image_inspector_spec.rb",
|
|
45
47
|
"spec/lib/seamus/processor/image_processor_spec.rb",
|
|
48
|
+
"spec/seamus_spec.rb",
|
|
46
49
|
"spec/spec_helper.rb"
|
|
47
50
|
]
|
|
48
51
|
s.homepage = %q{http://github.com/scottburton11/Seamus}
|
|
@@ -54,7 +57,7 @@ Gem::Specification.new do |s|
|
|
|
54
57
|
"spec/lib/core/numeric_spec.rb",
|
|
55
58
|
"spec/lib/seamus/inspector/image_inspector_spec.rb",
|
|
56
59
|
"spec/lib/seamus/processor/image_processor_spec.rb",
|
|
57
|
-
"spec/
|
|
60
|
+
"spec/seamus_spec.rb",
|
|
58
61
|
"spec/spec_helper.rb"
|
|
59
62
|
]
|
|
60
63
|
|
|
@@ -68,3 +71,4 @@ Gem::Specification.new do |s|
|
|
|
68
71
|
else
|
|
69
72
|
end
|
|
70
73
|
end
|
|
74
|
+
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: seamus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Burton
|
|
@@ -28,14 +28,13 @@ files:
|
|
|
28
28
|
- LICENSE
|
|
29
29
|
- README.rdoc
|
|
30
30
|
- Rakefile
|
|
31
|
-
- Seamus.gemspec
|
|
32
31
|
- VERSION
|
|
33
|
-
- features/
|
|
34
|
-
- features/step_definitions/
|
|
32
|
+
- features/seamus.feature
|
|
33
|
+
- features/step_definitions/seamus_steps.rb
|
|
35
34
|
- features/support/env.rb
|
|
36
|
-
- lib/Seamus.rb
|
|
37
35
|
- lib/core/numeric.rb
|
|
38
36
|
- lib/mime_table.rb
|
|
37
|
+
- lib/seamus.rb
|
|
39
38
|
- lib/seamus/inspector.rb
|
|
40
39
|
- lib/seamus/inspector/application_inspector.rb
|
|
41
40
|
- lib/seamus/inspector/audio_inspector.rb
|
|
@@ -48,10 +47,11 @@ files:
|
|
|
48
47
|
- lib/seamus/processor/image_processor.rb
|
|
49
48
|
- lib/seamus/processor/text_processor.rb
|
|
50
49
|
- lib/seamus/processor/video_processor.rb
|
|
51
|
-
-
|
|
50
|
+
- seamus.gemspec
|
|
52
51
|
- spec/lib/core/numeric_spec.rb
|
|
53
52
|
- spec/lib/seamus/inspector/image_inspector_spec.rb
|
|
54
53
|
- spec/lib/seamus/processor/image_processor_spec.rb
|
|
54
|
+
- spec/seamus_spec.rb
|
|
55
55
|
- spec/spec_helper.rb
|
|
56
56
|
has_rdoc: true
|
|
57
57
|
homepage: http://github.com/scottburton11/Seamus
|
|
@@ -85,5 +85,5 @@ test_files:
|
|
|
85
85
|
- spec/lib/core/numeric_spec.rb
|
|
86
86
|
- spec/lib/seamus/inspector/image_inspector_spec.rb
|
|
87
87
|
- spec/lib/seamus/processor/image_processor_spec.rb
|
|
88
|
-
- spec/
|
|
88
|
+
- spec/seamus_spec.rb
|
|
89
89
|
- spec/spec_helper.rb
|