bootup 0.0.4 → 0.0.4.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.
data/README.md CHANGED
@@ -15,6 +15,7 @@ And then execute:
15
15
  For the latest release,
16
16
 
17
17
  gem 'bootup', git: "git://github.com/recklessrahul/bootup.git"
18
+
18
19
  $ bundle
19
20
 
20
21
  ## Usage
@@ -40,55 +41,55 @@ Note: If *APP_NAME* is not supplied, the root folder name would be used as *APP_
40
41
  The following gems would be installed:
41
42
 
42
43
  1. rails
43
- 2. jquery-rails
44
+ 2. [Jquery](https://github.com/indirect/jquery-rails)
44
45
 
45
46
  Database Stuff:
46
47
 
47
- 1. pg
48
- 2. mongoid
49
- 3. sqlite
48
+ 1. [Postgres](https://github.com/ged/ruby-pg)
49
+ 2. [MongoDB](http://mongoid.org/en/mongoid/index.html)
50
+ 3. SQLite
50
51
 
51
52
  Assets (Outside asset group for heroku integration):
52
53
 
53
- 1. twitter-bootstrap-rails (Generator would be run automatically)
54
- 2. jquery-datatables-rails (Automatically included in application.js & initialized to #datatables)
54
+ 1. [Twitter Bootstrap](https://github.com/seyhunak/twitter-bootstrap-rails) (Generator would be run automatically)
55
+ 2. [Jquery Datatables](https://github.com/rweng/jquery-datatables-rails) (Automatically included in application.js & initialized to #datatables)
55
56
 
56
57
  View Stuff
57
58
 
58
- 1. simple_form (Generator would be run automatically)
59
+ 1. [Simple Form](https://github.com/plataformatec/simple_form) (Generator would be run automatically)
59
60
 
60
61
  Authentication:
61
- 1. sorcery
62
+ 1. [Sorcery](https://github.com/NoamB/sorcery)
62
63
 
63
64
  Server:
64
- 1. thin
65
+ 1. [Thin](http://code.macournoyer.com/thin/)
65
66
 
66
67
  Group Assets:
67
68
 
68
- 1. less-rails
69
- 2. sass-rails
70
- 3. coffee-rails
71
- 4. uglifier
72
- 5. therubyracer
69
+ 1. [Less](https://github.com/metaskills/less-rails)
70
+ 2. [Sass](https://github.com/rails/sass-rails)
71
+ 3. [CoffeeScript](https://github.com/rails/coffee-rails)
72
+ 4. [Uglifier](https://github.com/lautis/uglifier)
73
+ 5. [Therubyracer](https://github.com/cowboyd/therubyracer)
73
74
 
74
75
  Group Test:
75
76
 
76
- 1. spork (Pre-configured with my personal preferences for pre-fork & each_run blocks)
77
- 2. faker
78
- 3. capybara
79
- 4. launchy
80
- 5. factory_girl_rails
81
- 6. database_cleaner
77
+ 1. [Spork](https://github.com/sporkrb/spork) (Pre-configured with my personal preferences for pre-fork & each_run blocks)
78
+ 2. [Faker](http://faker.rubyforge.org/)
79
+ 3. [Capybara](https://github.com/jnicklas/capybara)
80
+ 4. [Launchy](https://rubygems.org/gems/launchy)
81
+ 5. [Factory Girl](https://github.com/thoughtbot/factory_girl)
82
+ 6. [Database Cleaner](https://github.com/bmabey/database_cleaner)
82
83
 
83
84
  Group Development & Test:
84
85
 
85
- 1. rspec-rails (Generator would be run automatically. Spec file replaced)
86
- 2. guard-rspec (Initialized. Guard watches views & runs request specs)
87
- 3. rb-inotify
88
- 4. libnotify (for Linux)
89
- 5. rb-fsevent (for Mac)
90
- 6. growl (for Mac)
91
- 7. annotate
86
+ 1. [Rspec](https://github.com/rspec/rspec-rails) (Generator would be run automatically. Spec file replaced)
87
+ 2. [Guard](https://github.com/guard/guard-rspec) (Initialized. Guard watches views & runs request specs)
88
+ 3. [Inotify](https://github.com/nex3/rb-inotify)
89
+ 4. [Libnotify](https://github.com/splattael/libnotify) (for Linux)
90
+ 5. [Fsvent](https://github.com/thibaudgg/rb-fsevent) (for Mac)
91
+ 6. [Growl](https://github.com/visionmedia/growl) (for Mac)
92
+ 7. [Annotate](https://github.com/ctran/annotate_models)
92
93
 
93
94
 
94
95
 
@@ -1,3 +1,3 @@
1
1
  module Bootup
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.4.1"
3
3
  end
@@ -75,7 +75,7 @@ module HelperMethods
75
75
  inside Rails.root do
76
76
  run "git init"
77
77
  end
78
- copy_file ".gitignore", "spec/spec_helper.rb"
78
+ copy_file ".gitignore", ".gitignore"
79
79
  inside Rails.root do
80
80
  run "git add ."
81
81
  run "git commit -m 'Initial Commit'"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.4.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-29 00:00:00.000000000 Z
12
+ date: 2012-11-30 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Helps create a new rails app quickly
15
15
  email: