mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
Entering Rails 3.2(?)
This commit is contained in:
parent
d9b98b5829
commit
aaac87f93e
15
Gemfile
15
Gemfile
@ -1,9 +1,19 @@
|
||||
source 'http://rubygems.org'
|
||||
|
||||
gem 'rails', '~> 3.0.0'
|
||||
gem 'rails', '~> 3.2.0'
|
||||
gem 'jquery-rails'
|
||||
|
||||
group :assets do
|
||||
gem 'sass-rails', '~> 3.2.3'
|
||||
gem 'coffee-rails', '~> 3.2.1'
|
||||
|
||||
gem 'therubyracer', :platforms => :ruby
|
||||
|
||||
gem 'uglifier', '>= 1.0.3'
|
||||
end
|
||||
|
||||
gem 'pg', :platforms => :ruby
|
||||
gem 'activerecord-jdbcpostgresql-adapter', '~> 1.1.0', :platforms => :jruby
|
||||
gem 'activerecord-jdbcpostgresql-adapter', :platforms => :jruby
|
||||
gem 'jruby-openssl', :platforms => :jruby
|
||||
|
||||
gem 'html5'
|
||||
@ -23,7 +33,6 @@ gem 'sitemap_generator'
|
||||
gem 'daemons'
|
||||
gem 'newrelic_rpm'
|
||||
gem 'nokogiri'
|
||||
gem 'verification'
|
||||
gem 'unicorn', :platforms => :mri
|
||||
gem 'puma', :platforms => [:jruby, :rbx]
|
||||
gem 'rails-i18n'
|
||||
|
159
Gemfile.lock
159
Gemfile.lock
@ -1,40 +1,41 @@
|
||||
GEM
|
||||
remote: http://rubygems.org/
|
||||
specs:
|
||||
abstract (1.0.0)
|
||||
actionmailer (3.0.15)
|
||||
actionpack (= 3.0.15)
|
||||
mail (~> 2.2.19)
|
||||
actionpack (3.0.15)
|
||||
activemodel (= 3.0.15)
|
||||
activesupport (= 3.0.15)
|
||||
builder (~> 2.1.2)
|
||||
erubis (~> 2.6.6)
|
||||
i18n (~> 0.5.0)
|
||||
rack (~> 1.2.5)
|
||||
rack-mount (~> 0.6.14)
|
||||
rack-test (~> 0.5.7)
|
||||
tzinfo (~> 0.3.23)
|
||||
activemodel (3.0.15)
|
||||
activesupport (= 3.0.15)
|
||||
builder (~> 2.1.2)
|
||||
i18n (~> 0.5.0)
|
||||
activerecord (3.0.15)
|
||||
activemodel (= 3.0.15)
|
||||
activesupport (= 3.0.15)
|
||||
arel (~> 2.0.10)
|
||||
tzinfo (~> 0.3.23)
|
||||
activerecord-jdbc-adapter (1.1.3)
|
||||
activerecord-jdbcpostgresql-adapter (1.1.3)
|
||||
activerecord-jdbc-adapter (= 1.1.3)
|
||||
jdbc-postgres (~> 9.0.0)
|
||||
activeresource (3.0.15)
|
||||
activemodel (= 3.0.15)
|
||||
activesupport (= 3.0.15)
|
||||
activesupport (3.0.15)
|
||||
acts_as_versioned (0.6.0)
|
||||
activerecord (~> 3.0.0.beta4)
|
||||
arel (2.0.10)
|
||||
actionmailer (3.2.6)
|
||||
actionpack (= 3.2.6)
|
||||
mail (~> 2.4.4)
|
||||
actionpack (3.2.6)
|
||||
activemodel (= 3.2.6)
|
||||
activesupport (= 3.2.6)
|
||||
builder (~> 3.0.0)
|
||||
erubis (~> 2.7.0)
|
||||
journey (~> 1.0.1)
|
||||
rack (~> 1.4.0)
|
||||
rack-cache (~> 1.2)
|
||||
rack-test (~> 0.6.1)
|
||||
sprockets (~> 2.1.3)
|
||||
activemodel (3.2.6)
|
||||
activesupport (= 3.2.6)
|
||||
builder (~> 3.0.0)
|
||||
activerecord (3.2.6)
|
||||
activemodel (= 3.2.6)
|
||||
activesupport (= 3.2.6)
|
||||
arel (~> 3.0.2)
|
||||
tzinfo (~> 0.3.29)
|
||||
activerecord-jdbc-adapter (1.2.2)
|
||||
activerecord-jdbcpostgresql-adapter (1.2.2)
|
||||
activerecord-jdbc-adapter (~> 1.2.2)
|
||||
jdbc-postgres (>= 9.0, < 9.2)
|
||||
activeresource (3.2.6)
|
||||
activemodel (= 3.2.6)
|
||||
activesupport (= 3.2.6)
|
||||
activesupport (3.2.6)
|
||||
i18n (~> 0.6)
|
||||
multi_json (~> 1.0)
|
||||
acts_as_versioned (0.2.3)
|
||||
activerecord (>= 1.10.1)
|
||||
activesupport (>= 1.1.1)
|
||||
arel (3.0.2)
|
||||
bouncy-castle-java (1.5.0146.1)
|
||||
brakeman (1.6.2)
|
||||
activesupport
|
||||
@ -48,22 +49,31 @@ GEM
|
||||
ruby_parser (= 2.3.1)
|
||||
sass (~> 3.0)
|
||||
terminal-table (~> 1.4)
|
||||
builder (2.1.2)
|
||||
builder (3.0.0)
|
||||
chardet (0.9.0)
|
||||
cloudflare (1.0.0)
|
||||
json
|
||||
coffee-rails (3.2.2)
|
||||
coffee-script (>= 2.2.0)
|
||||
railties (~> 3.2.0)
|
||||
coffee-script (2.2.0)
|
||||
coffee-script-source
|
||||
execjs
|
||||
coffee-script-source (1.3.3)
|
||||
daemons (1.1.8)
|
||||
dalli (2.1.0)
|
||||
diff-lcs (1.1.3)
|
||||
erubis (2.6.6)
|
||||
abstract (>= 1.0.0)
|
||||
erubis (2.7.0)
|
||||
exception_notification (2.6.1)
|
||||
actionmailer (>= 3.0.4)
|
||||
execjs (1.4.0)
|
||||
multi_json (~> 1.0)
|
||||
fastercsv (1.5.5)
|
||||
gchartrb (0.8)
|
||||
geoip (1.1.2)
|
||||
haml (3.1.6)
|
||||
highline (1.6.13)
|
||||
hike (1.2.1)
|
||||
hoe (3.0.6)
|
||||
rake (~> 0.8)
|
||||
hpricot (0.8.6)
|
||||
@ -71,20 +81,25 @@ GEM
|
||||
html5 (0.10.0)
|
||||
chardet (>= 0.9.0)
|
||||
hoe (>= 1.2.0)
|
||||
i18n (0.5.0)
|
||||
jdbc-postgres (9.0.801)
|
||||
i18n (0.6.0)
|
||||
jdbc-postgres (9.1.901)
|
||||
journey (1.0.4)
|
||||
jquery-rails (2.0.2)
|
||||
railties (>= 3.2.0, < 5.0)
|
||||
thor (~> 0.14)
|
||||
jruby-openssl (0.7.7)
|
||||
bouncy-castle-java (>= 1.5.0146.1)
|
||||
json (1.7.3)
|
||||
json (1.7.3-java)
|
||||
json_pure (1.7.3)
|
||||
kgio (2.7.4)
|
||||
mail (2.2.19)
|
||||
activesupport (>= 2.3.6)
|
||||
libv8 (3.3.10.4)
|
||||
mail (2.4.4)
|
||||
i18n (>= 0.4.0)
|
||||
mime-types (~> 1.16)
|
||||
treetop (~> 1.4.8)
|
||||
mime-types (1.19)
|
||||
multi_json (1.3.6)
|
||||
newrelic_rpm (3.4.0)
|
||||
nokogiri (1.5.5)
|
||||
nokogiri (1.5.5-java)
|
||||
@ -94,27 +109,30 @@ GEM
|
||||
rack (~> 1.2)
|
||||
puma (1.4.0-java)
|
||||
rack (~> 1.2)
|
||||
rack (1.2.5)
|
||||
rack-mount (0.6.14)
|
||||
rack (>= 1.0.0)
|
||||
rack-test (0.5.7)
|
||||
rack (1.4.1)
|
||||
rack-cache (1.2)
|
||||
rack (>= 0.4)
|
||||
rack-ssl (1.3.2)
|
||||
rack
|
||||
rack-test (0.6.1)
|
||||
rack (>= 1.0)
|
||||
rails (3.0.15)
|
||||
actionmailer (= 3.0.15)
|
||||
actionpack (= 3.0.15)
|
||||
activerecord (= 3.0.15)
|
||||
activeresource (= 3.0.15)
|
||||
activesupport (= 3.0.15)
|
||||
rails (3.2.6)
|
||||
actionmailer (= 3.2.6)
|
||||
actionpack (= 3.2.6)
|
||||
activerecord (= 3.2.6)
|
||||
activeresource (= 3.2.6)
|
||||
activesupport (= 3.2.6)
|
||||
bundler (~> 1.0)
|
||||
railties (= 3.0.15)
|
||||
railties (= 3.2.6)
|
||||
rails-i18n (0.6.4)
|
||||
i18n (~> 0.5)
|
||||
railties (3.0.15)
|
||||
actionpack (= 3.0.15)
|
||||
activesupport (= 3.0.15)
|
||||
railties (3.2.6)
|
||||
actionpack (= 3.2.6)
|
||||
activesupport (= 3.2.6)
|
||||
rack-ssl (~> 1.3.2)
|
||||
rake (>= 0.8.7)
|
||||
rdoc (~> 3.4)
|
||||
thor (~> 0.14.4)
|
||||
thor (>= 0.14.6, < 2.0)
|
||||
raindrops (0.10.0)
|
||||
rake (0.9.2.2)
|
||||
rdoc (3.12)
|
||||
@ -133,26 +151,37 @@ GEM
|
||||
ruby_parser (2.3.1)
|
||||
sexp_processor (~> 3.0)
|
||||
sass (3.1.19)
|
||||
sass-rails (3.2.5)
|
||||
railties (~> 3.2.0)
|
||||
sass (>= 3.1.10)
|
||||
tilt (~> 1.3)
|
||||
schema_plus (0.4.1)
|
||||
rails
|
||||
valuable
|
||||
sexp_processor (3.2.0)
|
||||
sitemap_generator (3.1.1)
|
||||
builder
|
||||
sprockets (2.1.3)
|
||||
hike (~> 1.2)
|
||||
rack (~> 1.0)
|
||||
tilt (~> 1.1, != 1.3.0)
|
||||
terminal-table (1.4.5)
|
||||
thor (0.14.6)
|
||||
therubyracer (0.10.1)
|
||||
libv8 (~> 3.3.10)
|
||||
thor (0.15.3)
|
||||
tilt (1.3.3)
|
||||
treetop (1.4.10)
|
||||
polyglot
|
||||
polyglot (>= 0.3.1)
|
||||
tzinfo (0.3.33)
|
||||
uglifier (1.2.5)
|
||||
execjs (>= 0.3.0)
|
||||
multi_json (~> 1.3)
|
||||
unicorn (4.3.1)
|
||||
kgio (~> 2.6)
|
||||
rack
|
||||
raindrops (~> 0.7)
|
||||
valuable (0.9.5)
|
||||
verification (1.0.1)
|
||||
actionpack (~> 3.0.0)
|
||||
activesupport (~> 3.0.0)
|
||||
will-paginate-i18n (0.1.7)
|
||||
will_paginate (3.0.3)
|
||||
|
||||
@ -161,10 +190,11 @@ PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
activerecord-jdbcpostgresql-adapter (~> 1.1.0)
|
||||
activerecord-jdbcpostgresql-adapter
|
||||
acts_as_versioned
|
||||
brakeman
|
||||
cloudflare
|
||||
coffee-rails (~> 3.2.1)
|
||||
daemons
|
||||
dalli
|
||||
diff-lcs
|
||||
@ -173,6 +203,7 @@ DEPENDENCIES
|
||||
geoip
|
||||
hpricot
|
||||
html5
|
||||
jquery-rails
|
||||
jruby-openssl
|
||||
json
|
||||
mime-types
|
||||
@ -180,12 +211,14 @@ DEPENDENCIES
|
||||
nokogiri
|
||||
pg
|
||||
puma
|
||||
rails (~> 3.0.0)
|
||||
rails (~> 3.2.0)
|
||||
rails-i18n
|
||||
rspec
|
||||
sass-rails (~> 3.2.3)
|
||||
schema_plus
|
||||
sitemap_generator
|
||||
therubyracer
|
||||
uglifier (>= 1.0.3)
|
||||
unicorn
|
||||
verification
|
||||
will-paginate-i18n
|
||||
will_paginate
|
||||
|
Loading…
x
Reference in New Issue
Block a user