fohrcard-styles 0.1.2 → 0.1.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 +4 -4
- data/.DS_Store +0 -0
- data/.gitignore +9 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/styles/version.rb +1 -1
- data/styles.gemspec +28 -0
- data/vendor/assets/stylesheets/.DS_Store +0 -0
- metadata +10 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9259c12a535780071713789f0f48f74959fbcbc6
|
|
4
|
+
data.tar.gz: 735a929da5285b54fc647db63d9a5ce079dbe435
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 916ea9874d38b9107f122142ecf55b84b42270a0dc39717a697e1bc1ca195418a6807c326ebad7091b3644566b5893d210cbd3410fe44316d7d6c6efcd8ba7e0
|
|
7
|
+
data.tar.gz: 52a1696007014440ecf51022b3f8eeb7da5e923b2c5316305faf6dc64c828938f14ebf43d2d6b06450947143c695ef760448fa974abbb1d6ff7f44c1a5732845
|
data/.DS_Store
ADDED
|
Binary file
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "styles"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/lib/styles/version.rb
CHANGED
data/styles.gemspec
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'styles/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "fohrcard-styles"
|
|
8
|
+
spec.version = Styles::VERSION
|
|
9
|
+
spec.authors = ["richard tong"]
|
|
10
|
+
spec.email = ["rich@fohrcard.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Fohr Card Styles}
|
|
13
|
+
spec.description = %q{Fohr Card Styles Description}
|
|
14
|
+
spec.homepage = "https://github.com/fohrcard/styles"
|
|
15
|
+
|
|
16
|
+
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
|
17
|
+
# delete this section to allow pushing this gem to any host.
|
|
18
|
+
|
|
19
|
+
spec.files = `git ls-files`.split("\n")
|
|
20
|
+
spec.bindir = "exe"
|
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
|
+
spec.require_paths = ["lib"]
|
|
23
|
+
|
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.10"
|
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
26
|
+
spec.add_dependency "font-awesome-rails"
|
|
27
|
+
|
|
28
|
+
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fohrcard-styles
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- richard tong
|
|
@@ -59,12 +59,21 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".DS_Store"
|
|
63
|
+
- ".gitignore"
|
|
64
|
+
- ".travis.yml"
|
|
65
|
+
- Gemfile
|
|
62
66
|
- README.md
|
|
67
|
+
- Rakefile
|
|
68
|
+
- bin/console
|
|
69
|
+
- bin/setup
|
|
63
70
|
- lib/styles.rb
|
|
64
71
|
- lib/styles/version.rb
|
|
72
|
+
- styles.gemspec
|
|
65
73
|
- vendor/assets/javascripts/fohrcard_javascripts.js
|
|
66
74
|
- vendor/assets/javascripts/forms.js
|
|
67
75
|
- vendor/assets/javascripts/helpers.js
|
|
76
|
+
- vendor/assets/stylesheets/.DS_Store
|
|
68
77
|
- vendor/assets/stylesheets/fc_backgrounds.sass
|
|
69
78
|
- vendor/assets/stylesheets/fc_buttons.sass
|
|
70
79
|
- vendor/assets/stylesheets/fc_colors.sass
|