Skip to content

Commit 429da37

Browse files
committed
Merge pull request #22 from pcreux/rails4
Switch over to Rails4
2 parents db1b518 + 1515474 commit 429da37

File tree

153 files changed

+1477
-28865
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+1477
-28865
lines changed

.gitignore

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
.bundle
2-
db/*.sqlite3
3-
log/*.log
4-
tmp/**/*
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*.log
16+
/tmp

.rspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
--color
2+
--warnings
3+
--require spec_helper

Gemfile

Lines changed: 48 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,64 @@
1-
source 'http://rubygems.org'
1+
source 'https://rubygems.org'
2+
ruby '2.2.0'
3+
4+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5+
gem 'rails', '4.1.8'
6+
7+
# Use SCSS for stylesheets
8+
gem 'sass-rails', '~> 4.0.3'
9+
# Use Uglifier as compressor for JavaScript assets
10+
gem 'uglifier', '>= 1.3.0'
11+
# Use CoffeeScript for .js.coffee assets and views
12+
gem 'coffee-rails', '~> 4.0.0'
13+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
14+
# gem 'therubyracer', platforms: :ruby
15+
16+
# Use jquery as the JavaScript library
17+
gem 'jquery-rails'
18+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
19+
gem 'turbolinks'
20+
21+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
22+
gem 'spring', group: :development
23+
24+
gem 'activeadmin', github: 'activeadmin'
25+
gem 'inherited_resources', '~> 1.4.1'
26+
gem "devise"
227

3-
gem 'rails', '3.0.10'
4-
gem 'sqlite3-ruby', :require => 'sqlite3'
5-
gem 'nifty-generators'
6-
gem "activeadmin", '0.5.0'
728
gem "faker"
8-
gem 'newrelic_rpm', '3.1.1'
29+
#gem 'newrelic_rpm', '3.1.1'
930
gem 'hoptoad_notifier', '2.4.11'
10-
gem 'rack-throttle'
1131

1232
group :development do
13-
gem 'mechanize'
33+
gem 'mechanize','2.7.3'
1434
end
1535

1636
group :production do
37+
gem 'pg'
1738
gem 'unicorn'
1839

1940
# Enable gzip compression on heroku, but don't compress images.
2041
gem 'heroku-deflater'
2142

2243
# Heroku injects it if it's not in there already
2344
gem 'rails_12factor'
45+
46+
gem 'rack-throttle'
47+
gem 'rack-cache'
2448
end
49+
50+
group :development, :test do
51+
gem 'sqlite3'
52+
gem 'factory_girl_rails'
53+
gem 'rspec-rails', '~> 3.0.0'
54+
gem 'spork', '~> 1.0rc'
55+
end
56+
57+
group :test do
58+
gem "shoulda"
59+
gem "shoulda-matchers"
60+
gem "webmock", "~> 1.11.0"
61+
gem "webrat"
62+
gem 'simplecov', :require => false
63+
end
64+

0 commit comments

Comments
 (0)