punchcard 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- punchcard (0.0.0)
4
+ punchcard (0.1.0)
5
5
  bson_ext
6
6
  gravtastic
7
7
  haml (>= 3.0.24)
data/README.rdoc CHANGED
@@ -24,9 +24,9 @@ Same as above, but you can ditch the mongo_db setup line. Initialize a git repo
24
24
 
25
25
  $ git init
26
26
  $ git commit -a -m "Initial commit"
27
- $ heroku create --stack bamboo-mri-1.9.2
27
+ $ heroku create [APPNAME] --stack bamboo-mri-1.9.2
28
28
  $ heroku addons:add mongohq:free
29
- $ git push heroku
29
+ $ git push heroku master
30
30
 
31
31
  Now head over to your app's url! Please also check out the next two sections for auth and adding people.
32
32
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/lib/punchcard.rb CHANGED
@@ -1,5 +1,10 @@
1
1
  require 'bundler'
2
- Bundler.require(:default)
2
+ Bundler.setup(:default)
3
+
4
+ require 'sinatra'
5
+ require 'sinatra/mongoid'
6
+ require 'gravtastic'
7
+ require 'mongoid'
3
8
 
4
9
  require 'punchcard/person'
5
10
  require 'punchcard/punch'
data/punchcard.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{punchcard}
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 = ["Christoph Olszowka"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Christoph Olszowka