hydroponics 0.2.0 → 0.2.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 (5) hide show
  1. data/Rakefile +1 -1
  2. data/VERSION +1 -1
  3. data/bin/hydro +11 -2
  4. data/hydroponics.gemspec +2 -2
  5. metadata +4 -4
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "hydroponics"
8
8
  gem.summary = %Q{Seeding user-entered data}
9
- gem.description = %Q{A user interface to seed or destroy large quantities of data in a Rails app}
9
+ gem.description = %Q{A user interface to seed or destroy large quantities of data in a Rails app.}
10
10
  gem.email = "tboyd47@gmail.com"
11
11
  gem.homepage = "http://github.com/tboyd47/hydroponics"
12
12
  gem.authors = ["Tyler Boyd"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
data/bin/hydro CHANGED
@@ -1,2 +1,11 @@
1
- #!/bin/bash
2
- source ~/.rvm/scripts/rvm && /usr/bin/env ruby ../lib/hydroponics.rb
1
+ require 'rubygems'
2
+ require 'rack'
3
+ require 'sinatra'
4
+
5
+ class HydroApp < Sinatra::Base
6
+ get('/') {
7
+ 'Hello world!'
8
+ }
9
+ end
10
+
11
+ Rack::Handler::Mongrel.run(HydroApp.new, :Port => 9294)
data/hydroponics.gemspec CHANGED
@@ -5,13 +5,13 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{hydroponics}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tyler Boyd"]
12
12
  s.date = %q{2010-10-26}
13
13
  s.default_executable = %q{hydro}
14
- s.description = %q{A user interface to seed or destroy large quantities of data in a Rails app}
14
+ s.description = %q{A user interface to seed or destroy large quantities of data in a Rails app.}
15
15
  s.email = %q{tboyd47@gmail.com}
16
16
  s.executables = ["hydro"]
17
17
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hydroponics
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tyler Boyd
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: "1.0"
50
50
  type: :runtime
51
51
  version_requirements: *id002
52
- description: A user interface to seed or destroy large quantities of data in a Rails app
52
+ description: A user interface to seed or destroy large quantities of data in a Rails app.
53
53
  email: tboyd47@gmail.com
54
54
  executables:
55
55
  - hydro