jasny_bundle 1.4.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1850688125a0bfcca16609d5f5ac712b3407710
4
- data.tar.gz: a6b3baf9f1d2598ae726e029e905a61849c0718f
3
+ metadata.gz: 7eaa2ff73012609453f1cac772c08ea04f03f808
4
+ data.tar.gz: 6ff4b4125cf1e98c72aa6fed0fd977cc815fe365
5
5
  SHA512:
6
- metadata.gz: 46fc9d45ca980e3180b97c6ef4abde1565f1ca95300d29f8c8df587614600d48efb4bbeb43d5d9629a7fcffa1223e43e772e19e03fa75a19afb13c3ceb5ad02f
7
- data.tar.gz: 5356cb1d4192d1a8eca6c0d0af92174f57a0c329ca8282821865ea5b9abb93a879fbc279aa892b100bbc43c70e195006ad8668773c06f8ecec9a3071ea50956e
6
+ metadata.gz: 0bd8051b759a5b06660ea9fedc10e5037d32093777f0cfe62d3689496df5a1e43bc98162f8c0ea87206edc78c9813c30467cfea5601d0d047cbaa48cadd39570
7
+ data.tar.gz: 1a6ec21c1691b9b227b7513ccff771636f60d4131573917330afcdaacf5e01f71c788ae00436c69b958e1c0e1b8f40f3cf5a8063dc8b7429b318b9608097be10
@@ -0,0 +1,46 @@
1
+ [![Gem Version](https://badge.fury.io/rb/jasny_bundle.svg)](http://badge.fury.io/rb/jasny_bundle)
2
+
3
+ # Jasny Bundle for Rails
4
+
5
+ A simple gem for jasny's bootstrap extensions which can be found [here](http://jasny.github.io/bootstrap "jasny's bootstrap"). The gem can be found on [Ruby Gems](https://rubygems.org/gems/jasny_bundle) and is tested and fully functional.
6
+
7
+ This gem includes the default Bootstrap files, so there's no need to install them seperately. As of version 2.0.0, this gem now includes the bootstrap-social features developed by @lipis.
8
+
9
+ If you're looking for a quick and easy way to get a rails app started with off-canvas navigation, then you should also download my basic framework, which is setup with the jasny off-canvas navigation and can be found [here] (https://github.com/tipsforthings/jasny-offcanvas-nav-rails).
10
+ If you feel like you could make an improvement to the framework, please submit a pull request as at the moment, any contribution that constitutes an improvement, would be more than welcome.
11
+
12
+ ## Installation
13
+
14
+ **Install the gem**
15
+
16
+ gem install jasny_bundle
17
+
18
+ **Add it to your Gemfile**
19
+
20
+ gem 'jasny_bundle'
21
+
22
+ **Bundle install**
23
+
24
+ bundle install
25
+
26
+ ## Usage
27
+
28
+ **In your application.js**
29
+
30
+ //= require bootstrap.min
31
+ //= require jasny-bootstrap
32
+
33
+ **In your application.css**
34
+
35
+ *= require bootstrap.min
36
+ *= require jasny-bootstrap
37
+
38
+ **And if you also want jasny's responsive**
39
+
40
+ *= require jasny-bootstrap-responsive
41
+
42
+ ## Framework
43
+
44
+ As mentioned earlier, I have created a framework for new rails apps to get you started with off-canvas navigation, which can be found [here](https://github.com/tipsforthings/jasny-offcanvas-nav-rails). If you are starting a new rails project, this is the method that I would recommend.
45
+
46
+ Simply clone the framework and run 'bundle install', this SHOULD leave you with a working application featuring the off-canvas navigation. Then you've just got to run 'rails server' and visit localhost:3000 in a web browser to view the working example.
@@ -10,8 +10,8 @@ Gem::Specification.new do |s|
10
10
  s.authors = ["Alex Scott"]
11
11
  s.email = ["alex@tipsforthings.com"]
12
12
  s.homepage = "https://github.com/tipsforthings/jasny-bundle/"
13
- s.summary = "Complete bundle including the latest version of Bootstrap and also the Jasny Bootstrap extensions."
14
- s.description = "This is a rails gem for the superb Jasny bootstrap extensions. It comes with all of the files you need to get going, so there's no need to install the Twitter Bootstrap gem seperately, it's all included. Use this with my template available at https://github.com/tipsforthings/jasny-offcanvas-nav-rails and you'll have a ready-made template that is pre-setup for this gem, which also has the Jasny off-canvas layout enabled."
13
+ s.summary = "Complete bundle including the latest version of Bootstrap, Jasny Bootstrap extensions and as of version 2.0.0, it now includes the superb bootstrap-social extension provided by @lipis."
14
+ s.description = "This is a rails gem for the superb Jasny bootstrap extensions plus @lipis bootstrap-social extension. It comes with all of the files you need to get going, so there's no need to install the Twitter Bootstrap gem seperately, it's all included. Use this with my template available at https://github.com/tipsforthings/jasny-offcanvas-nav-rails and you'll have a ready-made template that is pre-setup for this gem, which also has the Jasny off-canvas layout enabled. I'm going to be adding more features to this gem to hopefully make it the best bootstrap gem available. I'm going to be writing some extensive documentation soon and would welcome any other feature requests that I can include for you."
15
15
 
16
16
  s.files = `git ls-files`.split("\n")
17
17
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -1,3 +1,3 @@
1
1
  module JasnyBundle
2
- VERSION = "1.4.0"
2
+ VERSION = "2.0.0"
3
3
  end
metadata CHANGED
@@ -1,21 +1,24 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jasny_bundle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Scott
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-14 00:00:00.000000000 Z
11
+ date: 2014-08-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: This is a rails gem for the superb Jasny bootstrap extensions. It comes
14
- with all of the files you need to get going, so there's no need to install the Twitter
15
- Bootstrap gem seperately, it's all included. Use this with my template available
16
- at https://github.com/tipsforthings/jasny-offcanvas-nav-rails and you'll have a
17
- ready-made template that is pre-setup for this gem, which also has the Jasny off-canvas
18
- layout enabled.
13
+ description: This is a rails gem for the superb Jasny bootstrap extensions plus @lipis
14
+ bootstrap-social extension. It comes with all of the files you need to get going,
15
+ so there's no need to install the Twitter Bootstrap gem seperately, it's all included.
16
+ Use this with my template available at https://github.com/tipsforthings/jasny-offcanvas-nav-rails
17
+ and you'll have a ready-made template that is pre-setup for this gem, which also
18
+ has the Jasny off-canvas layout enabled. I'm going to be adding more features to
19
+ this gem to hopefully make it the best bootstrap gem available. I'm going to be
20
+ writing some extensive documentation soon and would welcome any other feature requests
21
+ that I can include for you.
19
22
  email:
20
23
  - alex@tipsforthings.com
21
24
  executables: []
@@ -27,6 +30,7 @@ files:
27
30
  - ".gitignore"
28
31
  - Gemfile
29
32
  - LICENSE
33
+ - README.md
30
34
  - Rakefile
31
35
  - jasny_bundle.gemspec
32
36
  - lib/jasny_bundle.rb
@@ -66,6 +70,7 @@ rubyforge_project:
66
70
  rubygems_version: 2.2.2
67
71
  signing_key:
68
72
  specification_version: 4
69
- summary: Complete bundle including the latest version of Bootstrap and also the Jasny
70
- Bootstrap extensions.
73
+ summary: Complete bundle including the latest version of Bootstrap, Jasny Bootstrap
74
+ extensions and as of version 2.0.0, it now includes the superb bootstrap-social
75
+ extension provided by @lipis.
71
76
  test_files: []