Using jquery-rails, rack 1.3.5, organized gemfile
This commit is contained in:
parent
3b97c12c70
commit
bff4107ec9
17
Gemfile
17
Gemfile
|
@ -1,23 +1,30 @@
|
||||||
source 'http://rubygems.org'
|
source 'http://rubygems.org'
|
||||||
|
|
||||||
|
# Rails & server stuff
|
||||||
gem 'rails', '3.1.0'
|
gem 'rails', '3.1.0'
|
||||||
gem 'unicorn'
|
gem 'unicorn'
|
||||||
|
gem 'delayed_job'
|
||||||
|
|
||||||
|
# Rails 3.1 support gems
|
||||||
|
gem 'therubyracer', :require => false
|
||||||
|
|
||||||
|
# Data parse utils
|
||||||
gem 'json'
|
gem 'json'
|
||||||
gem 'nokogiri'
|
gem 'nokogiri'
|
||||||
|
|
||||||
|
# JS & CSS
|
||||||
gem 'haml'
|
gem 'haml'
|
||||||
gem 'sass'
|
gem 'sass'
|
||||||
gem 'coffee-script'
|
gem 'coffee-script'
|
||||||
|
gem 'jquery-rails'
|
||||||
|
|
||||||
gem 'therubyracer', :require => false
|
# Music related stuff
|
||||||
|
|
||||||
gem 'awesome_print', :require => 'ap'
|
|
||||||
gem 'delayed_job'
|
|
||||||
gem 'lastfm-client', :git => 'http://github.com/pch/lastfm-client.git'
|
gem 'lastfm-client', :git => 'http://github.com/pch/lastfm-client.git'
|
||||||
gem 'musicbrainz'
|
gem 'musicbrainz', :require => 'musicbrainz'
|
||||||
|
|
||||||
|
# Misc utils
|
||||||
gem 'bitmask_attributes'
|
gem 'bitmask_attributes'
|
||||||
|
gem 'awesome_print', :require => 'ap'
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'mysql2', '0.3.7'
|
gem 'mysql2', '0.3.7'
|
||||||
|
|
14
Gemfile.lock
14
Gemfile.lock
|
@ -57,6 +57,9 @@ GEM
|
||||||
haml (3.1.3)
|
haml (3.1.3)
|
||||||
hike (1.2.1)
|
hike (1.2.1)
|
||||||
i18n (0.6.0)
|
i18n (0.6.0)
|
||||||
|
jquery-rails (1.0.16)
|
||||||
|
railties (~> 3.0)
|
||||||
|
thor (~> 0.14)
|
||||||
json (1.6.1)
|
json (1.6.1)
|
||||||
kgio (2.6.0)
|
kgio (2.6.0)
|
||||||
libv8 (3.3.10.2)
|
libv8 (3.3.10.2)
|
||||||
|
@ -72,7 +75,7 @@ GEM
|
||||||
nokogiri (1.5.0)
|
nokogiri (1.5.0)
|
||||||
pg (0.11.0)
|
pg (0.11.0)
|
||||||
polyglot (0.3.2)
|
polyglot (0.3.2)
|
||||||
rack (1.3.4)
|
rack (1.3.5)
|
||||||
rack-cache (1.0.3)
|
rack-cache (1.0.3)
|
||||||
rack (>= 0.4)
|
rack (>= 0.4)
|
||||||
rack-mount (0.8.3)
|
rack-mount (0.8.3)
|
||||||
|
@ -96,12 +99,12 @@ GEM
|
||||||
rake (>= 0.8.7)
|
rake (>= 0.8.7)
|
||||||
rdoc (~> 3.4)
|
rdoc (~> 3.4)
|
||||||
thor (~> 0.14.6)
|
thor (~> 0.14.6)
|
||||||
raindrops (0.7.0)
|
raindrops (0.8.0)
|
||||||
rake (0.9.2)
|
rake (0.9.2)
|
||||||
rdoc (3.10)
|
rdoc (3.11)
|
||||||
json (~> 1.4)
|
json (~> 1.4)
|
||||||
sass (3.1.10)
|
sass (3.1.10)
|
||||||
sprockets (2.0.2)
|
sprockets (2.0.3)
|
||||||
hike (~> 1.2)
|
hike (~> 1.2)
|
||||||
rack (~> 1.0)
|
rack (~> 1.0)
|
||||||
tilt (~> 1.1, != 1.3.0)
|
tilt (~> 1.1, != 1.3.0)
|
||||||
|
@ -113,7 +116,7 @@ GEM
|
||||||
polyglot
|
polyglot
|
||||||
polyglot (>= 0.3.1)
|
polyglot (>= 0.3.1)
|
||||||
tzinfo (0.3.30)
|
tzinfo (0.3.30)
|
||||||
uglifier (1.0.3)
|
uglifier (1.0.4)
|
||||||
execjs (>= 0.3.0)
|
execjs (>= 0.3.0)
|
||||||
multi_json (>= 1.0.2)
|
multi_json (>= 1.0.2)
|
||||||
unicorn (4.1.1)
|
unicorn (4.1.1)
|
||||||
|
@ -130,6 +133,7 @@ DEPENDENCIES
|
||||||
coffee-script
|
coffee-script
|
||||||
delayed_job
|
delayed_job
|
||||||
haml
|
haml
|
||||||
|
jquery-rails
|
||||||
json
|
json
|
||||||
lastfm-client!
|
lastfm-client!
|
||||||
musicbrainz
|
musicbrainz
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
//= require jquery
|
||||||
|
//= require jquery-ui
|
||||||
//= require jquery/jquery.autocomplete
|
//= require jquery/jquery.autocomplete
|
||||||
//= require jquery/jplayer/jquery.jplayer.min
|
//= require jquery/jplayer/jquery.jplayer.min
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
%meta{ :charset => "utf-8" }
|
%meta{ :charset => "utf-8" }
|
||||||
%link{ :rel => "shortcut icon", :href => "/favicon.ico" }
|
%link{ :rel => "shortcut icon", :href => "/favicon.ico" }
|
||||||
= stylesheet_link_tag "application"
|
= stylesheet_link_tag "application"
|
||||||
= javascript_include_tag "http://code.jquery.com/jquery.min.js"
|
|
||||||
= javascript_include_tag "http://code.jquery.com/ui/1.8.14/jquery-ui.min.js"
|
|
||||||
= javascript_include_tag "application"
|
= javascript_include_tag "application"
|
||||||
%body
|
%body
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue