isitopencoffeetomorrow 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,23 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+
9
+ gem 'tzinfo'
10
+ gem 'i18n'
11
+ gem 'activesupport'
12
+ gem 'sinatra'
13
+
14
+ gem 'unicorn'
15
+ gem 'foreman'
16
+
17
+ group :development do
18
+ gem "shoulda", ">= 0"
19
+ gem "rdoc", "~> 3.12"
20
+ gem "bundler", "~> 1.1.0"
21
+ gem "jeweler", "~> 1.8.4"
22
+ gem "simplecov", ">= 0"
23
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Eoin Coffey
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.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = isitopencoffeetomorrow
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to isitopencoffeetomorrow
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2012 Eoin Coffey. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,43 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "isitopencoffeetomorrow"
18
+ gem.homepage = "http://github.com/ecoffey/isitopencoffeetomorrow"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Embedded sinatra app for answering the is it tomorrow question}
21
+ gem.description = %Q{Embedded sinatra app for answering the is it tomorrow question}
22
+ gem.email = "ecoffey@gmail.com"
23
+ gem.authors = ["Eoin Coffey"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rake/testtask'
29
+ Rake::TestTask.new(:test) do |test|
30
+ test.libs << 'lib' << 'test'
31
+ test.pattern = 'test/**/test_*.rb'
32
+ test.verbose = true
33
+ end
34
+
35
+ require 'rdoc/task'
36
+ Rake::RDocTask.new do |rdoc|
37
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
38
+
39
+ rdoc.rdoc_dir = 'rdoc'
40
+ rdoc.title = "isitopencoffeetomorrow #{version}"
41
+ rdoc.rdoc_files.include('README*')
42
+ rdoc.rdoc_files.include('lib/**/*.rb')
43
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,82 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "isitopencoffeetomorrow"
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Eoin Coffey"]
12
+ s.date = "2012-07-08"
13
+ s.description = "Embedded sinatra app for answering the is it tomorrow question"
14
+ s.email = "ecoffey@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "Gemfile",
22
+ "LICENSE.txt",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "isitopencoffeetomorrow.gemspec",
27
+ "lib/isitopencoffeetomorrow.rb",
28
+ "lib/public/css/main.css",
29
+ "lib/views/index.erb",
30
+ "lib/views/index.haml",
31
+ "test/helper.rb",
32
+ "test/test_isitopencoffeetomorrow.rb"
33
+ ]
34
+ s.homepage = "http://github.com/ecoffey/isitopencoffeetomorrow"
35
+ s.licenses = ["MIT"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = "1.8.24"
38
+ s.summary = "Embedded sinatra app for answering the is it tomorrow question"
39
+
40
+ if s.respond_to? :specification_version then
41
+ s.specification_version = 3
42
+
43
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
44
+ s.add_runtime_dependency(%q<tzinfo>, [">= 0"])
45
+ s.add_runtime_dependency(%q<i18n>, [">= 0"])
46
+ s.add_runtime_dependency(%q<activesupport>, [">= 0"])
47
+ s.add_runtime_dependency(%q<sinatra>, [">= 0"])
48
+ s.add_runtime_dependency(%q<unicorn>, [">= 0"])
49
+ s.add_runtime_dependency(%q<foreman>, [">= 0"])
50
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
51
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
52
+ s.add_development_dependency(%q<bundler>, ["~> 1.1.0"])
53
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
54
+ s.add_development_dependency(%q<simplecov>, [">= 0"])
55
+ else
56
+ s.add_dependency(%q<tzinfo>, [">= 0"])
57
+ s.add_dependency(%q<i18n>, [">= 0"])
58
+ s.add_dependency(%q<activesupport>, [">= 0"])
59
+ s.add_dependency(%q<sinatra>, [">= 0"])
60
+ s.add_dependency(%q<unicorn>, [">= 0"])
61
+ s.add_dependency(%q<foreman>, [">= 0"])
62
+ s.add_dependency(%q<shoulda>, [">= 0"])
63
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
64
+ s.add_dependency(%q<bundler>, ["~> 1.1.0"])
65
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
66
+ s.add_dependency(%q<simplecov>, [">= 0"])
67
+ end
68
+ else
69
+ s.add_dependency(%q<tzinfo>, [">= 0"])
70
+ s.add_dependency(%q<i18n>, [">= 0"])
71
+ s.add_dependency(%q<activesupport>, [">= 0"])
72
+ s.add_dependency(%q<sinatra>, [">= 0"])
73
+ s.add_dependency(%q<unicorn>, [">= 0"])
74
+ s.add_dependency(%q<foreman>, [">= 0"])
75
+ s.add_dependency(%q<shoulda>, [">= 0"])
76
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
77
+ s.add_dependency(%q<bundler>, ["~> 1.1.0"])
78
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
79
+ s.add_dependency(%q<simplecov>, [">= 0"])
80
+ end
81
+ end
82
+
@@ -0,0 +1,44 @@
1
+ require 'sinatra/base'
2
+ require 'active_support/time'
3
+ require 'active_support/inflector'
4
+
5
+ module IsItOpenCoffeeTomorrow
6
+ class Application < Sinatra::Base
7
+
8
+ def self.configure
9
+ yield self
10
+ end
11
+
12
+ dir = File.dirname(File.expand_path(__FILE__))
13
+ set :views, "#{dir}/views"
14
+ set :public_folder, "#{dir}/public"
15
+
16
+ enable :run
17
+
18
+ get '/' do
19
+ seed = settings.seed
20
+ time_zone = settings.time_zone
21
+ @hash_tag = settings.hash_tag
22
+ @official_site = settings.official_site
23
+
24
+ now = Time.now.utc.in_time_zone(time_zone).to_date
25
+ tomorrow = now.tomorrow.to_date
26
+
27
+ diff_days_now = (now - seed).to_i % 14
28
+ diff_days_tomorrow = (tomorrow - seed).to_i % 14
29
+
30
+ last_occ = now - diff_days_now
31
+ next_occ = last_occ.advance(:days => 14)
32
+
33
+ days_till_next_occ = (next_occ - now).to_i
34
+ @days_till_next_occ =
35
+ days_till_next_occ > 1 ? "#{days_till_next_occ} days" : "#{days_till_next_occ} day"
36
+
37
+ @last_occ = last_occ.to_formatted_s(:long_ordinal)
38
+ @next_occ = next_occ.to_formatted_s(:long_ordinal)
39
+ @is_occ_tomorrow = diff_days_tomorrow == 0 ? "yes" : "no"
40
+
41
+ erb :index
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,28 @@
1
+ body {
2
+ font-family: Helevtica, sans-serif;
3
+ text-align: center;
4
+ }
5
+
6
+ .status {
7
+ margin-bottom: 4em;
8
+ }
9
+
10
+ .status h1 {
11
+ text-transform: uppercase;
12
+ font-size: 9em;
13
+ text-align: center;
14
+ margin: 0 auto;
15
+ }
16
+
17
+ .status .bocc_link {
18
+ font-size: 1.5em;
19
+ }
20
+
21
+ .about {
22
+ clear: both;
23
+ width: 100%;
24
+ }
25
+
26
+ .about .small {
27
+ font-size: .8em;
28
+ }
@@ -0,0 +1,46 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>is it <%= @hash_tag %> tomorrow?</title>
5
+ <link href="/css/main.css" rel="stylesheet" />
6
+ <script type="text/javascript">
7
+ var _gaq = _gaq || [];
8
+ _gaq.push(['_setAccount', 'UA-22550563-1']);
9
+ _gaq.push(['_trackPageview']);
10
+
11
+ (function() {
12
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
13
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
14
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
15
+ })();
16
+ </script>
17
+ </head>
18
+ <body>
19
+ <div class="status">
20
+ <h1 class="<%= @is_occ_tomorrow %>">
21
+ <%= @is_occ_tomorrow %>
22
+ </h1>
23
+ <p class="info">
24
+ Last <%= @hash_tag %> was <%= @last_occ %>
25
+ </p>
26
+ <p class="info">
27
+ Next <%= @hash_tag %> is <%= @next_occ %> (in <%= @days_till_next_occ %>)
28
+ </p>
29
+ <p class="occ_link">
30
+ <a href="<%= @official_site %>"><%= @official_site %></a>
31
+ </p>
32
+ </div>
33
+ <div class="about">
34
+ <p class="small">
35
+ status is computed, might be wrong, check official link
36
+ </p>
37
+ <p class="small">
38
+ made by
39
+ <a href="http://eoinisawesome.com">eoin</a>
40
+ |
41
+ <a href="http://github.com/ecoffey/isitopencoffeetomorrow">code</a>
42
+ </p>
43
+ </div>
44
+ </body>
45
+ </html>
46
+
@@ -0,0 +1,30 @@
1
+ !!!
2
+ %html
3
+ %head
4
+ %title is it bocc tomorrow?
5
+ %link{:href => "/css/main.css", :rel => "stylesheet"}
6
+ :javascript
7
+ var _gaq = _gaq || [];
8
+ _gaq.push(['_setAccount', 'UA-22550563-1']);
9
+ _gaq.push(['_trackPageview']);
10
+
11
+ (function() {
12
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
13
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
14
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
15
+ })();
16
+ %body
17
+ .status
18
+ %h1{:class => @is_bocc_tomorrow}= @is_bocc_tomorrow
19
+ %p.info Last #BOCC was #{@last_bocc}
20
+ %p.info Next #BOCC is #{@next_bocc} (in #{@days_till_next_bocc})
21
+ %p.bocc_link
22
+ %a{:href => 'http://boulderopencoffeeclub.com'} boulderopencoffeeclub.com
23
+ .about
24
+ %p.small
25
+ status is computed, might be wrong, check official link
26
+ %p.small
27
+ made by
28
+ %a{:href => 'http://eoinisawesome.com'} eoin
29
+ |
30
+ %a{:href => 'http://github.com/ecoffey/isitbocctomorrow'} code
data/test/helper.rb ADDED
@@ -0,0 +1,18 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+ require 'shoulda'
12
+
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ require 'isitopencoffeetomorrow'
16
+
17
+ class Test::Unit::TestCase
18
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestIsitopencoffeetomorrow < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,239 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: isitopencoffeetomorrow
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Eoin Coffey
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-08 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: tzinfo
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: i18n
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: activesupport
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: sinatra
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: unicorn
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: foreman
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: shoulda
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ - !ruby/object:Gem::Dependency
127
+ name: rdoc
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ version: '3.12'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ~>
140
+ - !ruby/object:Gem::Version
141
+ version: '3.12'
142
+ - !ruby/object:Gem::Dependency
143
+ name: bundler
144
+ requirement: !ruby/object:Gem::Requirement
145
+ none: false
146
+ requirements:
147
+ - - ~>
148
+ - !ruby/object:Gem::Version
149
+ version: 1.1.0
150
+ type: :development
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ~>
156
+ - !ruby/object:Gem::Version
157
+ version: 1.1.0
158
+ - !ruby/object:Gem::Dependency
159
+ name: jeweler
160
+ requirement: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ~>
164
+ - !ruby/object:Gem::Version
165
+ version: 1.8.4
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ none: false
170
+ requirements:
171
+ - - ~>
172
+ - !ruby/object:Gem::Version
173
+ version: 1.8.4
174
+ - !ruby/object:Gem::Dependency
175
+ name: simplecov
176
+ requirement: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ! '>='
180
+ - !ruby/object:Gem::Version
181
+ version: '0'
182
+ type: :development
183
+ prerelease: false
184
+ version_requirements: !ruby/object:Gem::Requirement
185
+ none: false
186
+ requirements:
187
+ - - ! '>='
188
+ - !ruby/object:Gem::Version
189
+ version: '0'
190
+ description: Embedded sinatra app for answering the is it tomorrow question
191
+ email: ecoffey@gmail.com
192
+ executables: []
193
+ extensions: []
194
+ extra_rdoc_files:
195
+ - LICENSE.txt
196
+ - README.rdoc
197
+ files:
198
+ - .document
199
+ - Gemfile
200
+ - LICENSE.txt
201
+ - README.rdoc
202
+ - Rakefile
203
+ - VERSION
204
+ - isitopencoffeetomorrow.gemspec
205
+ - lib/isitopencoffeetomorrow.rb
206
+ - lib/public/css/main.css
207
+ - lib/views/index.erb
208
+ - lib/views/index.haml
209
+ - test/helper.rb
210
+ - test/test_isitopencoffeetomorrow.rb
211
+ homepage: http://github.com/ecoffey/isitopencoffeetomorrow
212
+ licenses:
213
+ - MIT
214
+ post_install_message:
215
+ rdoc_options: []
216
+ require_paths:
217
+ - lib
218
+ required_ruby_version: !ruby/object:Gem::Requirement
219
+ none: false
220
+ requirements:
221
+ - - ! '>='
222
+ - !ruby/object:Gem::Version
223
+ version: '0'
224
+ segments:
225
+ - 0
226
+ hash: 84980687
227
+ required_rubygems_version: !ruby/object:Gem::Requirement
228
+ none: false
229
+ requirements:
230
+ - - ! '>='
231
+ - !ruby/object:Gem::Version
232
+ version: '0'
233
+ requirements: []
234
+ rubyforge_project:
235
+ rubygems_version: 1.8.24
236
+ signing_key:
237
+ specification_version: 3
238
+ summary: Embedded sinatra app for answering the is it tomorrow question
239
+ test_files: []