forked from OpenNeo/impress
ruby 2.0.0 compatibility... hopefully.
This commit is contained in:
parent
0074e54417
commit
f547a75c40
13 changed files with 49 additions and 48 deletions
4
Gemfile
4
Gemfile
|
@ -15,10 +15,10 @@ gem 'devise', '~> 1.1.5'
|
||||||
# unstable version of RocketAMF interprets info registry as a hash instead of an array
|
# unstable version of RocketAMF interprets info registry as a hash instead of an array
|
||||||
gem 'RocketAMF', :git => 'git://github.com/rubyamf/rocketamf.git'
|
gem 'RocketAMF', :git => 'git://github.com/rubyamf/rocketamf.git'
|
||||||
|
|
||||||
gem 'msgpack', '~> 0.4.3'
|
gem 'msgpack', '~> 0.5.3'
|
||||||
gem 'openneo-auth-signatory', '~> 0.1.0'
|
gem 'openneo-auth-signatory', '~> 0.1.0'
|
||||||
|
|
||||||
gem 'jammit', '~> 0.5.3'
|
gem 'jammit', '~> 0.6.5'
|
||||||
|
|
||||||
gem 'hoptoad_notifier'
|
gem 'hoptoad_notifier'
|
||||||
|
|
||||||
|
|
12
Gemfile.lock
12
Gemfile.lock
|
@ -116,7 +116,6 @@ GEM
|
||||||
activesupport (~> 3.0)
|
activesupport (~> 3.0)
|
||||||
character-encodings (0.4.1)
|
character-encodings (0.4.1)
|
||||||
chronic (0.6.7)
|
chronic (0.6.7)
|
||||||
closure-compiler (1.1.8)
|
|
||||||
compass (0.10.6)
|
compass (0.10.6)
|
||||||
haml (>= 3.0.4)
|
haml (>= 3.0.4)
|
||||||
cookiejar (0.3.0)
|
cookiejar (0.3.0)
|
||||||
|
@ -152,9 +151,8 @@ GEM
|
||||||
builder
|
builder
|
||||||
http_parser.rb (0.5.3)
|
http_parser.rb (0.5.3)
|
||||||
i18n (0.5.0)
|
i18n (0.5.0)
|
||||||
jammit (0.5.4)
|
jammit (0.6.5)
|
||||||
closure-compiler (>= 0.1.0)
|
yui-compressor (>= 0.9.3)
|
||||||
yui-compressor (>= 0.9.1)
|
|
||||||
json (1.7.7)
|
json (1.7.7)
|
||||||
mail (2.2.19)
|
mail (2.2.19)
|
||||||
activesupport (>= 2.3.6)
|
activesupport (>= 2.3.6)
|
||||||
|
@ -165,7 +163,7 @@ GEM
|
||||||
mime-types (1.19)
|
mime-types (1.19)
|
||||||
mini_magick (3.4)
|
mini_magick (3.4)
|
||||||
subexec (~> 0.2.1)
|
subexec (~> 0.2.1)
|
||||||
msgpack (0.4.7)
|
msgpack (0.5.3)
|
||||||
multi_json (1.3.7)
|
multi_json (1.3.7)
|
||||||
mysql2 (0.2.18)
|
mysql2 (0.2.18)
|
||||||
net-scp (1.0.4)
|
net-scp (1.0.4)
|
||||||
|
@ -295,11 +293,11 @@ DEPENDENCIES
|
||||||
haml (~> 3.0.18)
|
haml (~> 3.0.18)
|
||||||
hoptoad_notifier
|
hoptoad_notifier
|
||||||
http_accept_language!
|
http_accept_language!
|
||||||
jammit (~> 0.5.3)
|
jammit (~> 0.6.5)
|
||||||
json (~> 1.7.7)
|
json (~> 1.7.7)
|
||||||
memcache-client (~> 1.8.5)
|
memcache-client (~> 1.8.5)
|
||||||
mini_magick (~> 3.4)
|
mini_magick (~> 3.4)
|
||||||
msgpack (~> 0.4.3)
|
msgpack (~> 0.5.3)
|
||||||
mysql2 (< 0.3)
|
mysql2 (< 0.3)
|
||||||
mysqlplus!
|
mysqlplus!
|
||||||
neopets (~> 0.2.0)!
|
neopets (~> 0.2.0)!
|
||||||
|
|
|
@ -56,6 +56,7 @@ class PetsController < ApplicationController
|
||||||
|
|
||||||
def pet_download_error(e)
|
def pet_download_error(e)
|
||||||
Rails.logger.warn e.message
|
Rails.logger.warn e.message
|
||||||
|
Rails.logger.warn e.backtrace.join("\n")
|
||||||
pet_load_error :long_message => t('pets.load.pet_download_error'),
|
pet_load_error :long_message => t('pets.load.pet_download_error'),
|
||||||
:status => :gateway_timeout
|
:status => :gateway_timeout
|
||||||
end
|
end
|
||||||
|
|
|
@ -58,7 +58,7 @@ class Pet < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
raise DownloadError, e.message
|
raise DownloadError, e.message
|
||||||
rescue RocketAMF::RemoteGateway::ConnectionError => e
|
rescue RocketAMF::RemoteGateway::ConnectionError => e
|
||||||
raise DownloadError, e.message
|
raise DownloadError, e.message, e.backtrace
|
||||||
end
|
end
|
||||||
OpenStruct.new(envelope.messages[0].data.body)
|
OpenStruct.new(envelope.messages[0].data.body)
|
||||||
end
|
end
|
||||||
|
|
|
@ -42,6 +42,8 @@ module OpenneoImpressItems
|
||||||
config.filter_parameters << :password
|
config.filter_parameters << :password
|
||||||
|
|
||||||
Mime::Type.register "image/gif", :gif
|
Mime::Type.register "image/gif", :gif
|
||||||
|
|
||||||
|
ActionController::Base.config.relative_url_root = ''
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ module RocketAMF
|
||||||
uri = @action.service.gateway.uri
|
uri = @action.service.gateway.uri
|
||||||
data = envelope.serialize
|
data = envelope.serialize
|
||||||
|
|
||||||
req = Net::HTTP::Post.new(uri.path)
|
req = Net::HTTP::Post.new(uri.request_uri)
|
||||||
req.body = data
|
req.body = data
|
||||||
headers = options[:headers] || {}
|
headers = options[:headers] || {}
|
||||||
headers.each do |key, value|
|
headers.each do |key, value|
|
||||||
|
@ -46,7 +46,7 @@ module RocketAMF
|
||||||
begin
|
begin
|
||||||
result = RocketAMF::Envelope.new.populate_from_stream(response_body)
|
result = RocketAMF::Envelope.new.populate_from_stream(response_body)
|
||||||
rescue Exception => e
|
rescue Exception => e
|
||||||
raise ConnectionError, e.message
|
raise ConnectionError, e.message, e.backtrace
|
||||||
end
|
end
|
||||||
|
|
||||||
first_message_data = result.messages[0].data
|
first_message_data = result.messages[0].data
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* line 29, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 29, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
body {
|
body {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||||
|
@ -7,12 +7,12 @@ body {
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 52, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 52, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
.container {
|
.container {
|
||||||
background: none;
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 54, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 54, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
hr {
|
hr {
|
||||||
background: #cccccc;
|
background: #cccccc;
|
||||||
color: #cccccc;
|
color: #cccccc;
|
||||||
|
@ -22,40 +22,40 @@ hr {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
/* line 62, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 62, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
hr.space {
|
hr.space {
|
||||||
background: white;
|
background: white;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 65, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 65, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 67, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 67, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
code {
|
code {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
font-family: "andale mono", "lucida console", monospace;
|
font-family: "andale mono", "lucida console", monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 72, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 72, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
a img {
|
a img {
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
/* line 75, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 75, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
a:link, a:visited {
|
a:link, a:visited {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 79, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 79, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
p img.top {
|
p img.top {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 81, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 81, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
blockquote {
|
blockquote {
|
||||||
margin: 1.5em;
|
margin: 1.5em;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
|
@ -63,22 +63,22 @@ blockquote {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 86, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 86, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
.small {
|
.small {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 88, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 88, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
.large {
|
.large {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 90, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 90, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
.quiet {
|
.quiet {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* line 92, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
/* line 92, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/blueprint/stylesheets/blueprint/_print.scss */
|
||||||
.hide {
|
.hide {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -651,7 +651,7 @@ body.closet_hangers-index #closet-hangers-contact a, body.closet_hangers-index #
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
}
|
}
|
||||||
/* line 4, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss */
|
/* line 4, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/links/_hover-link.scss */
|
||||||
body.closet_hangers-index #closet-hangers-contact a:hover, body.closet_hangers-index #closet-hangers-contact > span:hover {
|
body.closet_hangers-index #closet-hangers-contact a:hover, body.closet_hangers-index #closet-hangers-contact > span:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
@ -1338,7 +1338,7 @@ body.closet_hangers-petpage #petpage-closet-lists h4 {
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.closet_hangers-petpage #petpage-closet-lists h4 {
|
body.closet_hangers-petpage #petpage-closet-lists h4 {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -1363,7 +1363,7 @@ body.closet_hangers-petpage #petpage-closet-lists ul li {
|
||||||
margin: 0.25em 0.5em;
|
margin: 0.25em 0.5em;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.closet_hangers-petpage #petpage-closet-lists ul li {
|
body.closet_hangers-petpage #petpage-closet-lists ul li {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -1775,7 +1775,7 @@ body.items-show #item-header div, body.items-show #item-header img {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.items-show #item-header div, body.items-show #item-header img {
|
body.items-show #item-header div, body.items-show #item-header img {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -1829,7 +1829,7 @@ body.items-show #item-preview-species a {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.items-show #item-preview-species a {
|
body.items-show #item-preview-species a {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -1951,17 +1951,17 @@ body.items-show #item-contributors footer {
|
||||||
body.items-show #item-contributors ul {
|
body.items-show #item-contributors ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
/* line 5, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
/* line 5, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
||||||
body.items-show #item-contributors ul, body.items-show #item-contributors ul li {
|
body.items-show #item-contributors ul, body.items-show #item-contributors ul li {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
/* line 24, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
/* line 24, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
||||||
body.items-show #item-contributors ul li:after {
|
body.items-show #item-contributors ul li:after {
|
||||||
content: ", ";
|
content: ", ";
|
||||||
}
|
}
|
||||||
/* line 26, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
/* line 26, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
||||||
body.items-show #item-contributors ul li:last-child:after, body.items-show #item-contributors ul li.last:after {
|
body.items-show #item-contributors ul li:last-child:after, body.items-show #item-contributors ul li.last:after {
|
||||||
content: "";
|
content: "";
|
||||||
}
|
}
|
||||||
|
@ -1981,7 +1981,7 @@ body.items-show #item-preview-header h3, body.items-show #item-preview-header a
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.items-show #item-preview-header h3, body.items-show #item-preview-header a {
|
body.items-show #item-preview-header h3, body.items-show #item-preview-header a {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -2077,7 +2077,7 @@ body.outfits-edit #preview-toolbar form {
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
margin-right: 2em;
|
margin-right: 2em;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit #preview-toolbar form {
|
body.outfits-edit #preview-toolbar form {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -2400,7 +2400,7 @@ body.outfits-edit #preview-search-form h2 {
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
margin: 0 1em 0 0;
|
margin: 0 1em 0 0;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit #preview-search-form h2 {
|
body.outfits-edit #preview-search-form h2 {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -2412,7 +2412,7 @@ body.outfits-edit #preview-search-form input {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit #preview-search-form input {
|
body.outfits-edit #preview-search-form input {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -2434,7 +2434,7 @@ body.outfits-edit #preview-search-form-pagination {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit #preview-search-form-pagination {
|
body.outfits-edit #preview-search-form-pagination {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -2531,7 +2531,7 @@ body.outfits-edit.fullscreen #preview-search-form-help div {
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
width: 48%;
|
width: 48%;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit.fullscreen #preview-search-form-help div {
|
body.outfits-edit.fullscreen #preview-search-form-help div {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -2727,7 +2727,7 @@ body.outfits-edit #preview-outfits > ul > li {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit #preview-outfits > ul > li {
|
body.outfits-edit #preview-outfits > ul > li {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -3060,7 +3060,7 @@ body.outfits-edit #preview-sharing #preview-sharing-url-formats li {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
padding: 0 2em;
|
padding: 0 2em;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit #preview-sharing #preview-sharing-url-formats li {
|
body.outfits-edit #preview-sharing #preview-sharing-url-formats li {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -3350,7 +3350,7 @@ body.outfits-edit form#save-outfit-form .outfit-star, body.outfits-edit form#sav
|
||||||
float: none;
|
float: none;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit form#save-outfit-form .outfit-star, body.outfits-edit form#save-outfit-form input, body.outfits-edit form#save-outfit-form button {
|
body.outfits-edit form#save-outfit-form .outfit-star, body.outfits-edit form#save-outfit-form input, body.outfits-edit form#save-outfit-form button {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -3401,7 +3401,7 @@ body.outfits-edit.user-signed-in .preview-search-form-your-items {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
*vertical-align: auto;
|
*vertical-align: auto;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-edit.user-signed-in .preview-search-form-your-items {
|
body.outfits-edit.user-signed-in .preview-search-form-your-items {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -3442,7 +3442,7 @@ body.outfits-index #outfits > li {
|
||||||
position: relative;
|
position: relative;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.outfits-index #outfits > li {
|
body.outfits-index #outfits > li {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -4077,7 +4077,7 @@ body.pets-bulk #needed-items-form #needed-items-pet #needed-items-reload {
|
||||||
margin-left: 1em;
|
margin-left: 1em;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.pets-bulk #needed-items-form #needed-items-pet #needed-items-reload {
|
body.pets-bulk #needed-items-form #needed-items-pet #needed-items-reload {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -4151,7 +4151,7 @@ body.pets-bulk #bulk-pets-form textarea {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
resize: none;
|
resize: none;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.pets-bulk #bulk-pets-form textarea {
|
body.pets-bulk #bulk-pets-form textarea {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
@ -4172,7 +4172,7 @@ body.pets-bulk #bulk-pets-form ul li {
|
||||||
min-width: 25%;
|
min-width: 25%;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
/* line 7, ../../../../../../.rvm/gems/ruby-1.9.3-p385/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
/* line 7, ../../../../../../.rvm/gems/ruby-2.0.0-p0/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/css3/_inline-block.scss */
|
||||||
body.pets-bulk #bulk-pets-form ul li {
|
body.pets-bulk #bulk-pets-form ul li {
|
||||||
*display: inline;
|
*display: inline;
|
||||||
}
|
}
|
||||||
|
|
BIN
vendor/cache/closure-compiler-1.1.8.gem
vendored
BIN
vendor/cache/closure-compiler-1.1.8.gem
vendored
Binary file not shown.
BIN
vendor/cache/jammit-0.5.4.gem
vendored
BIN
vendor/cache/jammit-0.5.4.gem
vendored
Binary file not shown.
BIN
vendor/cache/jammit-0.6.5.gem
vendored
Normal file
BIN
vendor/cache/jammit-0.6.5.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/msgpack-0.4.7.gem
vendored
BIN
vendor/cache/msgpack-0.4.7.gem
vendored
Binary file not shown.
BIN
vendor/cache/msgpack-0.5.3.gem
vendored
Normal file
BIN
vendor/cache/msgpack-0.5.3.gem
vendored
Normal file
Binary file not shown.
Loading…
Reference in a new issue