ore-example 0.1.3 → 0.1.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/Gemfile +5 -11
- data/lib/ore/example/version.rb +1 -1
- data/ore-example.gemspec +7 -2
- metadata +7 -25
- data/Gemfile.lock +0 -46
data/Gemfile
CHANGED
|
@@ -5,17 +5,11 @@ ORE = 'http://github.com/ruby-ore'
|
|
|
5
5
|
gemspec
|
|
6
6
|
|
|
7
7
|
group :development do
|
|
8
|
-
gem 'rake',
|
|
8
|
+
gem 'rake', '~> 0.8.7'
|
|
9
|
+
gem 'kramdown', '~> 0.12.0'
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
gem 'maruku'
|
|
13
|
-
else
|
|
14
|
-
gem 'bluecloth', '>= 2.0.0'
|
|
15
|
-
end
|
|
11
|
+
gem 'ore-core', '~> 0.1.0', :git => "#{ORE}/ore-core.git"
|
|
12
|
+
gem 'ore-tasks', '~> 0.4.0', :git => "#{ORE}/ore-tasks.git"
|
|
16
13
|
|
|
17
|
-
gem '
|
|
18
|
-
gem 'ore-tasks', '~> 0.3.0', :git => "#{ORE}/ore-tasks.git"
|
|
19
|
-
|
|
20
|
-
gem 'rspec', '~> 2.1.0'
|
|
14
|
+
gem 'rspec', '~> 2.4.0'
|
|
21
15
|
end
|
data/lib/ore/example/version.rb
CHANGED
data/ore-example.gemspec
CHANGED
|
@@ -5,6 +5,11 @@ begin
|
|
|
5
5
|
# custom logic here
|
|
6
6
|
end
|
|
7
7
|
rescue NameError
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
begin
|
|
9
|
+
require 'ore/specification'
|
|
10
|
+
retry
|
|
11
|
+
rescue LoadError
|
|
12
|
+
STDERR.puts "The '#{__FILE__}' file requires Ore."
|
|
13
|
+
STDERR.puts "Run `gem install ore-core` to install Ore."
|
|
14
|
+
end
|
|
10
15
|
end
|
metadata
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ore-example
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 1
|
|
8
|
-
- 3
|
|
9
|
-
version: 0.1.3
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.1.4
|
|
10
6
|
platform: ruby
|
|
11
7
|
authors:
|
|
12
8
|
- Postmodern
|
|
@@ -14,7 +10,7 @@ autorequire:
|
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
12
|
|
|
17
|
-
date:
|
|
13
|
+
date: 2011-02-12 00:00:00 -08:00
|
|
18
14
|
default_executable:
|
|
19
15
|
dependencies:
|
|
20
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -24,10 +20,6 @@ dependencies:
|
|
|
24
20
|
requirements:
|
|
25
21
|
- - ~>
|
|
26
22
|
- !ruby/object:Gem::Version
|
|
27
|
-
segments:
|
|
28
|
-
- 1
|
|
29
|
-
- 0
|
|
30
|
-
- 0
|
|
31
23
|
version: 1.0.0
|
|
32
24
|
type: :development
|
|
33
25
|
prerelease: false
|
|
@@ -39,16 +31,13 @@ dependencies:
|
|
|
39
31
|
requirements:
|
|
40
32
|
- - ~>
|
|
41
33
|
- !ruby/object:Gem::Version
|
|
42
|
-
segments:
|
|
43
|
-
- 0
|
|
44
|
-
- 6
|
|
45
|
-
- 0
|
|
46
34
|
version: 0.6.0
|
|
47
35
|
type: :development
|
|
48
36
|
prerelease: false
|
|
49
37
|
version_requirements: *id002
|
|
50
38
|
description: An example / testing library using Ore and Ore::Tasks.
|
|
51
|
-
email:
|
|
39
|
+
email:
|
|
40
|
+
- postmodern.mod3@gmail.com
|
|
52
41
|
executables: []
|
|
53
42
|
|
|
54
43
|
extensions: []
|
|
@@ -63,7 +52,6 @@ files:
|
|
|
63
52
|
- .yardopts
|
|
64
53
|
- ChangeLog.md
|
|
65
54
|
- Gemfile
|
|
66
|
-
- Gemfile.lock
|
|
67
55
|
- LICENSE.txt
|
|
68
56
|
- README.md
|
|
69
57
|
- Rakefile
|
|
@@ -73,7 +61,7 @@ files:
|
|
|
73
61
|
- ore-example.gemspec
|
|
74
62
|
- spec/ore/example_spec.rb
|
|
75
63
|
- spec/spec_helper.rb
|
|
76
|
-
has_rdoc:
|
|
64
|
+
has_rdoc: true
|
|
77
65
|
homepage: http://github.com/ruby-ore/ore-example
|
|
78
66
|
licenses:
|
|
79
67
|
- MIT
|
|
@@ -87,23 +75,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
87
75
|
requirements:
|
|
88
76
|
- - ">="
|
|
89
77
|
- !ruby/object:Gem::Version
|
|
90
|
-
segments:
|
|
91
|
-
- 0
|
|
92
78
|
version: "0"
|
|
93
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
80
|
none: false
|
|
95
81
|
requirements:
|
|
96
82
|
- - ">="
|
|
97
83
|
- !ruby/object:Gem::Version
|
|
98
|
-
segments:
|
|
99
|
-
- 1
|
|
100
|
-
- 3
|
|
101
|
-
- 6
|
|
102
84
|
version: 1.3.6
|
|
103
85
|
requirements: []
|
|
104
86
|
|
|
105
87
|
rubyforge_project: ore-example
|
|
106
|
-
rubygems_version: 1.
|
|
88
|
+
rubygems_version: 1.5.0
|
|
107
89
|
signing_key:
|
|
108
90
|
specification_version: 3
|
|
109
91
|
summary: Example library using Ore
|
data/Gemfile.lock
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
GIT
|
|
2
|
-
remote: http://github.com/ruby-ore/ore-core.git
|
|
3
|
-
revision: e29e03202853106cd0300c652d5b8f49c72f035b
|
|
4
|
-
specs:
|
|
5
|
-
ore-core (0.1.0)
|
|
6
|
-
|
|
7
|
-
GIT
|
|
8
|
-
remote: http://github.com/ruby-ore/ore-tasks.git
|
|
9
|
-
revision: 1d0863e486f6e0623fb621900d28756ae297d9a3
|
|
10
|
-
specs:
|
|
11
|
-
ore-tasks (0.3.0)
|
|
12
|
-
ore-core (~> 0.1.0)
|
|
13
|
-
|
|
14
|
-
PATH
|
|
15
|
-
remote: .
|
|
16
|
-
specs:
|
|
17
|
-
ore-example (0.1.3)
|
|
18
|
-
|
|
19
|
-
GEM
|
|
20
|
-
remote: http://rubygems.org/
|
|
21
|
-
specs:
|
|
22
|
-
bluecloth (2.0.9)
|
|
23
|
-
diff-lcs (1.1.2)
|
|
24
|
-
rake (0.8.7)
|
|
25
|
-
rspec (2.1.0)
|
|
26
|
-
rspec-core (~> 2.1.0)
|
|
27
|
-
rspec-expectations (~> 2.1.0)
|
|
28
|
-
rspec-mocks (~> 2.1.0)
|
|
29
|
-
rspec-core (2.1.0)
|
|
30
|
-
rspec-expectations (2.1.0)
|
|
31
|
-
diff-lcs (~> 1.1.2)
|
|
32
|
-
rspec-mocks (2.1.0)
|
|
33
|
-
yard (0.6.1)
|
|
34
|
-
|
|
35
|
-
PLATFORMS
|
|
36
|
-
ruby
|
|
37
|
-
|
|
38
|
-
DEPENDENCIES
|
|
39
|
-
bluecloth (>= 2.0.0)
|
|
40
|
-
bundler (~> 1.0.0)
|
|
41
|
-
ore-core (~> 0.1.0)!
|
|
42
|
-
ore-example!
|
|
43
|
-
ore-tasks (~> 0.3.0)!
|
|
44
|
-
rake (~> 0.8.7)
|
|
45
|
-
rspec (~> 2.1.0)
|
|
46
|
-
yard (~> 0.6.0)
|