hitfox-suspenders 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26d290336d031cdce6c24477663f0d3ad856c70a
4
- data.tar.gz: a3edd84afead760e5fce469fc9f9816caa3c4c3d
3
+ metadata.gz: 6b21a5827a8acb2db9df1f2bf7ce9e0ba64957d0
4
+ data.tar.gz: daab971ad541674c6d4b225f0cce3c53afdcf955
5
5
  SHA512:
6
- metadata.gz: 4363647da43fb91904664e332868d921134e0fbfe1b210bb88123d6e2616046df019f6f6970141e518aa3da7aaa1b220d1f70ed961848e59e6466607b7b065ad
7
- data.tar.gz: f5aaef9139e22a0b8edabb4f39b4474abe3f2ac84ff9394264b08e7b8b9c90616d68eb8f79e1b4b2f0945e83e4a0226fc045645c1bf292015f3677dea3a3d180
6
+ metadata.gz: e93d772d2499df40121be7e35a5b73fe60beb6de00c905bf6c0ea41c4f7bb56130020def7705bdba8d50f68908af707f0dde1c34fa3cf1b87ce1c72af0fad676
7
+ data.tar.gz: ea47acb7dcf15981426f3f652008869698eefd9c1b38bec9006cef3bfc23086a45ae794532fbbfe96db51f12b1cccb79765b70d187ebcd3b17460409cd87dc41
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.2.0
1
+ 2.2.2
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- hitfox-suspenders (1.0.0)
4
+ hitfox-suspenders (1.0.1)
5
5
  bitters (~> 1.0.0)
6
6
  bundler (~> 1.3)
7
7
  rails (= 4.2.1)
data/NEWS.md CHANGED
@@ -1,3 +1,14 @@
1
+ 1.27.0 (April 10, 2015)
2
+
3
+ * Add Autoprefixer and browserslist config file
4
+ * Only display user-facing flashes
5
+ * Add code of conduct to CONTRIBUTING document
6
+ * Only use rack-timeout in staging and production
7
+ * Add SimpleCov
8
+ * Avoid generation of extra _flashes view
9
+ * Fix Travis CI install step
10
+ * Cache bundle in Travis CI runs
11
+
1
12
  1.26.0 (March 23, 2015)
2
13
 
3
14
  * Update Rails to 4.2.1
data/README.md CHANGED
@@ -31,8 +31,7 @@ Changelog
31
31
  We constantly pull the latest chages from Thoughtbot's [suspenders](https://github.com/thoughtbot/suspenders) periodically.
32
32
 
33
33
  List of changes we made since [this commit](https://github.com/thoughtbot/suspenders/commit/a470912e9df01fda62f0c23ce032a1c9b5493b69):
34
- - Use Ruby 2.2.0 for CircleCI compatibility
35
- - Add CircleCI configuration and remove the Travis one
34
+ - Add CircleCI configuration template
36
35
  - Add Honeybadger configuration and remove New Relic
37
36
  - Use simple_form 3.0.3 to supress annoying warnings in specs
38
37
  - Add Mandrill configuration
@@ -40,4 +39,4 @@ List of changes we made since [this commit](https://github.com/thoughtbot/suspen
40
39
  - Add company specific assumptions to the README generator
41
40
  - Remove CDN, Heroku, Unicorn, Segment and delayed_jobs configurations
42
41
  - Remove deployment scripts and Procfile
43
-
42
+ - Remove Travis configuration and add the CircleCI one for the suspenders gem
data/circle.yml ADDED
@@ -0,0 +1,3 @@
1
+ machine:
2
+ ruby:
3
+ version: 2.2.2
@@ -268,6 +268,7 @@ Rack::Timeout.timeout = (ENV["RACK_TIMEOUT"] || 10).to_i
268
268
  end
269
269
 
270
270
  def copy_miscellaneous_files
271
+ copy_file "browserslist", "browserslist"
271
272
  copy_file "errors.rb", "config/initializers/errors.rb"
272
273
  copy_file "json_encoding.rb", "config/initializers/json_encoding.rb"
273
274
  end
@@ -1,5 +1,5 @@
1
1
  module Suspenders
2
2
  RAILS_VERSION = "4.2.1"
3
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
@@ -3,6 +3,7 @@ source "https://rubygems.org"
3
3
  ruby "<%= Suspenders::RUBY_VERSION %>"
4
4
 
5
5
  gem 'honeybadger', '~> 2.0'
6
+ gem "autoprefixer-rails"
6
7
  gem "coffee-rails", "~> 4.1.0"
7
8
  gem "email_validator"
8
9
  gem "high_voltage"
@@ -0,0 +1,4 @@
1
+ Last 2 versions
2
+ Explorer >= 9
3
+ iOS >= 7.1
4
+ Android >= 4.4
data/templates/circle.yml CHANGED
@@ -1,3 +1,3 @@
1
1
  machine:
2
2
  ruby:
3
- version: 2.2.0
3
+ version: 2.2.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hitfox-suspenders
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoughtbot
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-04-10 00:00:00.000000000 Z
12
+ date: 2015-04-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bitters
@@ -112,6 +112,7 @@ files:
112
112
  - bin/rake
113
113
  - bin/rspec
114
114
  - bin/setup
115
+ - circle.yml
115
116
  - lib/suspenders.rb
116
117
  - lib/suspenders/actions.rb
117
118
  - lib/suspenders/app_builder.rb
@@ -131,6 +132,7 @@ files:
131
132
  - templates/action_mailer.rb
132
133
  - templates/application.css.scss
133
134
  - templates/bin_setup.erb
135
+ - templates/browserslist
134
136
  - templates/bundler_audit.rake
135
137
  - templates/circle.yml
136
138
  - templates/config_i18n_tasks.yml
@@ -166,7 +168,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
166
168
  requirements:
167
169
  - - ">="
168
170
  - !ruby/object:Gem::Version
169
- version: 2.2.0
171
+ version: 2.2.2
170
172
  required_rubygems_version: !ruby/object:Gem::Requirement
171
173
  requirements:
172
174
  - - ">="
@@ -174,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
176
  version: '0'
175
177
  requirements: []
176
178
  rubyforge_project:
177
- rubygems_version: 2.4.5
179
+ rubygems_version: 2.4.6
178
180
  signing_key:
179
181
  specification_version: 4
180
182
  summary: Generate a Rails app using Hitfox's best practices.