diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Gemfile | 4 | ||||
| -rw-r--r-- | Gemfile.lock | 17 | 
3 files changed, 23 insertions, 0 deletions
| @@ -4,6 +4,8 @@  # or operating system, you probably want to add a global ignore instead:  #   git config --global core.excludesfile '~/.gitignore_global' +.env +  # Ignore bundler config.  /.bundle @@ -32,6 +32,8 @@ gem 'sdoc', '~> 0.4.0', group: :doc  # Use Capistrano for deployment  # gem 'capistrano-rails', group: :development +gem 'aws-sdk' +  group :development, :test do    # Call 'debugger' anywhere in the code to stop execution and get a debugger console    gem 'debugger' @@ -41,5 +43,7 @@ group :development, :test do    # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring    gem 'spring' + +  gem 'dotenv-rails'  end diff --git a/Gemfile.lock b/Gemfile.lock index 2e1cdd4..5943695 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -37,6 +37,15 @@ GEM        thread_safe (~> 0.3, >= 0.3.4)        tzinfo (~> 1.1)      arel (6.0.0) +    aws-sdk (2.0.33) +      aws-sdk-resources (= 2.0.33) +    aws-sdk-core (2.0.33) +      builder (~> 3.0) +      jmespath (~> 1.0) +      multi_json (~> 1.0) +      multi_xml (~> 0.5) +    aws-sdk-resources (2.0.33) +      aws-sdk-core (= 2.0.33)      binding_of_caller (0.7.2)        debug_inspector (>= 0.0.1)      builder (3.2.2) @@ -55,6 +64,9 @@ GEM        debugger-ruby_core_source (~> 1.3.5)      debugger-linecache (1.2.0)      debugger-ruby_core_source (1.3.8) +    dotenv (2.0.0) +    dotenv-rails (2.0.0) +      dotenv (= 2.0.0)      erubis (2.7.0)      execjs (2.3.0)      globalid (0.3.3) @@ -64,6 +76,8 @@ GEM      jbuilder (2.2.8)        activesupport (>= 3.0.0, < 5)        multi_json (~> 1.2) +    jmespath (1.0.2) +      multi_json (~> 1.0)      jquery-rails (4.0.3)        rails-dom-testing (~> 1.0)        railties (>= 4.2.0) @@ -77,6 +91,7 @@ GEM      mini_portile (0.6.2)      minitest (5.5.1)      multi_json (1.10.1) +    multi_xml (0.5.5)      nokogiri (1.6.6.2)        mini_portile (~> 0.6.0)      rack (1.6.0) @@ -150,8 +165,10 @@ PLATFORMS    ruby  DEPENDENCIES +  aws-sdk    coffee-rails (~> 4.1.0)    debugger +  dotenv-rails    jbuilder (~> 2.0)    jquery-rails    rails (= 4.2.0) | 
