buzzard 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +24 -3
  2. data/VERSION +1 -1
  3. data/buzzard.gemspec +23 -4
  4. metadata +6 -6
data/Rakefile CHANGED
@@ -2,10 +2,31 @@ require 'rubygems'
2
2
  require 'jeweler'
3
3
  Jeweler::Tasks.new do |gemspec|
4
4
  gemspec.name = "buzzard"
5
- gemspec.summary = "Sane web app microframework built on Sinatra."
6
- gemspec.description = "Buzzard is a framework and application generator"
5
+ gemspec.summary = "A microframework built on Sinatra."
6
+ gemspec.description = <<-EOF
7
+ Love Sinatra, but feel it's just a little too minimalistic?
8
+ Think Rails is way too bloated these days?
9
+
10
+ Buzzard provides a set of modules for Sinatra and a minimalistic
11
+ application generator. The modules provide a set of common, useful
12
+ functionality for web application development without the overhead
13
+ associated with heavier frameworks like Rails.
14
+
15
+ Out of the box, your generated application will be configured with
16
+ a set of modules providing functionality like data access via Ruby/DBI
17
+ and session management. Further, placeholders are generated so you can
18
+ see your application working right away.
19
+
20
+ The best part is that you can pick and choose the bits of buzzard you
21
+ want to use. Don't like Ruby/DBI? Use something else! Don't need sessions?
22
+ You don't have to!
23
+
24
+ Install the buzzard gem, then run "buzzard hello-world" to generate your
25
+ first application.
26
+ EOF
27
+
7
28
  gemspec.email = "buzzard@tomlee.co"
8
- gemspec.homepage = "http://github.com/thomaslee/buzzard"
29
+ gemspec.homepage = "http://rubyforge.org/projects/buzzard"
9
30
  gemspec.authors = ["Thomas Lee"]
10
31
 
11
32
  gemspec.add_dependency('dbi', '>= 0.4.4')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/buzzard.gemspec CHANGED
@@ -5,13 +5,32 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{buzzard}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Thomas Lee"]
12
12
  s.date = %q{2010-11-14}
13
13
  s.default_executable = %q{buzzard}
14
- s.description = %q{Buzzard is a framework and application generator}
14
+ s.description = %q{ Love Sinatra, but feel it's just a little too minimalistic?
15
+ Think Rails is way too bloated these days?
16
+
17
+ Buzzard provides a set of modules for Sinatra and a minimalistic
18
+ application generator. The modules provide a set of common, useful
19
+ functionality for web application development without the overhead
20
+ associated with heavier frameworks like Rails.
21
+
22
+ Out of the box, your generated application will be configured with
23
+ a set of modules providing functionality like data access via Ruby/DBI
24
+ and session management. Further, placeholders are generated so you can
25
+ see your application working right away.
26
+
27
+ The best part is that you can pick and choose the bits of buzzard you
28
+ want to use. Don't like Ruby/DBI? Use something else! Don't need sessions?
29
+ You don't have to!
30
+
31
+ Install the buzzard gem, then run "buzzard hello-world" to generate your
32
+ first application.
33
+ }
15
34
  s.email = %q{buzzard@tomlee.co}
16
35
  s.executables = ["buzzard"]
17
36
  s.extra_rdoc_files = [
@@ -40,12 +59,12 @@ Gem::Specification.new do |s|
40
59
  "lib/buzzard/security.rb",
41
60
  "lib/buzzard/session.rb"
42
61
  ]
43
- s.homepage = %q{http://github.com/thomaslee/buzzard}
62
+ s.homepage = %q{http://rubyforge.org/projects/buzzard}
44
63
  s.rdoc_options = ["--charset=UTF-8"]
45
64
  s.require_paths = ["lib"]
46
65
  s.rubyforge_project = %q{buzzard}
47
66
  s.rubygems_version = %q{1.3.7}
48
- s.summary = %q{Sane web app microframework built on Sinatra.}
67
+ s.summary = %q{A microframework built on Sinatra.}
49
68
 
50
69
  if s.respond_to? :specification_version then
51
70
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buzzard
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Thomas Lee
@@ -66,7 +66,7 @@ dependencies:
66
66
  version: 0.1.1
67
67
  type: :runtime
68
68
  version_requirements: *id003
69
- description: Buzzard is a framework and application generator
69
+ description: " Love Sinatra, but feel it's just a little too minimalistic?\n Think Rails is way too bloated these days?\n\n Buzzard provides a set of modules for Sinatra and a minimalistic\n application generator. The modules provide a set of common, useful\n functionality for web application development without the overhead\n associated with heavier frameworks like Rails.\n\n Out of the box, your generated application will be configured with\n a set of modules providing functionality like data access via Ruby/DBI\n and session management. Further, placeholders are generated so you can\n see your application working right away.\n\n The best part is that you can pick and choose the bits of buzzard you\n want to use. Don't like Ruby/DBI? Use something else! Don't need sessions?\n You don't have to!\n\n Install the buzzard gem, then run \"buzzard hello-world\" to generate your\n first application.\n"
70
70
  email: buzzard@tomlee.co
71
71
  executables:
72
72
  - buzzard
@@ -98,7 +98,7 @@ files:
98
98
  - lib/buzzard/session.rb
99
99
  - TODO
100
100
  has_rdoc: true
101
- homepage: http://github.com/thomaslee/buzzard
101
+ homepage: http://rubyforge.org/projects/buzzard
102
102
  licenses: []
103
103
 
104
104
  post_install_message:
@@ -130,6 +130,6 @@ rubyforge_project: buzzard
130
130
  rubygems_version: 1.3.7
131
131
  signing_key:
132
132
  specification_version: 3
133
- summary: Sane web app microframework built on Sinatra.
133
+ summary: A microframework built on Sinatra.
134
134
  test_files: []
135
135