jombo 1.0.0 → 1.0.1

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.
data/README.md CHANGED
@@ -2,15 +2,13 @@
2
2
 
3
3
  ## Preamble
4
4
 
5
- `jombo` is a gem that packages the asset files used in Bootstrap from Twitter.
6
-
7
- Please note that this project tracks the 2.0 work-in-progress branch. The branch is very fluid so things will likely not work from time to time.
5
+ `jombo` is a gem that packages the asset files used in [Bootstrap](http://twitter.github.com/bootstrap/), from Twitter, so that you can use them in the Rails 3 Asset Pipeline.
8
6
 
9
7
  ## Back-story
10
8
 
11
- I'm a phenomenal fan of [Bootstrap](http://twitter.github.com/bootstrap/) from Twitter. One might even say a cheerleader! Anyhow, I use [Rails](http://rubyonrails.org/) and wanted to experiment with the bleeding edge of Bootstrap as it was being developed. Manually adding adding and updating the assets in one project was fine. Doing it for two or three projects over-and-over started to become cumbersome.
9
+ I'm a phenomenal fan of [Bootstrap](http://twitter.github.com/bootstrap/). One might even say a cheerleader! Anyhow, I use [Rails](http://rubyonrails.org/) and wanted to experiment with the bleeding edge of Bootstrap as it was being developed. Manually adding adding and updating the assets in one project was fine. Doing it for two or three projects over-and-over started to become cumbersome.
12
10
 
13
- I had never made a gem before. The shiny new Rails 3.1.x asset pipeline offered an interesting new piece of learning. So, here it is, my first Ruby gem in living history.
11
+ I had never made a gem before. The shiny new Rails 3 Asset Pipeline offered an interesting new piece of learning. So, here it is, my first Ruby gem in living history.
14
12
 
15
13
  This is all very new to me so if you have contributions, bring them but be gentle.
16
14
 
@@ -28,9 +26,12 @@ So there you have it ... and you didn't even want to know!
28
26
 
29
27
  ## Setup
30
28
 
31
- In a Rails 3.1.x project add the gem to your assets group in your `Gemfile`. It is currently in beta:
29
+ In a Rails 3.1.x (or later) project add the gem to your assets group in your `Gemfile`.
30
+
31
+ gem "jombo", "~> 1.0.1"
32
+
33
+ You can expect the RubyGems page to have the [latest version available](http://rubygems.org/gems/jombo).
32
34
 
33
- gem "jombo", "~> 0.0.1.beta9"
34
35
 
35
36
  Bundle the gem using bundler:
36
37
 
@@ -50,7 +51,7 @@ to your `application.js` and
50
51
 
51
52
  to your `application.css`.
52
53
 
53
- You may need to restart your application for the changes to reflect (I find this behaviour a bit odd and am looking in to why).
54
+ You will need to restart your application for the changes to reflect.
54
55
 
55
56
  ## Usage
56
57
 
data/jombo.gemspec CHANGED
@@ -4,8 +4,8 @@ require File.expand_path('../lib/jombo/version', __FILE__)
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["Silumesii Maboshe"]
6
6
  gem.email = ["silumesii@pencilcasestudios.com"]
7
- gem.description = %q{Package Bootstrap from Twitter (2.0 work-in-progress branch) assets as a gem.}
8
- gem.summary = %q{This gem allows you to use Bootstrap from Twitter with the Rails 3.1.x asset pipline.}
7
+ gem.description = %q{Package Bootstrap from Twitter assets as a gem.}
8
+ gem.summary = %q{This gem allows you to use Bootstrap from Twitter with the Rails 3 Asset Pipline.}
9
9
  gem.homepage = "http://github.com/smaboshe/jombo"
10
10
 
11
11
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
data/lib/jombo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jombo
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
@@ -0,0 +1 @@
1
+ //= require_tree ./bootstrap
@@ -0,0 +1,5 @@
1
+ /*
2
+ *= require bootstrap/bootstrap
3
+ *= require bootstrap/bootstrap-responsive
4
+ *= require_tree ./bootstrap
5
+ */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jombo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,8 +11,7 @@ bindir: bin
11
11
  cert_chain: []
12
12
  date: 2012-02-01 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: Package Bootstrap from Twitter (2.0 work-in-progress branch) assets as
15
- a gem.
14
+ description: Package Bootstrap from Twitter assets as a gem.
16
15
  email:
17
16
  - silumesii@pencilcasestudios.com
18
17
  executables: []
@@ -30,6 +29,7 @@ files:
30
29
  - lib/jombo/generators/install_generator.rb
31
30
  - lib/jombo/railtie.rb
32
31
  - lib/jombo/version.rb
32
+ - vendor/assets/javascripts/bootstrap.js
33
33
  - vendor/assets/javascripts/bootstrap/bootstrap-alert.js
34
34
  - vendor/assets/javascripts/bootstrap/bootstrap-button.js
35
35
  - vendor/assets/javascripts/bootstrap/bootstrap-carousel.js
@@ -42,10 +42,9 @@ files:
42
42
  - vendor/assets/javascripts/bootstrap/bootstrap-tooltip.js
43
43
  - vendor/assets/javascripts/bootstrap/bootstrap-transition.js
44
44
  - vendor/assets/javascripts/bootstrap/bootstrap-typeahead.js
45
- - vendor/assets/javascripts/bootstrap/index.js
45
+ - vendor/assets/stylesheets/bootstrap.css
46
46
  - vendor/assets/stylesheets/bootstrap/bootstrap-responsive.css
47
47
  - vendor/assets/stylesheets/bootstrap/bootstrap.css
48
- - vendor/assets/stylesheets/bootstrap/index.css
49
48
  homepage: http://github.com/smaboshe/jombo
50
49
  licenses: []
51
50
  post_install_message:
@@ -69,6 +68,6 @@ rubyforge_project:
69
68
  rubygems_version: 1.8.15
70
69
  signing_key:
71
70
  specification_version: 3
72
- summary: This gem allows you to use Bootstrap from Twitter with the Rails 3.1.x asset
73
- pipline.
71
+ summary: This gem allows you to use Bootstrap from Twitter with the Rails 3 Asset
72
+ Pipline.
74
73
  test_files: []
@@ -1 +0,0 @@
1
- //= require_tree .
@@ -1,3 +0,0 @@
1
- /*
2
- *= require_tree .
3
- */