-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build using rails_apps_composer 2.4.3
- Loading branch information
1 parent
27500a6
commit db46304
Showing
30 changed files
with
350 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,77 @@ | ||
#---------------------------------------------------------------------------- | ||
# Ignore these files when commiting to a git repository. | ||
# | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
# The original version of this file is found here: | ||
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt | ||
# | ||
# Corrections? Improvements? Create a GitHub issue: | ||
# http://github.com/RailsApps/rails-composer/issues | ||
#---------------------------------------------------------------------------- | ||
|
||
# Ignore bundler config. | ||
# bundler state | ||
/.bundle | ||
/vendor/bundle/ | ||
/vendor/ruby/ | ||
|
||
# Ignore the default SQLite database. | ||
# minimal Rails specific artifacts | ||
db/*.sqlite3 | ||
/log/* | ||
/tmp/* | ||
|
||
# various artifacts | ||
**.war | ||
*.rbc | ||
*.sassc | ||
.rspec | ||
.redcar/ | ||
.sass-cache | ||
/config/config.yml | ||
/config/database.yml | ||
/coverage.data | ||
/coverage/ | ||
/db/*.javadb/ | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
/doc/api/ | ||
/doc/app/ | ||
/doc/features.html | ||
/doc/specs.html | ||
/public/cache | ||
/public/stylesheets/compiled | ||
/public/system/* | ||
/spec/tmp/* | ||
/cache | ||
/capybara* | ||
/capybara-*.html | ||
/gems | ||
/specifications | ||
rerun.txt | ||
pickle-email-*.html | ||
|
||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile ~/.gitignore_global | ||
# | ||
# Here are some files you may want to ignore globally: | ||
|
||
# scm revert files | ||
**.orig | ||
|
||
# Mac finder artifacts | ||
.DS_Store | ||
|
||
# Netbeans project directory | ||
/nbproject/ | ||
|
||
# RubyMine project files | ||
.idea | ||
|
||
# Textmate project files | ||
/*.tmproj | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/*.log | ||
/tmp | ||
# vim artifacts | ||
**.swp | ||
|
||
# Ignore application configuration | ||
/config/application.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby-2.0.0-p0 | ||
2.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
source 'https://rubygems.org' | ||
ruby '2.0.0' | ||
gem 'rails', '4.0.0.rc2' | ||
|
||
# Rails defaults | ||
gem 'sass-rails', '~> 4.0.0.rc2' | ||
gem 'rails', '4.0.0' | ||
gem 'sass-rails', '~> 4.0.0' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'coffee-rails', '~> 4.0.0' | ||
gem 'jquery-rails' | ||
gem 'turbolinks' | ||
gem 'jbuilder', '~> 1.0.1' | ||
|
||
# learn-rails | ||
gem 'jbuilder', '~> 1.2' | ||
gem 'activerecord-tableless' | ||
gem 'figaro' | ||
gem 'bootstrap-sass' | ||
gem 'simple_form' | ||
gem 'high_voltage' | ||
gem 'figaro' | ||
gem 'gibbon' | ||
gem 'high_voltage' | ||
gem 'simple_form', '>= 3.0.0.rc' | ||
group :development do | ||
gem 'sqlite3' | ||
gem 'better_errors' | ||
gem 'binding_of_caller', :platforms=>[:mri_19, :rbx] | ||
gem 'quiet_assets' | ||
gem 'sqlite3' | ||
end | ||
group :production do | ||
gem 'pg' | ||
gem 'thin' | ||
gem 'rails_on_heroku' | ||
gem 'thin' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Learn Rails | ||
============================================ | ||
|
||
This is an example Rails 4.0 application to accompany the "Learn Rails" book. | ||
|
||
See the "Learn Rails" book: | ||
http://learn-rails.com/ | ||
|
||
________________________ | ||
|
||
For more information, please see the updated README file on GitHub: | ||
|
||
https://github.com/railsapps/learn-rails | ||
|
||
________________________ | ||
|
||
MIT License | ||
|
||
http://www.opensource.org/licenses/mit-license |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.