slining 1.0.1 → 1.1.0
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 +4 -4
- data/Gemfile.lock +4 -1
- data/LICENSE +1 -19
- data/NEWS.md +5 -1
- data/README.md +4 -2
- data/lib/slining/app_builder.rb +0 -10
- data/lib/slining/generators/app_generator.rb +0 -12
- data/lib/slining/version.rb +1 -1
- data/templates/Gemfile.erb +2 -0
- data/templates/application.scss +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 972c6a92854641e7b46c0f0c3f256135576f65bc
|
|
4
|
+
data.tar.gz: 0b1c182f4447b13d01cf414f97ca7da37218ddfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c76e65fcb2b9bf07644ea139a6fe5fe6515d169a10fba40a3ffdfbd24e07d4ed3d5d6df3daca4c51f4aab6c6d3cc89e54d77727b502228eeafb712442a729272
|
|
7
|
+
data.tar.gz: 5941faec56ed4fe5f34fa454fca9c3a41887b33d8717647524c3b3a4b2541c816420cb7fb21f0957db929bad8e81c45d3bc4d6cf3935da078206b3fe2218e233
|
data/Gemfile.lock
CHANGED
data/LICENSE
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
## SLINING LICENSE
|
|
2
|
-
|
|
3
1
|
The MIT License
|
|
4
2
|
|
|
5
3
|
Copyright (c) 2015+ and vaporware, inc.
|
|
4
|
+
Copyright (c) 2010-2012 Mike Burns and thoughtbot, inc.
|
|
6
5
|
|
|
7
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
7
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -21,20 +20,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
21
20
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
21
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23
22
|
THE SOFTWARE.
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
## SUSPENDERS LICENSE
|
|
27
|
-
|
|
28
|
-
The MIT License
|
|
29
|
-
|
|
30
|
-
Copyright (c) 2010-2012 Mike Burns and thoughtbot, inc.
|
|
31
|
-
|
|
32
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
33
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
34
|
-
in the Software without restriction, including without limitation the rights
|
|
35
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
36
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
37
|
-
furnished to do so, subject to the following conditions:
|
|
38
|
-
|
|
39
|
-
The above copyright notice and this permission notice shall be included in
|
|
40
|
-
all copies or substantial portions of the Software.
|
data/NEWS.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
1.1.0 (June 23, 2015)
|
|
2
|
+
* Added HAML and HAML Rails
|
|
3
|
+
* Added Twitter Bootstrap
|
|
4
|
+
|
|
1
5
|
1.0.1 (June 16, 2015)
|
|
2
6
|
* Removed Bourbon / thoughtbot front-end frameworks
|
|
3
7
|
|
|
4
|
-
1.0 (June 16, 2015)
|
|
8
|
+
1.0.0 (June 16, 2015)
|
|
5
9
|
* Forked from thoughtbot/suspenders and released without material changes
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Slining [](http://travis-ci.org/vaporware/slining)
|
|
1
|
+
# Slining [](http://travis-ci.org/vaporware/slining) [](http://badge.fury.io/rb/slining) [](http://badge.fury.io/rb/slining) [](https://codeclimate.com/github/vaporware/slining) [](https://codeclimate.com/github/vaporware/slining/coverage)
|
|
2
2
|
|
|
3
3
|
Slining is the Silver Lining to Vaporware's Rails development, i.e. the base Rails application used at
|
|
4
4
|
[vaporware](http://vaporwa.re). It's a forked project from [thoughtbot's suspenders](http://github.com/thoughtbot/suspenders).
|
|
@@ -25,12 +25,14 @@ 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
|
+
* [Bootstrap](getbootstrap.com) for fast frontend prototyping
|
|
28
29
|
* [Delayed Job](https://github.com/collectiveidea/delayed_job) for background
|
|
29
30
|
processing
|
|
30
31
|
* [Email Validator](https://github.com/balexand/email_validator) for email
|
|
31
32
|
validation
|
|
32
33
|
* [Flutie](https://github.com/thoughtbot/flutie) for `page_title` and `body_class` view
|
|
33
34
|
helpers
|
|
35
|
+
* [HAML](http://haml.info/) for cleaner view code
|
|
34
36
|
* [High Voltage](https://github.com/thoughtbot/high_voltage) for static pages
|
|
35
37
|
* [jQuery Rails](https://github.com/rails/jquery-rails) for jQuery
|
|
36
38
|
* [New Relic RPM](https://github.com/newrelic/rpm) for monitoring performance
|
|
@@ -46,7 +48,7 @@ It includes application gems like:
|
|
|
46
48
|
and style
|
|
47
49
|
* [Title](https://github.com/calebthompson/title) for storing titles in
|
|
48
50
|
translations
|
|
49
|
-
* [Unicorn](https://github.com/defunkt/unicorn) to serve HTTP requests
|
|
51
|
+
* [Unicorn](https://github.com/defunkt/unicorn) to serve HTTP requests.
|
|
50
52
|
|
|
51
53
|
And development gems like:
|
|
52
54
|
|
data/lib/slining/app_builder.rb
CHANGED
|
@@ -293,16 +293,6 @@ Rack::Timeout.timeout = (ENV["RACK_TIMEOUT"] || 10).to_i
|
|
|
293
293
|
"app/assets/stylesheets/application.scss"
|
|
294
294
|
end
|
|
295
295
|
|
|
296
|
-
def install_refills
|
|
297
|
-
run "rails generate refills:import flashes"
|
|
298
|
-
run "rm app/views/refills/_flashes.html.erb"
|
|
299
|
-
run "rmdir app/views/refills"
|
|
300
|
-
end
|
|
301
|
-
|
|
302
|
-
def install_bitters
|
|
303
|
-
run "bitters install --path app/assets/stylesheets"
|
|
304
|
-
end
|
|
305
|
-
|
|
306
296
|
def gitignore_files
|
|
307
297
|
remove_file '.gitignore'
|
|
308
298
|
copy_file 'slining_gitignore', '.gitignore'
|
|
@@ -39,8 +39,6 @@ module Slining
|
|
|
39
39
|
invoke :create_slining_views
|
|
40
40
|
invoke :configure_app
|
|
41
41
|
invoke :setup_stylesheets
|
|
42
|
-
invoke :install_bitters
|
|
43
|
-
invoke :install_refills
|
|
44
42
|
invoke :copy_miscellaneous_files
|
|
45
43
|
invoke :customize_error_pages
|
|
46
44
|
invoke :remove_routes_comment_lines
|
|
@@ -147,16 +145,6 @@ module Slining
|
|
|
147
145
|
build :setup_stylesheets
|
|
148
146
|
end
|
|
149
147
|
|
|
150
|
-
def install_bitters
|
|
151
|
-
say 'Install Bitters'
|
|
152
|
-
build :install_bitters
|
|
153
|
-
end
|
|
154
|
-
|
|
155
|
-
def install_refills
|
|
156
|
-
say "Install Refills"
|
|
157
|
-
build :install_refills
|
|
158
|
-
end
|
|
159
|
-
|
|
160
148
|
def setup_git
|
|
161
149
|
if !options[:skip_git]
|
|
162
150
|
say 'Initializing git'
|
data/lib/slining/version.rb
CHANGED
data/templates/Gemfile.erb
CHANGED
|
@@ -4,10 +4,12 @@ ruby "<%= Slining::RUBY_VERSION %>"
|
|
|
4
4
|
|
|
5
5
|
gem "airbrake"
|
|
6
6
|
gem "autoprefixer-rails"
|
|
7
|
+
gem "bootstrap-sass", "~> 3.3.5"
|
|
7
8
|
gem "coffee-rails", "~> 4.1.0"
|
|
8
9
|
gem "delayed_job_active_record"
|
|
9
10
|
gem "email_validator"
|
|
10
11
|
gem "flutie"
|
|
12
|
+
gem "haml-rails", "~> 0.9"
|
|
11
13
|
gem "high_voltage"
|
|
12
14
|
gem "i18n-tasks"
|
|
13
15
|
gem "jquery-rails"
|
data/templates/application.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slining
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vaporware
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-06-
|
|
11
|
+
date: 2015-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
151
|
rubyforge_project:
|
|
152
|
-
rubygems_version: 2.4.
|
|
152
|
+
rubygems_version: 2.4.8
|
|
153
153
|
signing_key:
|
|
154
154
|
specification_version: 4
|
|
155
155
|
summary: Generate a Rails app using vaporware's best practices.
|