From 3444c7c4f9541233cd8ee906ff7e96d2912d01a2 Mon Sep 17 00:00:00 2001 From: "Jesse C. Fisher" Date: Thu, 1 Jan 2015 16:06:40 -0800 Subject: [PATCH] rails_apps_composer: create database --- .rubocop.yml | 10 ++ Gemfile | 51 +++++++ Gemfile.lock | 376 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 437 insertions(+) create mode 100644 .rubocop.yml create mode 100644 Gemfile.lock diff --git a/.rubocop.yml b/.rubocop.yml new file mode 100644 index 0000000..5d303f0 --- /dev/null +++ b/.rubocop.yml @@ -0,0 +1,10 @@ +AllCops: + RunRailsCops: true + Include: + - '**/Gemfile' + - '**/Rakefile' + Exclude: + - 'bin/*' + - 'db/seeds.rb' + - 'db/schema.rb' + - 'vendor/bundle/**/*' diff --git a/Gemfile b/Gemfile index d032312..405f024 100644 --- a/Gemfile +++ b/Gemfile @@ -38,3 +38,54 @@ gem 'spring', group: :development # Use debugger # gem 'debugger', group: [:development, :test] + +gem 'devise' +gem 'devise_invitable' +gem 'haml-rails' +gem 'high_voltage' +gem 'pg' +gem 'puma' +gem 'pundit' +gem 'simple_form' +gem 'upmin-admin' + +group :development do + gem 'better_errors' + gem 'binding_of_caller', :platforms=>[:mri_21] + gem 'capistrano', '~> 3.0.1' + gem 'capistrano-bundler' + gem 'capistrano-rails', '~> 1.1.0' + gem 'capistrano-rails-console' + gem 'capistrano-rvm', '~> 0.1.1' + gem 'foreman' + gem 'guard-bundler' + gem 'guard-rails' + gem 'guard-rspec' + gem 'html2haml' + gem 'hub', :require=>nil + gem 'quiet_assets' + gem 'rails_apps_pages' + gem 'rails_apps_testing' + gem 'rails_layout' + gem 'rb-fchange', :require=>false + gem 'rb-fsevent', :require=>false + gem 'rb-inotify', :require=>false + gem 'spring-commands-rspec' +end + +group :development, :test do + gem 'factory_girl_rails' + gem 'faker' + gem 'pry-rails' + gem 'pry-rescue' + gem 'rspec-rails' + gem 'rubocop' +end + +group :test do + gem 'capybara' + gem 'database_cleaner' + gem 'launchy' + gem 'selenium-webdriver' +end + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..5f1b0e5 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,376 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (4.1.8) + actionpack (= 4.1.8) + actionview (= 4.1.8) + mail (~> 2.5, >= 2.5.4) + actionpack (4.1.8) + actionview (= 4.1.8) + activesupport (= 4.1.8) + rack (~> 1.5.2) + rack-test (~> 0.6.2) + actionview (4.1.8) + activesupport (= 4.1.8) + builder (~> 3.1) + erubis (~> 2.7.0) + activemodel (4.1.8) + activesupport (= 4.1.8) + builder (~> 3.1) + activerecord (4.1.8) + activemodel (= 4.1.8) + activesupport (= 4.1.8) + arel (~> 5.0.0) + activesupport (4.1.8) + i18n (~> 0.6, >= 0.6.9) + json (~> 1.7, >= 1.7.7) + minitest (~> 5.1) + thread_safe (~> 0.1) + tzinfo (~> 1.1) + addressable (2.3.6) + arel (5.0.1.20140414130214) + ast (2.0.0) + astrolabe (1.3.0) + parser (>= 2.2.0.pre.3, < 3.0) + bcrypt (3.1.9) + better_errors (2.1.0) + coderay (>= 1.0.0) + erubis (>= 2.6.6) + rack (>= 0.9.0) + binding_of_caller (0.7.2) + debug_inspector (>= 0.0.1) + builder (3.2.2) + capistrano (3.0.1) + i18n + rake (>= 10.0.0) + sshkit (>= 0.0.23) + capistrano-bundler (1.1.2) + capistrano (~> 3.0) + sshkit (~> 1.2) + capistrano-rails (1.1.0) + capistrano (>= 3.0.0) + capistrano-bundler (>= 1.0.0) + capistrano-rails-console (0.3.0) + capistrano (>= 3.0.0) + capistrano-rvm (0.1.2) + capistrano (~> 3.0) + sshkit (~> 1.2) + 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) + 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) + colorize (0.7.5) + database_cleaner (1.3.0) + debug_inspector (0.0.2) + devise (3.4.1) + bcrypt (~> 3.0) + orm_adapter (~> 0.1) + railties (>= 3.2.6, < 5) + responders + thread_safe (~> 0.1) + warden (~> 1.2.3) + devise_invitable (1.4.0) + actionmailer (>= 3.2.6, < 5) + devise (>= 3.2.0) + diff-lcs (1.2.5) + dotenv (1.0.2) + erubis (2.7.0) + 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) + faker (1.4.3) + i18n (~> 0.5) + ffi (1.9.6) + foreman (0.76.0) + dotenv (~> 1.0.2) + thor (~> 0.19.1) + formatador (0.2.5) + guard (2.10.5) + formatador (>= 0.2.4) + listen (~> 2.7) + lumberjack (~> 1.0) + nenv (~> 0.1) + pry (>= 0.9.12) + thor (>= 0.18.1) + guard-bundler (2.1.0) + bundler (~> 1.0) + guard (~> 2.2) + guard-compat (~> 1.1) + guard-compat (1.2.0) + guard-rails (0.7.0) + guard (~> 2.0) + guard-rspec (4.5.0) + guard (~> 2.1) + guard-compat (~> 1.1) + rspec (>= 2.99.0, < 4.0) + haml (4.1.0.beta.1) + tilt + haml-rails (0.6.0) + actionpack (>= 4.0.1) + activesupport (>= 4.0.1) + haml (>= 3.1, < 5.0) + html2haml (>= 1.0.1) + railties (>= 4.0.1) + high_voltage (2.2.1) + hike (1.2.3) + hitimes (1.2.2) + hpricot (0.8.6) + html2haml (1.0.1) + erubis (~> 2.7.0) + haml (>= 4.0.0.rc.1) + hpricot (~> 0.8.6) + ruby_parser (~> 3.1.1) + hub (1.12.4) + i18n (0.7.0) + interception (0.5) + jbuilder (2.2.6) + activesupport (>= 3.0.0, < 5) + multi_json (~> 1.2) + jquery-rails (3.1.2) + railties (>= 3.0, < 5.0) + thor (>= 0.14, < 2.0) + json (1.8.1) + kaminari (0.16.1) + actionpack (>= 3.0.0) + activesupport (>= 3.0.0) + launchy (2.4.3) + addressable (~> 2.3) + listen (2.8.4) + 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.2) + minitest (5.5.0) + multi_json (1.10.1) + nenv (0.1.1) + net-scp (1.2.1) + net-ssh (>= 2.6.5) + net-ssh (2.9.1) + nokogiri (1.6.5) + mini_portile (~> 0.6.0) + orm_adapter (0.5.0) + parser (2.2.0.1) + ast (>= 1.1, < 3.0) + slop (~> 3.4, >= 3.4.5) + pg (0.17.1) + polyamorous (1.1.0) + activerecord (>= 3.0) + powerpack (0.0.9) + pry (0.10.1) + coderay (~> 1.1.0) + method_source (~> 0.8.1) + slop (~> 3.4) + pry-rails (0.3.2) + pry (>= 0.9.10) + pry-rescue (1.4.1) + interception (>= 0.5) + pry + puma (2.10.2) + rack (>= 1.1, < 2.0) + pundit (0.3.0) + activesupport (>= 3.0.0) + quiet_assets (1.1.0) + railties (>= 3.1, < 5.0) + rack (1.5.2) + rack-test (0.6.2) + rack (>= 1.0) + rails (4.1.8) + actionmailer (= 4.1.8) + actionpack (= 4.1.8) + actionview (= 4.1.8) + activemodel (= 4.1.8) + activerecord (= 4.1.8) + activesupport (= 4.1.8) + bundler (>= 1.3.0, < 2.0) + railties (= 4.1.8) + sprockets-rails (~> 2.0) + rails_apps_pages (0.5.15) + rails_apps_testing (0.3.12) + rails_layout (1.0.24) + railties (4.1.8) + actionpack (= 4.1.8) + activesupport (= 4.1.8) + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rainbow (2.0.0) + rake (10.4.2) + ransack (1.5.1) + actionpack (>= 3.0) + activerecord (>= 3.0) + activesupport (>= 3.0) + i18n + polyamorous (~> 1.1) + rb-fchange (0.0.6) + ffi + rb-fsevent (0.9.4) + rb-inotify (0.9.5) + ffi (>= 0.5.0) + rdoc (4.2.0) + json (~> 1.4) + responders (1.1.2) + railties (>= 3.2, < 4.2) + rspec (3.1.0) + rspec-core (~> 3.1.0) + rspec-expectations (~> 3.1.0) + rspec-mocks (~> 3.1.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) + rubocop (0.28.0) + astrolabe (~> 1.3) + parser (>= 2.2.0.pre.7, < 3.0) + powerpack (~> 0.0.6) + rainbow (>= 1.99.1, < 3.0) + ruby-progressbar (~> 1.4) + ruby-progressbar (1.7.1) + ruby_parser (3.1.3) + sexp_processor (~> 4.1) + rubyzip (1.1.6) + 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) + selenium-webdriver (2.44.0) + childprocess (~> 0.5) + multi_json (~> 1.0) + rubyzip (~> 1.0) + websocket (~> 1.0) + sexp_processor (4.4.4) + simple_form (3.1.0) + actionpack (~> 4.0) + activemodel (~> 4.0) + slop (3.6.0) + spring (1.2.0) + spring-commands-rspec (1.0.4) + 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.6.1) + colorize (>= 0.7.0) + net-scp (>= 1.1.2) + net-ssh (>= 2.8.0) + thor (0.19.1) + thread_safe (0.3.4) + tilt (1.4.1) + timers (4.0.1) + hitimes + turbolinks (2.5.3) + coffee-rails + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (2.6.1) + execjs (>= 0.3.0) + json (>= 1.8.0) + upmin-admin (0.1.01) + haml (>= 3.0.0) + jquery-rails + kaminari + rails + ransack + sass-rails + warden (1.2.3) + rack (>= 1.0) + websocket (1.2.1) + xpath (2.0.0) + nokogiri (~> 1.3) + +PLATFORMS + ruby + +DEPENDENCIES + better_errors + binding_of_caller + capistrano (~> 3.0.1) + capistrano-bundler + capistrano-rails (~> 1.1.0) + capistrano-rails-console + capistrano-rvm (~> 0.1.1) + capybara + coffee-rails (~> 4.0.0) + database_cleaner + devise + devise_invitable + factory_girl_rails + faker + foreman + guard-bundler + guard-rails + guard-rspec + haml-rails + high_voltage + html2haml + hub + jbuilder (~> 2.0) + jquery-rails + launchy + pg + pry-rails + pry-rescue + puma + pundit + quiet_assets + rails (= 4.1.8) + rails_apps_pages + rails_apps_testing + rails_layout + rb-fchange + rb-fsevent + rb-inotify + rspec-rails + rubocop + sass-rails (~> 4.0.3) + sdoc (~> 0.4.0) + selenium-webdriver + simple_form + spring + spring-commands-rspec + turbolinks + uglifier (>= 1.3.0) + upmin-admin