spectre_css 0.1.4 → 0.1.6

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
  SHA256:
3
- metadata.gz: a4606cb8fa57e7a255cdf1baf317d46bdab629db07be02c913a71b5abfe9f482
4
- data.tar.gz: ed6e271bf14d78ca4f7af082b560e57ecbd6299944c5d47c45ccf02a3cf604fb
3
+ metadata.gz: d2038049934c1a7edaee2e3d8c9a0e7f865dbc17a0150dae1b946bfbcf82ab0f
4
+ data.tar.gz: 4aa43fdbe9c27022babfb1302f9f3f18efae9b2f58d3b36561a250a1bf1f4692
5
5
  SHA512:
6
- metadata.gz: 829a697e981750c63dc4196920a7d12c902408f07d784c177d8f91124ddc48a3ca2f5cd97a09316b4c7327375e239050475b5c92cfdf5f5b0e3036fda439d049
7
- data.tar.gz: dfdcdf1f2f704c54818321524ba54e2cf1ef510631b7cc4f8cc593fd5faa9278497d5a82c2e52ab085cf689eb0d428bb27887ff4f3363f6cb81ce3bb1669b55f
6
+ metadata.gz: b794e1b56e7ff8a2345b0d654d5b6df66e0e03ae181b52b132f00c0dc416b33532d135951aeb609fef1d3c1f19fa3b4e4df8bd8454602146bb4b192e2ed68d82
7
+ data.tar.gz: 7fe49a733cb3ea59db05691d1c6ca08bfdba2f277eae69aef318732a2c0c077fd131e9da2159eb97198f84a8d92dfbc633bbb6a826a3c4f314bb72b4b8a5a3ab
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ *gem
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # SpectreCss
1
+ # Spectre_Css
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/spectre_css`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ [Spectre.css](https://picturepan2.github.io/spectre/) is a lightweight, responsive and modern CSS framework for faster and extensible development.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ Spectre provides basic styles for typography and elements, flexbox based responsive layout system, pure CSS components and utilities with best practice coding and consistent design language.
6
6
 
7
7
  ## Installation
8
8
 
@@ -37,7 +37,7 @@ Icons
37
37
  ```
38
38
  ## Usage
39
39
 
40
- TODO: Write usage instructions here
40
+ [Spectre.css](https://picturepan2.github.io/spectre/)
41
41
 
42
42
  ## Development
43
43
 
@@ -47,7 +47,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
47
47
 
48
48
  ## Contributing
49
49
 
50
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/spectre_css. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
50
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mbronek7/Spectre_css-for-Ruby-on-Rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
51
51
 
52
52
  ## License
53
53
 
@@ -55,4 +55,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
55
55
 
56
56
  ## Code of Conduct
57
57
 
58
- Everyone interacting in the SpectreCss project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/spectre_css/blob/master/CODE_OF_CONDUCT.md).
58
+ Everyone interacting in the SpectreCss project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/mbronek7/Spectre_css-for-Ruby-on-Rails/blob/master/CODE_OF_CONDUCT.md).
@@ -1,4 +1,5 @@
1
+ require "spectre_css/version"
1
2
 
2
- module Spectre
3
- class Engine < ::Rails::Engine; end
3
+ module SpectreCss
4
+ class Engine < ::Rails::Engine; end
4
5
  end
@@ -1,3 +1,3 @@
1
1
  module SpectreCss
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
@@ -1,27 +1,19 @@
1
-
2
1
  lib = File.expand_path("../lib", __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
-
3
+
5
4
  Gem::Specification.new do |spec|
6
- spec.name = "spectre_css"
7
- spec.version = "0.1.4"
8
- spec.authors = ["mbronek7"]
9
- spec.email = ["mbronek7@gmail.com"]
10
-
11
- spec.summary = %q{Spectre.css for Rails}
12
- spec.description = %q{Spectre.css a Lightweight, Responsive and Modern CSS Framework}
5
+ spec.name = "spectre_css"
6
+ spec.version = "0.1.6"
7
+ spec.authors = ["mbronek7"]
8
+ spec.email = ["mbronek7@gmail.com"]
9
+
10
+ spec.summary = %q{Spectre.css for Rails}
11
+ spec.description = %q{Spectre.css a Lightweight, Responsive and Modern CSS Framework}
12
+
13
+ spec.homepage = "https://github.com/mbronek7/Spectre_css-for-Ruby-on-Rails"
14
+ spec.license = "MIT"
13
15
 
14
- spec.homepage = "https://github.com/mbronek7/Spectre_css-for-Ruby-on-Rails"
15
- spec.license = "MIT"
16
16
 
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
- # to allow pushing to a single host or delete this section to allow pushing to any host.
19
- #if spec.respond_to?(:metadata)
20
- # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
- #else
22
- # raise "RubyGems 2.0 or newer is required to protect against " \
23
- # "public gem pushes."
24
- #end
25
17
 
26
18
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
19
  f.match(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spectre_css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - mbronek7
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-02-19 00:00:00.000000000 Z
11
+ date: 2018-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -56,10 +56,6 @@ files:
56
56
  - bin/setup
57
57
  - lib/spectre_css.rb
58
58
  - lib/spectre_css/version.rb
59
- - spectre_css-0.1.0.gem
60
- - spectre_css-0.1.1.gem
61
- - spectre_css-0.1.2.gem
62
- - spectre_css-0.1.3.gem
63
59
  - spectre_css.gemspec
64
60
  - vendor/assets/stylesheets/spectre-exp.css
65
61
  - vendor/assets/stylesheets/spectre-exp.min.css
Binary file
Binary file
Binary file
Binary file