spire 0.1.0 → 0.1.1

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.
Files changed (6) hide show
  1. data/Gemfile +2 -3
  2. data/Gemfile.lock +2 -0
  3. data/VERSION +1 -1
  4. data/spire.gemspec +4 -3
  5. metadata +21 -12
  6. data/LICENSE.txt +0 -20
data/Gemfile CHANGED
@@ -1,7 +1,6 @@
1
1
  source "http://rubygems.org"
2
- # Add dependencies required to use your gem here.
3
- # Example:
4
- # gem "activesupport", ">= 2.3.5"
2
+
3
+ gem "rack", ">= 1.3.0"
5
4
 
6
5
  # Add dependencies to develop your gem here.
7
6
  # Include everything needed to run rake, tests, features, etc.
data/Gemfile.lock CHANGED
@@ -6,6 +6,7 @@ GEM
6
6
  bundler (~> 1.0)
7
7
  git (>= 1.2.5)
8
8
  rake
9
+ rack (1.3.3)
9
10
  rake (0.9.2)
10
11
  rcov (0.9.10)
11
12
  shoulda (2.11.3)
@@ -16,5 +17,6 @@ PLATFORMS
16
17
  DEPENDENCIES
17
18
  bundler (~> 1.0.0)
18
19
  jeweler (~> 1.6.4)
20
+ rack (>= 1.3.0)
19
21
  rcov
20
22
  shoulda
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/spire.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "spire"
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Scott Nicol"]
@@ -13,14 +13,12 @@ Gem::Specification.new do |s|
13
13
  s.description = "Light rack-based framework with controllers, static views and a router \n with templating engine support coming soon"
14
14
  s.email = "scott@scottnicol.co.uk"
15
15
  s.extra_rdoc_files = [
16
- "LICENSE.txt",
17
16
  "README.rdoc"
18
17
  ]
19
18
  s.files = [
20
19
  ".document",
21
20
  "Gemfile",
22
21
  "Gemfile.lock",
23
- "LICENSE.txt",
24
22
  "README.rdoc",
25
23
  "Rakefile",
26
24
  "VERSION",
@@ -45,17 +43,20 @@ Gem::Specification.new do |s|
45
43
  s.specification_version = 3
46
44
 
47
45
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_runtime_dependency(%q<rack>, [">= 1.3.0"])
48
47
  s.add_development_dependency(%q<shoulda>, [">= 0"])
49
48
  s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
50
49
  s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
51
50
  s.add_development_dependency(%q<rcov>, [">= 0"])
52
51
  else
52
+ s.add_dependency(%q<rack>, [">= 1.3.0"])
53
53
  s.add_dependency(%q<shoulda>, [">= 0"])
54
54
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
55
55
  s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
56
56
  s.add_dependency(%q<rcov>, [">= 0"])
57
57
  end
58
58
  else
59
+ s.add_dependency(%q<rack>, [">= 1.3.0"])
59
60
  s.add_dependency(%q<shoulda>, [">= 0"])
60
61
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
61
62
  s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,9 +11,20 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2011-09-26 00:00:00.000000000Z
13
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rack
16
+ requirement: &70209982962660 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 1.3.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70209982962660
14
25
  - !ruby/object:Gem::Dependency
15
26
  name: shoulda
16
- requirement: &70300324987880 !ruby/object:Gem::Requirement
27
+ requirement: &70209982962080 !ruby/object:Gem::Requirement
17
28
  none: false
18
29
  requirements:
19
30
  - - ! '>='
@@ -21,10 +32,10 @@ dependencies:
21
32
  version: '0'
22
33
  type: :development
23
34
  prerelease: false
24
- version_requirements: *70300324987880
35
+ version_requirements: *70209982962080
25
36
  - !ruby/object:Gem::Dependency
26
37
  name: bundler
27
- requirement: &70300324987160 !ruby/object:Gem::Requirement
38
+ requirement: &70209982961460 !ruby/object:Gem::Requirement
28
39
  none: false
29
40
  requirements:
30
41
  - - ~>
@@ -32,10 +43,10 @@ dependencies:
32
43
  version: 1.0.0
33
44
  type: :development
34
45
  prerelease: false
35
- version_requirements: *70300324987160
46
+ version_requirements: *70209982961460
36
47
  - !ruby/object:Gem::Dependency
37
48
  name: jeweler
38
- requirement: &70300324986580 !ruby/object:Gem::Requirement
49
+ requirement: &70209982960900 !ruby/object:Gem::Requirement
39
50
  none: false
40
51
  requirements:
41
52
  - - ~>
@@ -43,10 +54,10 @@ dependencies:
43
54
  version: 1.6.4
44
55
  type: :development
45
56
  prerelease: false
46
- version_requirements: *70300324986580
57
+ version_requirements: *70209982960900
47
58
  - !ruby/object:Gem::Dependency
48
59
  name: rcov
49
- requirement: &70300324985820 !ruby/object:Gem::Requirement
60
+ requirement: &70209982960240 !ruby/object:Gem::Requirement
50
61
  none: false
51
62
  requirements:
52
63
  - - ! '>='
@@ -54,20 +65,18 @@ dependencies:
54
65
  version: '0'
55
66
  type: :development
56
67
  prerelease: false
57
- version_requirements: *70300324985820
68
+ version_requirements: *70209982960240
58
69
  description: ! "Light rack-based framework with controllers, static views and a router
59
70
  \n with templating engine support coming soon"
60
71
  email: scott@scottnicol.co.uk
61
72
  executables: []
62
73
  extensions: []
63
74
  extra_rdoc_files:
64
- - LICENSE.txt
65
75
  - README.rdoc
66
76
  files:
67
77
  - .document
68
78
  - Gemfile
69
79
  - Gemfile.lock
70
- - LICENSE.txt
71
80
  - README.rdoc
72
81
  - Rakefile
73
82
  - VERSION
@@ -96,7 +105,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
105
  version: '0'
97
106
  segments:
98
107
  - 0
99
- hash: -896387045232244054
108
+ hash: -1445955480384827028
100
109
  required_rubygems_version: !ruby/object:Gem::Requirement
101
110
  none: false
102
111
  requirements:
data/LICENSE.txt DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2011 Scott Nicol
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
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.