DropIn 0.0.2
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 +7 -0
- data/.gitignore +8 -0
- data/Gemfile +15 -0
- data/Gemfile.lock +109 -0
- data/README.md +28 -0
- data/Rakefile +37 -0
- data/drop_in.gemspec +21 -0
- data/lib/drop_in.rb +4 -0
- data/lib/drop_in/engine.rb +4 -0
- data/lib/drop_in/version.rb +3 -0
- data/vendor/assets/images/.keep +0 -0
- data/vendor/assets/javascripts/_global.js +5 -0
- data/vendor/assets/javascripts/drop_in.js +14 -0
- data/vendor/assets/stylesheets/_global.scss +7 -0
- data/vendor/assets/stylesheets/drop_in.scss +15 -0
- metadata +85 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c2585479c98c6946967865d5358c0ff7f073d36f
|
|
4
|
+
data.tar.gz: 1b03523c319371a21d4132827839a4a11ee9fe07
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8cb9226e40168fbe943eb8a85461ca6246f32d9dfbade90c9c1d2855e19ab1e8debc99cdc928f9dc16a433a69243d8f027dc031f723918da4d579b60b5821fc3
|
|
7
|
+
data.tar.gz: 4aa95c6de3c5920f978b6daeb2e7808c3a99a4da5596b5017c7b532fd6121bd63b7ca3c5ec991f87698cfbd5dff6f7b36ee5c1d18b71a164c831ff187412aace
|
data/.gitignore
ADDED
data/Gemfile
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
# Declare your gem's dependencies in home_depot_styles.gemspec.
|
|
4
|
+
# Bundler will treat runtime dependencies like base dependencies, and
|
|
5
|
+
# development dependencies will be added by default to the :development group.
|
|
6
|
+
gemspec
|
|
7
|
+
|
|
8
|
+
# Declare any dependencies that are still in development here instead of in
|
|
9
|
+
# your gemspec. These might include edge Rails or gems from your path or
|
|
10
|
+
# Git. Remember to move these dependencies to your gemspec before releasing
|
|
11
|
+
# your gem to rubygems.org.
|
|
12
|
+
|
|
13
|
+
# To use a debugger
|
|
14
|
+
# gem 'byebug', group: [:development, :test]
|
|
15
|
+
|
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
DropIn (0.0.2)
|
|
5
|
+
rails (~> 4.2.3)
|
|
6
|
+
|
|
7
|
+
GEM
|
|
8
|
+
remote: https://rubygems.org/
|
|
9
|
+
specs:
|
|
10
|
+
actionmailer (4.2.4)
|
|
11
|
+
actionpack (= 4.2.4)
|
|
12
|
+
actionview (= 4.2.4)
|
|
13
|
+
activejob (= 4.2.4)
|
|
14
|
+
mail (~> 2.5, >= 2.5.4)
|
|
15
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
|
16
|
+
actionpack (4.2.4)
|
|
17
|
+
actionview (= 4.2.4)
|
|
18
|
+
activesupport (= 4.2.4)
|
|
19
|
+
rack (~> 1.6)
|
|
20
|
+
rack-test (~> 0.6.2)
|
|
21
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
|
22
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
23
|
+
actionview (4.2.4)
|
|
24
|
+
activesupport (= 4.2.4)
|
|
25
|
+
builder (~> 3.1)
|
|
26
|
+
erubis (~> 2.7.0)
|
|
27
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
|
28
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
29
|
+
activejob (4.2.4)
|
|
30
|
+
activesupport (= 4.2.4)
|
|
31
|
+
globalid (>= 0.3.0)
|
|
32
|
+
activemodel (4.2.4)
|
|
33
|
+
activesupport (= 4.2.4)
|
|
34
|
+
builder (~> 3.1)
|
|
35
|
+
activerecord (4.2.4)
|
|
36
|
+
activemodel (= 4.2.4)
|
|
37
|
+
activesupport (= 4.2.4)
|
|
38
|
+
arel (~> 6.0)
|
|
39
|
+
activesupport (4.2.4)
|
|
40
|
+
i18n (~> 0.7)
|
|
41
|
+
json (~> 1.7, >= 1.7.7)
|
|
42
|
+
minitest (~> 5.1)
|
|
43
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
|
44
|
+
tzinfo (~> 1.1)
|
|
45
|
+
arel (6.0.3)
|
|
46
|
+
builder (3.2.2)
|
|
47
|
+
erubis (2.7.0)
|
|
48
|
+
globalid (0.3.6)
|
|
49
|
+
activesupport (>= 4.1.0)
|
|
50
|
+
i18n (0.7.0)
|
|
51
|
+
json (1.8.3)
|
|
52
|
+
loofah (2.0.3)
|
|
53
|
+
nokogiri (>= 1.5.9)
|
|
54
|
+
mail (2.6.3)
|
|
55
|
+
mime-types (>= 1.16, < 3)
|
|
56
|
+
mime-types (2.6.2)
|
|
57
|
+
mini_portile (0.6.2)
|
|
58
|
+
minitest (5.8.0)
|
|
59
|
+
nokogiri (1.6.6.2)
|
|
60
|
+
mini_portile (~> 0.6.0)
|
|
61
|
+
rack (1.6.4)
|
|
62
|
+
rack-test (0.6.3)
|
|
63
|
+
rack (>= 1.0)
|
|
64
|
+
rails (4.2.4)
|
|
65
|
+
actionmailer (= 4.2.4)
|
|
66
|
+
actionpack (= 4.2.4)
|
|
67
|
+
actionview (= 4.2.4)
|
|
68
|
+
activejob (= 4.2.4)
|
|
69
|
+
activemodel (= 4.2.4)
|
|
70
|
+
activerecord (= 4.2.4)
|
|
71
|
+
activesupport (= 4.2.4)
|
|
72
|
+
bundler (>= 1.3.0, < 2.0)
|
|
73
|
+
railties (= 4.2.4)
|
|
74
|
+
sprockets-rails
|
|
75
|
+
rails-deprecated_sanitizer (1.0.3)
|
|
76
|
+
activesupport (>= 4.2.0.alpha)
|
|
77
|
+
rails-dom-testing (1.0.7)
|
|
78
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
|
79
|
+
nokogiri (~> 1.6.0)
|
|
80
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
|
81
|
+
rails-html-sanitizer (1.0.2)
|
|
82
|
+
loofah (~> 2.0)
|
|
83
|
+
railties (4.2.4)
|
|
84
|
+
actionpack (= 4.2.4)
|
|
85
|
+
activesupport (= 4.2.4)
|
|
86
|
+
rake (>= 0.8.7)
|
|
87
|
+
thor (>= 0.18.1, < 2.0)
|
|
88
|
+
rake (10.4.2)
|
|
89
|
+
sprockets (3.3.4)
|
|
90
|
+
rack (~> 1.0)
|
|
91
|
+
sprockets-rails (2.3.3)
|
|
92
|
+
actionpack (>= 3.0)
|
|
93
|
+
activesupport (>= 3.0)
|
|
94
|
+
sprockets (>= 2.8, < 4.0)
|
|
95
|
+
sqlite3 (1.3.10)
|
|
96
|
+
thor (0.19.1)
|
|
97
|
+
thread_safe (0.3.5)
|
|
98
|
+
tzinfo (1.2.2)
|
|
99
|
+
thread_safe (~> 0.1)
|
|
100
|
+
|
|
101
|
+
PLATFORMS
|
|
102
|
+
ruby
|
|
103
|
+
|
|
104
|
+
DEPENDENCIES
|
|
105
|
+
DropIn!
|
|
106
|
+
sqlite3
|
|
107
|
+
|
|
108
|
+
BUNDLED WITH
|
|
109
|
+
1.10.6
|
data/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Drop In
|
|
2
|
+
|
|
3
|
+
Include Drop In styles into your Rails Application!
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
In your Gemfile:
|
|
8
|
+
```
|
|
9
|
+
gem 'drop_in', git: 'git@github.com:thd-pivotal/home_depot_styles.git'
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Usage
|
|
13
|
+
|
|
14
|
+
Require the styles in application.scss:
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
*= require_tree .
|
|
18
|
+
*= require_self
|
|
19
|
+
*= require drop_in
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Get the latest styles from the gem
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
$ bundle update drop_in
|
|
26
|
+
```
|
|
27
|
+
-------------
|
|
28
|
+
Brought to you by [Paul Farino](https://github.com/paulfarino)
|
data/Rakefile
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
begin
|
|
2
|
+
require 'bundler/setup'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
require 'rdoc/task'
|
|
8
|
+
|
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
11
|
+
rdoc.title = 'DropIn'
|
|
12
|
+
rdoc.options << '--line-numbers'
|
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
|
18
|
+
load 'rails/tasks/engine.rake'
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
load 'rails/tasks/statistics.rake'
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Bundler::GemHelper.install_tasks
|
|
26
|
+
|
|
27
|
+
require 'rake/testtask'
|
|
28
|
+
|
|
29
|
+
Rake::TestTask.new(:test) do |t|
|
|
30
|
+
t.libs << 'lib'
|
|
31
|
+
t.libs << 'test'
|
|
32
|
+
t.pattern = 'test/**/*_test.rb'
|
|
33
|
+
t.verbose = false
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
task default: :test
|
data/drop_in.gemspec
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
2
|
+
|
|
3
|
+
# Maintain your gem's version:
|
|
4
|
+
require "drop_in/version"
|
|
5
|
+
|
|
6
|
+
# Describe your gem and declare its dependencies:
|
|
7
|
+
Gem::Specification.new do |s|
|
|
8
|
+
s.name = "DropIn"
|
|
9
|
+
s.version = DropIn::VERSION
|
|
10
|
+
s.authors = ["Paul Farino"]
|
|
11
|
+
s.email = ["paul.farino1@gmail.com"]
|
|
12
|
+
s.summary = 'Drop-In Styles'
|
|
13
|
+
s.description = 'Drop-In styles into your Rails Application'
|
|
14
|
+
|
|
15
|
+
s.test_files = Dir["test/**/*"]
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
|
|
18
|
+
s.add_dependency "rails", "~> 4.2.3"
|
|
19
|
+
|
|
20
|
+
s.add_development_dependency "sqlite3"
|
|
21
|
+
end
|
data/lib/drop_in.rb
ADDED
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require_tree .
|
|
14
|
+
//= require global
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
|
11
|
+
* file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|
metadata
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: DropIn
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Paul Farino
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-09-17 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.2.3
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.2.3
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: sqlite3
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: Drop-In styles into your Rails Application
|
|
42
|
+
email:
|
|
43
|
+
- paul.farino1@gmail.com
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- .gitignore
|
|
49
|
+
- Gemfile
|
|
50
|
+
- Gemfile.lock
|
|
51
|
+
- README.md
|
|
52
|
+
- Rakefile
|
|
53
|
+
- drop_in.gemspec
|
|
54
|
+
- lib/drop_in.rb
|
|
55
|
+
- lib/drop_in/engine.rb
|
|
56
|
+
- lib/drop_in/version.rb
|
|
57
|
+
- vendor/assets/images/.keep
|
|
58
|
+
- vendor/assets/javascripts/_global.js
|
|
59
|
+
- vendor/assets/javascripts/drop_in.js
|
|
60
|
+
- vendor/assets/stylesheets/_global.scss
|
|
61
|
+
- vendor/assets/stylesheets/drop_in.scss
|
|
62
|
+
homepage:
|
|
63
|
+
licenses: []
|
|
64
|
+
metadata: {}
|
|
65
|
+
post_install_message:
|
|
66
|
+
rdoc_options: []
|
|
67
|
+
require_paths:
|
|
68
|
+
- lib
|
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - '>='
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0'
|
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - '>='
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: '0'
|
|
79
|
+
requirements: []
|
|
80
|
+
rubyforge_project:
|
|
81
|
+
rubygems_version: 2.4.6
|
|
82
|
+
signing_key:
|
|
83
|
+
specification_version: 4
|
|
84
|
+
summary: Drop-In Styles
|
|
85
|
+
test_files: []
|