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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8253592fc2d231d2f1dee823737d32e9d7e8f089
4
- data.tar.gz: a424bc5242c23af12c7f9a5f36ead7988a3703f4
3
+ metadata.gz: 9259c12a535780071713789f0f48f74959fbcbc6
4
+ data.tar.gz: 735a929da5285b54fc647db63d9a5ce079dbe435
5
5
  SHA512:
6
- metadata.gz: f4251e4d748e868c7ed8ea82948577b19058e38748b1ea19fafd6e669fb157d0a7f9a83127e682f2878cb11c4af92ce7d0a5ebb5e702911f64a732d73be5c55e
7
- data.tar.gz: 9880e71450faeca19a402855cdca377fb775c119bda077c0d3a2c48cdfc03938060a4345102eba1af96918691dcde0745c7c598719615180b4d7e50f8d0c72e0
6
+ metadata.gz: 916ea9874d38b9107f122142ecf55b84b42270a0dc39717a697e1bc1ca195418a6807c326ebad7091b3644566b5893d210cbd3410fe44316d7d6c6efcd8ba7e0
7
+ data.tar.gz: 52a1696007014440ecf51022b3f8eeb7da5e923b2c5316305faf6dc64c828938f14ebf43d2d6b06450947143c695ef760448fa974abbb1d6ff7f44c1a5732845
data/.DS_Store ADDED
Binary file
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.0
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in styles.gemspec
4
+ gemspec
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
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -1,3 +1,3 @@
1
1
  module Styles
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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