Created
December 16, 2014 13:24
-
-
Save richardhartme/e871d12d05a0f97008a0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| source "https://rubygems.org" | |
| gem 'rails', '~> 4.0.11' | |
| gem "rails-observers", "~> 0.1.2" | |
| gem "pg" | |
| gem 'redis', '~> 3.1.0' | |
| # Use SCSS for stylesheets | |
| gem 'sass-rails', '~> 4.0.4' | |
| # Use Uglifier as compressor for JavaScript assets | |
| gem "uglifier", ">= 1.3.0" | |
| # Use CoffeeScript for .js.coffee assets and views | |
| gem "coffee-rails", "~> 4.0.0" | |
| # See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
| gem "therubyracer", platforms: :ruby | |
| # Use jquery as the JavaScript library | |
| gem 'jquery-rails', '~> 3.1.2' | |
| gem "jquery-migrate-rails", "~> 1.2.1" | |
| # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
| #gem "turbolinks" | |
| # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
| gem "jbuilder", "~> 1.2" | |
| group :doc do | |
| # bundle exec rake doc:rails generates the API under doc/api. | |
| gem "sdoc", require: false | |
| end | |
| #gem 'rack-attack', '~> 3.0.0' | |
| gem "bourbon", "~> 3.1.6" | |
| gem "neat", "~> 1.3.0" | |
| gem "haml", "~> 4.0.5" | |
| gem "simple_form", "~> 3.0.1" | |
| gem 'bootstrap-sass', '~> 3.3.0.1' | |
| gem 'foundation-rails', '~> 5.4.5.0' | |
| gem 'mobylette', '~> 3.5' | |
| gem "aasm", "~> 3.1.0" | |
| gem "rails_config", "~> 0.3.3" | |
| # Spree core | |
| gem "spree", github: "Hates/spree", branch: "2-2-stable" | |
| gem "spree_auth_devise", github: "Hates/spree_auth_devise", branch: "2-2-stable" | |
| # Spree gateways | |
| gem "spree_paypal_express", github: "Hates/better_spree_paypal_express", branch: "2-2-stable", ref: "b00e970bc2147b8f7fb60a9f638ea92adb127edd" | |
| gem "spree_paymill_gateway", github: "Hates/spree_paymill_gateway", branch: "2-2-stable" | |
| # Spree third-party extensions | |
| gem "spree_static_content", github: "Hates/spree_static_content", branch: "2-2-stable", ref: "84a77297a61f241155c2301c1ba9b960a8354c68" | |
| gem "spree_wishlist", github: "Hates/spree_wishlist", branch: "2-2-stable", ref: "bfe8fe2466d13650b03f52e3a40e3afe145403ac" | |
| gem "spree_related_products", github: "Hates/spree_related_products", branch: "2-2-stable" | |
| gem 'spree_email_to_friend', github: 'Hates/spree_email_to_friend', branch: "2-2-stable" | |
| gem "spree_reviews", github: "Hates/spree_reviews", branch: "2-2-stable" | |
| gem "spree_sitemap", github: "Hates/spree_sitemap", branch: "2-2-stable" | |
| # Spree extensions | |
| gem 'spree_current_stock_report', github: "Hates/spree_current_stock_report", branch: "2-2-stable" | |
| gem 'spree_email_report', github: "Hates/spree_email_report", branch: "2-2-stable" | |
| gem "spree_one_use_code_promotion_rule", github: "Hates/spree_one_use_code_promotion_rule", branch: "2-2-stable" | |
| gem "spree_taxon_promotion_rule", github: "Hates/spree_taxon_promotion_rule", branch: "2-2-stable" | |
| gem "spree_tidy_taxons", github: "Hates/spree_tidy_taxons", branch: "2-2-stable" | |
| gem "spree_next_product_link", github: "Hates/spree_next_product_link", branch: "2-2-stable" | |
| gem "spree_view_product_link", github: "Hates/spree_view_product_link", branch: "2-2-stable" | |
| gem "spree_delete_product_link", github: "Hates/spree_delete_product_link", branch: "2-2-stable" | |
| gem "spree_abandoned_cart_email", github: "Hates/spree_abandoned_cart_email", branch: "2-2-stable" | |
| gem "spree_stock_email", github: "Hates/spree_stock_email", branch: "2-2-stable" | |
| gem "ruport", "~> 1.6.3" | |
| gem "prawn", "= 1.0.0.rc2" | |
| gem "barby", "~> 0.5.1" | |
| gem "chunky_png", "~> 1.2.8" | |
| gem "textacular", "~> 3.1.0" | |
| gem 'whenever', '~> 0.9.2', require: false | |
| group :development do | |
| gem 'capistrano', '~> 3.2.1' | |
| gem 'capistrano-bundler', '~> 1.1.3' | |
| gem 'capistrano-rails', '~> 1.1.2' | |
| end | |
| # Third party integrations. | |
| gem 'gibbon', '~> 1.1.4' | |
| gem 'rollbar', '~> 1.2.7' | |
| gem 'newrelic_rpm', '~> 3.9.6.257' | |
| gem "eu_central_bank", "~> 0.3.5" | |
| gem "paypal-sdk-adaptivepayments", "~> 1.105.0" | |
| group :development, :test do | |
| gem "quiet_assets" | |
| gem "rspec-rails" | |
| gem 'rspec-activemodel-mocks' | |
| gem "capybara" | |
| gem 'watir' | |
| gem "ffaker" | |
| gem "database_cleaner" | |
| gem "factory_girl_rails" | |
| gem 'awesome_print' | |
| gem 'pry', '~> 0.10.1' | |
| gem 'pry-rails', '~> 0.3.2' | |
| gem 'pry-remote', '~> 0.1.8' | |
| gem 'pry-byebug', '~> 2.0.0' | |
| gem "spring" | |
| gem "spring-commands-rspec" | |
| gem "guard" | |
| gem "guard-rspec" | |
| gem "letter_opener" | |
| end | |
| group :test do | |
| gem "vcr" | |
| gem "webmock" | |
| end |
This file contains hidden or 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
| GIT | |
| remote: git://github.com/Hates/better_spree_paypal_express.git | |
| revision: b00e970bc2147b8f7fb60a9f638ea92adb127edd | |
| ref: b00e970bc2147b8f7fb60a9f638ea92adb127edd | |
| branch: 2-2-stable | |
| specs: | |
| spree_paypal_express (2.0.3) | |
| paypal-sdk-merchant (= 1.106.1) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree.git | |
| revision: 65b3f90035259e7042a933678d4ed5951d74b743 | |
| branch: 2-2-stable | |
| specs: | |
| spree (2.2.9.beta) | |
| spree_api (= 2.2.9.beta) | |
| spree_backend (= 2.2.9.beta) | |
| spree_cmd (= 2.2.9.beta) | |
| spree_core (= 2.2.9.beta) | |
| spree_frontend (= 2.2.9.beta) | |
| spree_sample (= 2.2.9.beta) | |
| spree_api (2.2.9.beta) | |
| rabl (= 0.9.3) | |
| spree_core (= 2.2.9.beta) | |
| versioncake (~> 1.2.0) | |
| spree_backend (2.2.9.beta) | |
| jquery-rails (~> 3.1.2) | |
| jquery-ui-rails (~> 4.1.0) | |
| select2-rails (~> 3.4.7) | |
| spree_api (= 2.2.9.beta) | |
| spree_core (= 2.2.9.beta) | |
| spree_cmd (2.2.9.beta) | |
| thor (~> 0.14) | |
| spree_core (2.2.9.beta) | |
| activemerchant (~> 1.43.1) | |
| acts_as_list (= 0.3.0) | |
| awesome_nested_set (~> 3.0.0.rc.3) | |
| aws-sdk (= 1.27.0) | |
| cancan (~> 1.6.10) | |
| deface (~> 1.0.0) | |
| ffaker (~> 1.16) | |
| font-awesome-rails (~> 4.0) | |
| friendly_id (~> 5.0.4) | |
| highline (~> 1.6.18) | |
| httparty (~> 0.11) | |
| i18n (= 0.6.9) | |
| json (~> 1.7) | |
| kaminari (~> 0.15.0) | |
| monetize | |
| paperclip (~> 3.4.1) | |
| paranoia (~> 2.0) | |
| rails (~> 4.0.12) | |
| ransack (~> 1.1.0) | |
| state_machine (= 1.2.0) | |
| stringex (~> 1.5.1) | |
| truncate_html (= 0.9.2) | |
| spree_frontend (2.2.9.beta) | |
| canonical-rails (~> 0.0.4) | |
| jquery-rails (~> 3.1.2) | |
| spree_api (= 2.2.9.beta) | |
| spree_core (= 2.2.9.beta) | |
| stringex (~> 1.5.1) | |
| spree_sample (2.2.9.beta) | |
| spree_core (= 2.2.9.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_abandoned_cart_email.git | |
| revision: 8f276c240d5dc0a3f76bd5b1baa617e50ab2f85d | |
| branch: 2-2-stable | |
| specs: | |
| spree_abandoned_cart_email (0.0.3) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_auth_devise.git | |
| revision: 01901766a2562026e2f3eb523a3f0f9bea8ae31e | |
| branch: 2-2-stable | |
| specs: | |
| spree_auth_devise (2.2.0) | |
| cancan (~> 1.6.10) | |
| devise (~> 3.2.3) | |
| devise-encryptable (= 0.1.2) | |
| json | |
| multi_json | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_current_stock_report.git | |
| revision: a86061538a35c5ae96a6425bd9d27622b1f09145 | |
| branch: 2-2-stable | |
| specs: | |
| spree_current_stock_report (0.0.1) | |
| ruport (~> 1.6.3) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_delete_product_link.git | |
| revision: 233e89fda9f39d2b171d255ae74d8db109aab9b1 | |
| branch: 2-2-stable | |
| specs: | |
| spree_delete_product_link (0.0.2) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_email_report.git | |
| revision: 741317caa0251dc68e4707c90b6ca19b51a74361 | |
| branch: 2-2-stable | |
| specs: | |
| spree_email_report (0.0.1) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_email_to_friend.git | |
| revision: 2fd0263ba01ebbcf98c64da4dfcaac967486a1d7 | |
| branch: 2-2-stable | |
| specs: | |
| spree_email_to_friend (1.3) | |
| recaptcha (>= 0.3.1) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_next_product_link.git | |
| revision: 061d7717794cf19a257b0cc3e53a6b459eaf893a | |
| branch: 2-2-stable | |
| specs: | |
| spree_next_product_link (0.0.1) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_one_use_code_promotion_rule.git | |
| revision: 250eedcf12723cb8f8fc7ff79823239a5e58ca89 | |
| branch: 2-2-stable | |
| specs: | |
| spree_one_use_code_promotion_rule (0.0.1) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_paymill_gateway.git | |
| revision: a78312d4db0e44f5c639608588bb11dcec7f15a7 | |
| branch: 2-2-stable | |
| specs: | |
| spree_paymill_gateway (0.0.2) | |
| paymill (~> 0.3.0) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_related_products.git | |
| revision: 43912241e3b09dd15468fffde0be416843602b34 | |
| branch: 2-2-stable | |
| specs: | |
| spree_related_products (3.2) | |
| spree_backend (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_reviews.git | |
| revision: e51cae9627f9e5bed01d157dd3fa540966aa9d56 | |
| branch: 2-2-stable | |
| specs: | |
| spree_reviews (2.2.0) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_sitemap.git | |
| revision: 159677e8ec8a36f282adc3c21dffe7e154e3cc0c | |
| branch: 2-2-stable | |
| specs: | |
| spree_sitemap (2.0.0.beta) | |
| sitemap_generator (~> 4.3.1) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_static_content.git | |
| revision: 84a77297a61f241155c2301c1ba9b960a8354c68 | |
| ref: 84a77297a61f241155c2301c1ba9b960a8354c68 | |
| branch: 2-2-stable | |
| specs: | |
| spree_static_content (2.2.0) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_stock_email.git | |
| revision: f935524b4b2d7e8558ad45aed101d5c436269a41 | |
| branch: 2-2-stable | |
| specs: | |
| spree_stock_email (0.0.6) | |
| spree_core (~> 2.2.0) | |
| GIT | |
| remote: git://github.com/Hates/spree_taxon_promotion_rule.git | |
| revision: 4eccf22236c0d659f15a46f2c4c961312d497939 | |
| branch: 2-2-stable | |
| specs: | |
| spree_taxon_promotion_rule (0.0.1) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_tidy_taxons.git | |
| revision: 038347fc465cffc019b63b0cd41b91fc4292b2ca | |
| branch: 2-2-stable | |
| specs: | |
| spree_tidy_taxons (0.0.2) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_view_product_link.git | |
| revision: d4e2931640714bf2a3145d136ecabc86341d169e | |
| branch: 2-2-stable | |
| specs: | |
| spree_view_product_link (0.0.1) | |
| spree_core (~> 2.2.0.beta) | |
| GIT | |
| remote: git://github.com/Hates/spree_wishlist.git | |
| revision: bfe8fe2466d13650b03f52e3a40e3afe145403ac | |
| ref: bfe8fe2466d13650b03f52e3a40e3afe145403ac | |
| branch: 2-2-stable | |
| specs: | |
| spree_wishlist (2.2) | |
| spree_core (~> 2.2.0) | |
| GEM | |
| remote: https://rubygems.org/ | |
| specs: | |
| Ascii85 (1.0.2) | |
| aasm (3.1.1) | |
| actionmailer (4.0.12) | |
| actionpack (= 4.0.12) | |
| mail (~> 2.5, >= 2.5.4) | |
| actionpack (4.0.12) | |
| activesupport (= 4.0.12) | |
| builder (~> 3.1.0) | |
| erubis (~> 2.7.0) | |
| rack (~> 1.5.2) | |
| rack-test (~> 0.6.2) | |
| active_utils (2.2.3) | |
| activesupport (>= 2.3.11) | |
| i18n | |
| activemerchant (1.43.3) | |
| active_utils (~> 2.0, >= 2.0.1) | |
| activesupport (>= 2.3.14, < 5.0.0) | |
| builder (>= 2.1.2, < 4.0.0) | |
| i18n (~> 0.5) | |
| json (~> 1.7) | |
| money (< 7.0.0) | |
| nokogiri (~> 1.4) | |
| activemodel (4.0.12) | |
| activesupport (= 4.0.12) | |
| builder (~> 3.1.0) | |
| activerecord (4.0.12) | |
| activemodel (= 4.0.12) | |
| activerecord-deprecated_finders (~> 1.0.2) | |
| activesupport (= 4.0.12) | |
| arel (~> 4.0.0) | |
| activerecord-deprecated_finders (1.0.3) | |
| activesupport (4.0.12) | |
| i18n (~> 0.6, >= 0.6.9) | |
| minitest (~> 4.2) | |
| multi_json (~> 1.3) | |
| thread_safe (~> 0.1) | |
| tzinfo (~> 0.3.37) | |
| acts_as_list (0.3.0) | |
| activerecord (>= 3.0) | |
| addressable (2.3.6) | |
| afm (0.2.2) | |
| arel (4.0.2) | |
| awesome_nested_set (3.0.1) | |
| activerecord (>= 4.0.0, < 5) | |
| awesome_print (1.2.0) | |
| aws-sdk (1.27.0) | |
| json (~> 1.4) | |
| nokogiri (>= 1.4.4) | |
| uuidtools (~> 2.1) | |
| barby (0.5.1) | |
| bcrypt (3.1.9) | |
| bootstrap-sass (3.3.0.1) | |
| sass (~> 3.2) | |
| bourbon (3.1.8) | |
| sass (>= 3.2.0) | |
| thor | |
| builder (3.1.4) | |
| byebug (3.5.1) | |
| columnize (~> 0.8) | |
| debugger-linecache (~> 1.2) | |
| slop (~> 3.6) | |
| cancan (1.6.10) | |
| canonical-rails (0.0.7) | |
| rails (>= 3.1, < 5.0) | |
| capistrano (3.2.1) | |
| i18n | |
| rake (>= 10.0.0) | |
| sshkit (~> 1.3) | |
| capistrano-bundler (1.1.3) | |
| capistrano (~> 3.1) | |
| sshkit (~> 1.2) | |
| capistrano-rails (1.1.2) | |
| capistrano (~> 3.1) | |
| capistrano-bundler (~> 1.1) | |
| capybara (2.4.4) | |
| mime-types (>= 1.16) | |
| nokogiri (>= 1.3.3) | |
| rack (>= 1.0.0) | |
| rack-test (>= 0.5.4) | |
| xpath (~> 2.0) | |
| celluloid (0.16.0) | |
| timers (~> 4.0.0) | |
| childprocess (0.5.5) | |
| ffi (~> 1.0, >= 1.0.11) | |
| chronic (0.10.2) | |
| chunky_png (1.2.9) | |
| climate_control (0.0.3) | |
| activesupport (>= 3.0) | |
| cocaine (0.5.5) | |
| climate_control (>= 0.0.3, < 1.0) | |
| coderay (1.1.0) | |
| coffee-rails (4.0.1) | |
| coffee-script (>= 2.2.0) | |
| railties (>= 4.0.0, < 5.0) | |
| coffee-script (2.3.0) | |
| coffee-script-source | |
| execjs | |
| coffee-script-source (1.8.0) | |
| color (1.7.1) | |
| colorize (0.7.4) | |
| columnize (0.8.9) | |
| commonwatir (4.0.0) | |
| crack (0.4.2) | |
| safe_yaml (~> 1.0.0) | |
| database_cleaner (1.3.0) | |
| debugger-linecache (1.2.0) | |
| deface (1.0.1) | |
| colorize (>= 0.5.8) | |
| nokogiri (~> 1.6.0) | |
| polyglot | |
| rails (>= 3.1) | |
| devise (3.2.4) | |
| bcrypt (~> 3.0) | |
| orm_adapter (~> 0.1) | |
| railties (>= 3.2.6, < 5) | |
| thread_safe (~> 0.1) | |
| warden (~> 1.2.3) | |
| devise-encryptable (0.1.2) | |
| devise (>= 2.1.0) | |
| diff-lcs (1.2.5) | |
| erubis (2.7.0) | |
| eu_central_bank (0.3.8) | |
| money (>= 6.0.1) | |
| nokogiri | |
| execjs (2.2.2) | |
| factory_girl (4.5.0) | |
| activesupport (>= 3.0.0) | |
| factory_girl_rails (4.5.0) | |
| factory_girl (~> 4.5.0) | |
| railties (>= 3.0.0) | |
| fastercsv (1.5.5) | |
| ffaker (1.25.0) | |
| ffi (1.9.6) | |
| font-awesome-rails (4.2.0.0) | |
| railties (>= 3.2, < 5.0) | |
| formatador (0.2.5) | |
| foundation-rails (5.4.5.0) | |
| railties (>= 3.1.0) | |
| sass (>= 3.2.0) | |
| friendly_id (5.0.4) | |
| activerecord (>= 4.0.0) | |
| gibbon (1.1.4) | |
| httparty | |
| multi_json (>= 1.3.4) | |
| guard (2.8.1) | |
| formatador (>= 0.2.4) | |
| listen (~> 2.7) | |
| lumberjack (~> 1.0) | |
| pry (>= 0.9.12) | |
| thor (>= 0.18.1) | |
| guard-rspec (4.3.1) | |
| guard (~> 2.1) | |
| rspec (>= 2.14, < 4.0) | |
| haml (4.0.5) | |
| tilt | |
| hashery (2.1.1) | |
| highline (1.6.21) | |
| hike (1.2.3) | |
| hitimes (1.2.2) | |
| httparty (0.13.3) | |
| json (~> 1.8) | |
| multi_xml (>= 0.5.2) | |
| i18n (0.6.9) | |
| jbuilder (1.5.3) | |
| activesupport (>= 3.0.0) | |
| multi_json (>= 1.2.0) | |
| jquery-migrate-rails (1.2.1) | |
| jquery-rails (3.1.2) | |
| railties (>= 3.0, < 5.0) | |
| thor (>= 0.14, < 2.0) | |
| jquery-ui-rails (4.1.2) | |
| railties (>= 3.1.0) | |
| json (1.8.1) | |
| kaminari (0.15.1) | |
| actionpack (>= 3.0.0) | |
| activesupport (>= 3.0.0) | |
| launchy (2.4.3) | |
| addressable (~> 2.3) | |
| letter_opener (1.2.0) | |
| launchy (~> 2.2) | |
| libv8 (3.16.14.7) | |
| listen (2.7.11) | |
| celluloid (>= 0.15.2) | |
| rb-fsevent (>= 0.9.3) | |
| rb-inotify (>= 0.9) | |
| lumberjack (1.0.9) | |
| mail (2.6.3) | |
| mime-types (>= 1.16, < 3) | |
| method_source (0.8.2) | |
| mime-types (2.4.3) | |
| mini_portile (0.6.1) | |
| minitest (4.7.5) | |
| mobylette (3.5) | |
| actionpack (>= 3.0) | |
| monetize (1.0.0) | |
| money (~> 6.4.0) | |
| money (6.4.0) | |
| i18n (>= 0.6.4, <= 0.7.0.beta1) | |
| multi_json (1.10.1) | |
| multi_xml (0.5.5) | |
| neat (1.3.0) | |
| bourbon (>= 2.1) | |
| sass (>= 3.2) | |
| net-scp (1.2.1) | |
| net-ssh (>= 2.6.5) | |
| net-ssh (2.9.1) | |
| newrelic_rpm (3.9.6.257) | |
| nokogiri (1.6.5) | |
| mini_portile (~> 0.6.0) | |
| orm_adapter (0.5.0) | |
| paperclip (3.4.2) | |
| activemodel (>= 3.0.0) | |
| activerecord (>= 3.0.0) | |
| activesupport (>= 3.0.0) | |
| cocaine (~> 0.5.0) | |
| mime-types | |
| paranoia (2.0.4) | |
| activerecord (~> 4.0) | |
| paymill (0.3.0) | |
| json | |
| paypal-sdk-adaptivepayments (1.105.0) | |
| paypal-sdk-core (~> 0.2.3) | |
| paypal-sdk-core (0.2.10) | |
| multi_json (~> 1.0) | |
| xml-simple | |
| paypal-sdk-merchant (1.106.1) | |
| paypal-sdk-core (~> 0.2.3) | |
| pdf-reader (1.3.3) | |
| Ascii85 (~> 1.0.0) | |
| afm (~> 0.2.0) | |
| hashery (~> 2.0) | |
| ruby-rc4 | |
| ttfunk | |
| pdf-writer (1.1.8) | |
| color (>= 1.4.0) | |
| transaction-simple (~> 1.3) | |
| pg (0.17.1) | |
| polyamorous (0.6.4) | |
| activerecord (>= 3.0) | |
| polyglot (0.3.5) | |
| prawn (1.0.0.rc2) | |
| afm | |
| pdf-reader (>= 0.9.0, < 2.0) | |
| ruby-rc4 | |
| ttfunk (~> 1.0.3) | |
| pry (0.10.1) | |
| coderay (~> 1.1.0) | |
| method_source (~> 0.8.1) | |
| slop (~> 3.4) | |
| pry-byebug (2.0.0) | |
| byebug (~> 3.4) | |
| pry (~> 0.10) | |
| pry-rails (0.3.2) | |
| pry (>= 0.9.10) | |
| pry-remote (0.1.8) | |
| pry (~> 0.9) | |
| slop (~> 3.0) | |
| quiet_assets (1.0.3) | |
| railties (>= 3.1, < 5.0) | |
| rabl (0.9.3) | |
| activesupport (>= 2.3.14) | |
| rack (1.5.2) | |
| rack-test (0.6.2) | |
| rack (>= 1.0) | |
| rails (4.0.12) | |
| actionmailer (= 4.0.12) | |
| actionpack (= 4.0.12) | |
| activerecord (= 4.0.12) | |
| activesupport (= 4.0.12) | |
| bundler (>= 1.3.0, < 2.0) | |
| railties (= 4.0.12) | |
| sprockets-rails (~> 2.0) | |
| rails-observers (0.1.2) | |
| activemodel (~> 4.0) | |
| rails_config (0.3.4) | |
| activesupport (>= 3.0) | |
| railties (4.0.12) | |
| actionpack (= 4.0.12) | |
| activesupport (= 4.0.12) | |
| rake (>= 0.8.7) | |
| thor (>= 0.18.1, < 2.0) | |
| rake (10.4.2) | |
| ransack (1.1.0) | |
| actionpack (>= 3.0) | |
| activerecord (>= 3.0) | |
| polyamorous (~> 0.6.0) | |
| rb-fsevent (0.9.4) | |
| rb-inotify (0.9.5) | |
| ffi (>= 0.5.0) | |
| rdoc (4.1.2) | |
| json (~> 1.4) | |
| recaptcha (0.3.6) | |
| redis (3.1.0) | |
| ref (1.0.5) | |
| rollbar (1.2.7) | |
| multi_json (~> 1.3) | |
| rspec (3.1.0) | |
| rspec-core (~> 3.1.0) | |
| rspec-expectations (~> 3.1.0) | |
| rspec-mocks (~> 3.1.0) | |
| rspec-activemodel-mocks (1.0.1) | |
| activemodel (>= 3.0) | |
| activesupport (>= 3.0) | |
| rspec-mocks (>= 2.99, < 4.0) | |
| rspec-core (3.1.7) | |
| rspec-support (~> 3.1.0) | |
| rspec-expectations (3.1.2) | |
| diff-lcs (>= 1.2.0, < 2.0) | |
| rspec-support (~> 3.1.0) | |
| rspec-mocks (3.1.3) | |
| rspec-support (~> 3.1.0) | |
| rspec-rails (3.1.0) | |
| actionpack (>= 3.0) | |
| activesupport (>= 3.0) | |
| railties (>= 3.0) | |
| rspec-core (~> 3.1.0) | |
| rspec-expectations (~> 3.1.0) | |
| rspec-mocks (~> 3.1.0) | |
| rspec-support (~> 3.1.0) | |
| rspec-support (3.1.2) | |
| ruby-rc4 (0.1.5) | |
| rubyzip (1.1.6) | |
| ruport (1.6.3) | |
| fastercsv | |
| pdf-writer (= 1.1.8) | |
| safe_yaml (1.0.4) | |
| sass (3.2.19) | |
| sass-rails (4.0.5) | |
| railties (>= 4.0.0, < 5.0) | |
| sass (~> 3.2.2) | |
| sprockets (~> 2.8, < 3.0) | |
| sprockets-rails (~> 2.0) | |
| sdoc (0.4.1) | |
| json (~> 1.7, >= 1.7.7) | |
| rdoc (~> 4.0) | |
| select2-rails (3.4.9) | |
| sass-rails | |
| thor (~> 0.14) | |
| selenium-webdriver (2.44.0) | |
| childprocess (~> 0.5) | |
| multi_json (~> 1.0) | |
| rubyzip (~> 1.0) | |
| websocket (~> 1.0) | |
| simple_form (3.0.2) | |
| actionpack (~> 4.0) | |
| activemodel (~> 4.0) | |
| sitemap_generator (4.3.1) | |
| builder | |
| slop (3.6.0) | |
| spring (1.1.3) | |
| spring-commands-rspec (1.0.2) | |
| spring (>= 0.9.1) | |
| sprockets (2.12.3) | |
| hike (~> 1.2) | |
| multi_json (~> 1.0) | |
| rack (~> 1.0) | |
| tilt (~> 1.1, != 1.3.0) | |
| sprockets-rails (2.2.2) | |
| actionpack (>= 3.0) | |
| activesupport (>= 3.0) | |
| sprockets (>= 2.8, < 4.0) | |
| sshkit (1.5.1) | |
| colorize | |
| net-scp (>= 1.1.2) | |
| net-ssh (>= 2.8.0) | |
| state_machine (1.2.0) | |
| stringex (1.5.1) | |
| textacular (3.1.0) | |
| activerecord (>= 3.0, < 4.1) | |
| therubyracer (0.12.1) | |
| libv8 (~> 3.16.14.0) | |
| ref | |
| thor (0.19.1) | |
| thread_safe (0.3.4) | |
| tilt (1.4.1) | |
| timers (4.0.1) | |
| hitimes | |
| transaction-simple (1.4.0.2) | |
| truncate_html (0.9.2) | |
| ttfunk (1.0.3) | |
| tzinfo (0.3.42) | |
| uglifier (2.5.3) | |
| execjs (>= 0.3.0) | |
| json (>= 1.8.0) | |
| uuidtools (2.1.5) | |
| vcr (2.9.3) | |
| versioncake (1.2.0) | |
| actionpack (>= 3.2) | |
| activesupport (>= 3.2) | |
| railties (>= 3.2) | |
| tzinfo | |
| warden (1.2.3) | |
| rack (>= 1.0) | |
| watir (5.0.0) | |
| commonwatir (~> 4) | |
| watir-webdriver | |
| watir-webdriver (0.6.11) | |
| selenium-webdriver (>= 2.18.0) | |
| webmock (1.20.3) | |
| addressable (>= 2.3.6) | |
| crack (>= 0.3.2) | |
| websocket (1.2.1) | |
| whenever (0.9.4) | |
| chronic (>= 0.6.3) | |
| xml-simple (1.1.4) | |
| xpath (2.0.0) | |
| nokogiri (~> 1.3) | |
| PLATFORMS | |
| ruby | |
| DEPENDENCIES | |
| aasm (~> 3.1.0) | |
| awesome_print | |
| barby (~> 0.5.1) | |
| bootstrap-sass (~> 3.3.0.1) | |
| bourbon (~> 3.1.6) | |
| capistrano (~> 3.2.1) | |
| capistrano-bundler (~> 1.1.3) | |
| capistrano-rails (~> 1.1.2) | |
| capybara | |
| chunky_png (~> 1.2.8) | |
| coffee-rails (~> 4.0.0) | |
| database_cleaner | |
| eu_central_bank (~> 0.3.5) | |
| factory_girl_rails | |
| ffaker | |
| foundation-rails (~> 5.4.5.0) | |
| gibbon (~> 1.1.4) | |
| guard | |
| guard-rspec | |
| haml (~> 4.0.5) | |
| jbuilder (~> 1.2) | |
| jquery-migrate-rails (~> 1.2.1) | |
| jquery-rails (~> 3.1.2) | |
| letter_opener | |
| mobylette (~> 3.5) | |
| neat (~> 1.3.0) | |
| newrelic_rpm (~> 3.9.6.257) | |
| paypal-sdk-adaptivepayments (~> 1.105.0) | |
| pg | |
| prawn (= 1.0.0.rc2) | |
| pry (~> 0.10.1) | |
| pry-byebug (~> 2.0.0) | |
| pry-rails (~> 0.3.2) | |
| pry-remote (~> 0.1.8) | |
| quiet_assets | |
| rails (~> 4.0.11) | |
| rails-observers (~> 0.1.2) | |
| rails_config (~> 0.3.3) | |
| redis (~> 3.1.0) | |
| rollbar (~> 1.2.7) | |
| rspec-activemodel-mocks | |
| rspec-rails | |
| ruport (~> 1.6.3) | |
| sass-rails (~> 4.0.4) | |
| sdoc | |
| simple_form (~> 3.0.1) | |
| spree! | |
| spree_abandoned_cart_email! | |
| spree_auth_devise! | |
| spree_current_stock_report! | |
| spree_delete_product_link! | |
| spree_email_report! | |
| spree_email_to_friend! | |
| spree_next_product_link! | |
| spree_one_use_code_promotion_rule! | |
| spree_paymill_gateway! | |
| spree_paypal_express! | |
| spree_related_products! | |
| spree_reviews! | |
| spree_sitemap! | |
| spree_static_content! | |
| spree_stock_email! | |
| spree_taxon_promotion_rule! | |
| spree_tidy_taxons! | |
| spree_view_product_link! | |
| spree_wishlist! | |
| spring | |
| spring-commands-rspec | |
| textacular (~> 3.1.0) | |
| therubyracer | |
| uglifier (>= 1.3.0) | |
| vcr | |
| watir | |
| webmock | |
| whenever (~> 0.9.2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment