slining 1.0.0 → 1.0.1

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: 217c08be278859c2df49a4077a985e90ea4d1554
4
- data.tar.gz: 762eb626da4cc5f1b0efeb1d6556961ae80c439f
3
+ metadata.gz: 0c23bdf9d0691542e9d1ec9bc98fb272c2978a25
4
+ data.tar.gz: ea7dd374360216e252d758694a7beaf766f49a21
5
5
  SHA512:
6
- metadata.gz: 68fac886a0434ce7879b24c1ac28283a6ceccfc134bca0a9d3e59ebef9f6554b00da7a1de63dc4cc5ba2ede404c797da0337781dfac9d8ebf9c05544fff16f68
7
- data.tar.gz: 8b03d7f54e2851733839363a5a447ad2bd26944b9f941e3121ae1131254c1e340647aec82485745fbf5b6eeb86898984520badaa978c9d3f4f3ef9246d2e9686
6
+ metadata.gz: 64c8fc1614624bfaec02e8e45bf0fa30f85214b2fe5ce55cac8eceb7f529fccadc2d8734ca5beebbefbc5324e348f7e63a53958acb215fa8ac99879b149defa5
7
+ data.tar.gz: c5f65db9f20698d711718b24646c9207c55a21862ae59d5208a1f574ec9675d192d6ab0d0c7abda2cb20d4f7eb0f949215523bca6f1a6d374730ebb05682a969
data/NEWS.md CHANGED
@@ -1,2 +1,5 @@
1
+ 1.0.1 (June 16, 2015)
2
+ * Removed Bourbon / thoughtbot front-end frameworks
3
+
1
4
  1.0 (June 16, 2015)
2
5
  * Forked from thoughtbot/suspenders and released without material changes
data/README.md CHANGED
@@ -25,8 +25,6 @@ It includes application gems like:
25
25
 
26
26
  * [Airbrake](https://github.com/airbrake/airbrake) for exception notification
27
27
  * [Autoprefixer Rails](https://github.com/ai/autoprefixer-rails) for CSS vendor prefixes
28
- * [Bourbon](https://github.com/thoughtbot/bourbon) for Sass mixins
29
- * [Bitters](https://github.com/thoughtbot/bitters) for scaffold application styles
30
28
  * [Delayed Job](https://github.com/collectiveidea/delayed_job) for background
31
29
  processing
32
30
  * [Email Validator](https://github.com/balexand/email_validator) for email
@@ -35,7 +33,6 @@ It includes application gems like:
35
33
  helpers
36
34
  * [High Voltage](https://github.com/thoughtbot/high_voltage) for static pages
37
35
  * [jQuery Rails](https://github.com/rails/jquery-rails) for jQuery
38
- * [Neat](https://github.com/thoughtbot/neat) for semantic grids
39
36
  * [New Relic RPM](https://github.com/newrelic/rpm) for monitoring performance
40
37
  * [Normalize](https://necolas.github.io/normalize.css/) for resetting browser styles
41
38
  * [Postgres](https://github.com/ged/ruby-pg) for access to the Postgres database
@@ -45,8 +42,6 @@ It includes application gems like:
45
42
  taking too long
46
43
  * [Recipient Interceptor](https://github.com/croaky/recipient_interceptor) to
47
44
  avoid accidentally sending emails to real people from staging
48
- * [Refills](https://github.com/thoughtbot/refills) for “copy-paste” components
49
- and patterns based on Bourbon, Neat and Bitters
50
45
  * [Simple Form](https://github.com/plataformatec/simple_form) for form markup
51
46
  and style
52
47
  * [Title](https://github.com/calebthompson/title) for storing titles in
@@ -188,7 +183,7 @@ PostgreSQL needs to be installed and running for the `db:create` rake task.
188
183
  ## Issues
189
184
 
190
185
  If you have problems, please create a
191
- [GitHub Issue](https://github.com/thoughtbot/slining/issues).
186
+ [GitHub Issue](https://github.com/vaporware/slining/issues).
192
187
 
193
188
  ## Contributing
194
189
 
@@ -196,7 +191,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
196
191
 
197
192
  Thank you, [contributors]!
198
193
 
199
- [contributors]: https://github.com/thoughtbot/slining/graphs/contributors
194
+ [contributors]: https://github.com/vaporware/slining/graphs/contributors
200
195
 
201
196
  ## License
202
197
  Slining is Copyright © 2015+ vaporware.
data/Rakefile CHANGED
@@ -5,4 +5,4 @@ require 'rspec/core/rake_task'
5
5
  RSpec::Core::RakeTask.new(:rspec)
6
6
 
7
7
  desc 'Run the test suite'
8
- task :default => :rspec
8
+ task default: :rspec
@@ -1,5 +1,5 @@
1
1
  module Slining
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
@@ -4,7 +4,6 @@ ruby "<%= Slining::RUBY_VERSION %>"
4
4
 
5
5
  gem "airbrake"
6
6
  gem "autoprefixer-rails"
7
- gem "bourbon", "~> 4.2.0"
8
7
  gem "coffee-rails", "~> 4.1.0"
9
8
  gem "delayed_job_active_record"
10
9
  gem "email_validator"
@@ -12,14 +11,12 @@ gem "flutie"
12
11
  gem "high_voltage"
13
12
  gem "i18n-tasks"
14
13
  gem "jquery-rails"
15
- gem "neat", "~> 1.7.0"
16
14
  gem "newrelic_rpm", ">= 3.9.8"
17
15
  gem "normalize-rails", "~> 3.0.0"
18
16
  gem "pg"
19
17
  gem "rack-canonical-host"
20
18
  gem "rails", "<%= Slining::RAILS_VERSION %>"
21
19
  gem "recipient_interceptor"
22
- gem "refills"
23
20
  gem "sass-rails", "~> 5.0"
24
21
  gem "simple_form"
25
22
  gem "title"
@@ -1,8 +1,3 @@
1
1
  @charset "utf-8";
2
2
 
3
3
  @import "normalize-rails";
4
- @import "bourbon";
5
- @import "base/grid-settings";
6
- @import "neat";
7
- @import "base/base";
8
- @import "refills/flashes";
@@ -1,4 +1,4 @@
1
1
  Last 2 versions
2
- Explorer >= 9
2
+ Explorer >= 10
3
3
  iOS >= 7.1
4
4
  Android >= 4.4
data/templates/smtp.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  SMTP_SETTINGS = {
2
- address: ENV.fetch("SMTP_ADDRESS"), # example: "smtp.sendgrid.net"
2
+ address: ENV.fetch("SMTP_ADDRESS"), # example: "smtp.mandrill.com"
3
3
  authentication: :plain,
4
- domain: ENV.fetch("SMTP_DOMAIN"), # example: "heroku.com"
4
+ domain: ENV.fetch("SMTP_DOMAIN"), # example: "myapp.com"
5
5
  enable_starttls_auto: true,
6
6
  password: ENV.fetch("SMTP_PASSWORD"),
7
7
  port: "587",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slining
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
  - vaporware