brace 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d07ed35dd5b3ed6b526968f9aaa3b8951b03c76
4
- data.tar.gz: 99d22776f04cbfb20c123c914497092c49c2eda0
3
+ metadata.gz: bcf979a593a59378fa588cb6821deee323498e6a
4
+ data.tar.gz: 905818ab4a36d784c4ddc65ecd6ffaab65942efa
5
5
  SHA512:
6
- metadata.gz: a9c6a5009505212b14de719914a75b36b68397fd92b7e4f5921ec6dda08b717586a4709ca628cbe9d088cdc7ed29aae58b85e93fbb4effce6bbe791106471b2a
7
- data.tar.gz: 57f6fd7fc2d30fb4becbd9d9c149bb8003ae234dc6c4c05132b6e104bf41fc7258e00725bbb9fcc710163a096864c418acf8f5d2bc3b2ad36edc0cbac68377d2
6
+ metadata.gz: af270213b4ea7f5f212599767c9f53a53ae6db7556b669efbb93f5b2354abad97a631dae623dbcb5f3751fa48f96da1d042336edfd7300b064dd4991ea1b445e
7
+ data.tar.gz: a79bee0db5c9835a90e6c651e0b52309ba4c2fbe2ec2470c6298bc9e30c6cc1084835e5608e945903445eeb85ec72e1209dc75d484126dc630489e379f00e1c0
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.date = Date.today.strftime('%Y-%m-%d')
10
10
 
11
11
  s.description = <<-HERE
12
- Brace is a base Rails API project that you can upgrade. It is used by
12
+ Brace is a base Rails project that you can upgrade. It is used by
13
13
  me to get a jump start on a working app. Thanks thoughtbot for making Suspenders (https://github.com/thoughtbot/suspenders)!
14
14
  HERE
15
15
 
@@ -18,7 +18,7 @@ me to get a jump start on a working app. Thanks thoughtbot for making Suspenders
18
18
  s.extra_rdoc_files = %w[README.md LICENSE]
19
19
  s.files = `git ls-files`.split("\n")
20
20
  s.license = 'MIT'
21
- s.summary = "Rails API template adapted from thoughtbot's Suspenders."
21
+ s.summary = "Rails template adapted from thoughtbot's Suspenders."
22
22
  s.homepage = "https://github.com/hwhelchel/brace"
23
23
  s.name = 'brace'
24
24
  s.rdoc_options = ['--charset=UTF-8']
@@ -1,6 +1,5 @@
1
1
  module Brace
2
- RAILS_API_VERSION = "0.4.0"
3
2
  RAILS_VERSION = "4.2.0"
4
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
5
- VERSION = "0.0.1"
4
+ VERSION = "0.0.3"
6
5
  end
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  ruby '<%= Brace::RUBY_VERSION %>'
4
4
 
5
- gem 'rails-api', '~> <%= Brace::RAILS_API_VERSION %>'
5
+ gem 'rails', '~> <%= Brace::RAILS_VERSION %>'
6
6
 
7
7
  # Datastores
8
8
  gem 'pg'
@@ -1,3 +1,3 @@
1
1
  RSpec.configure do |config|
2
2
  config.include Devise::TestHelpers, type: :controller
3
- end
3
+ end
@@ -7,4 +7,4 @@ else
7
7
  else
8
8
  $redis = Redis.new
9
9
  end
10
- end
10
+ end
@@ -4,4 +4,4 @@ else
4
4
  sidekiq_redis = { :namespace => '#{app_name}' }
5
5
  end
6
6
  Sidekiq.configure_client { |config| config.redis = sidekiq_redis }
7
- Sidekiq.configure_server { |config| config.redis = sidekiq_redis }
7
+ Sidekiq.configure_server { |config| config.redis = sidekiq_redis }
@@ -1 +1 @@
1
- Stripe.api_key = ENV['STRIPE_SECRET']
1
+ Stripe.api_key = ENV['STRIPE_SECRET']
@@ -9,4 +9,4 @@ VCR.configure do |c|
9
9
  c.before_playback do |interaction|
10
10
  interaction.response.body.force_encoding("utf-8")
11
11
  end
12
- end
12
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harry Whelchel
@@ -87,7 +87,7 @@ dependencies:
87
87
  - !ruby/object:Gem::Version
88
88
  version: 2.2.0
89
89
  description: |
90
- Brace is a base Rails API project that you can upgrade. It is used by
90
+ Brace is a base Rails project that you can upgrade. It is used by
91
91
  me to get a jump start on a working app. Thanks thoughtbot for making Suspenders (https://github.com/thoughtbot/suspenders)!
92
92
  email: harrywhelchel@gmail.com
93
93
  executables:
@@ -184,7 +184,7 @@ rubyforge_project:
184
184
  rubygems_version: 2.4.5
185
185
  signing_key:
186
186
  specification_version: 4
187
- summary: Rails API template adapted from thoughtbot's Suspenders.
187
+ summary: Rails template adapted from thoughtbot's Suspenders.
188
188
  test_files:
189
189
  - spec/fakes/bin/heroku
190
190
  - spec/fakes/bin/hub