BootstrapMan 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
  SHA256:
3
- metadata.gz: 3268b94c438f7eae2bb0f3af57c4568ee0eb0a055d0d4dadc0c0a3fd96881f70
4
- data.tar.gz: 1a640e85e303e69cb8a407c5eb04328e1aaba49d88b14f5ef8e2ae80addf31c9
3
+ metadata.gz: 6c61c830bf356cd02aec2bbf80ad32058d03b360984c1e16f7301ad90598c930
4
+ data.tar.gz: d743f0577b2a956da36637e2616015b20c3bce6e44bb213ce96937570bbe54a2
5
5
  SHA512:
6
- metadata.gz: a3ecb62718f7b0940a3476425fc8a971a31d2e8228fc9b9171b404cd0818568fb23de292d68f671acda3fa3b4509bbdedda6d3281cb75428fc882b8fe24f6d73
7
- data.tar.gz: d99f9644e386397feaf81946db9d285e4daf17a91e7cbd29dd4347405d1021862b59c50e43ff3e7b17dd744ac66fa0764f5cd135b943da1908e67b06dec4aef1
6
+ metadata.gz: e4f9142ab302fae41ef867cbeb6ba227d8d9dfd6137527654a66097d0658d698d4402ce60d371820fc75bc951f7fb2fac1a9d0a4dbe702fa28ef0def10ab109f
7
+ data.tar.gz: 985c6802bb40d7f11b5a54541701a15e0014ad80d2c31da815081ac5567b14f639b4223334ee7b58d0dcf996ac77716b183087a143d1785fc39abe528f07c344
data/README.md CHANGED
@@ -9,12 +9,12 @@ You don't need to customize the stylesheets manually, the only gem you need is t
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'BootstrapMan', '~> 0.1.2'
12
+ gem 'BootstrapMan', '~> 0.1.3'
13
13
  ```
14
14
 
15
15
  And then execute:
16
16
 
17
- $ bundle
17
+ $ bundle install
18
18
 
19
19
  Or install it yourself as:
20
20
 
@@ -45,10 +45,20 @@ Example:
45
45
 
46
46
  rails g scaffold Post title:string description:text
47
47
  rake db:migrate
48
- rails g bootstrap:themed Posts
48
+ rails g bootstrap:strapify Posts
49
49
 
50
50
  Notice the plural usage of the resource to generate bootstrap:strapify.
51
51
 
52
+ ## Rails Server
53
+
54
+ Run bundle install before running Rails Server. Gem Install step has added few Gems to the end of Gemfile for ease.
55
+
56
+ Gems Added:
57
+ gem 'jquery-rails'
58
+ gem 'bootstrap'
59
+ gem 'font-awesome-rails'
60
+ gem 'bootstrap_form'
61
+
52
62
  ## Development
53
63
 
54
64
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -1,3 +1,3 @@
1
1
  module BootstrapMan
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -43,7 +43,7 @@ module Bootstrap
43
43
  template "_navbar.html.#{ext}", "app/views/shared/_navbar.html.#{ext}"
44
44
  template "_footer.html.#{ext}", "app/views/shared/_footer.html.#{ext}"
45
45
 
46
- insert_into_file "Gemfile", "# Adding gems required by BootstrapMan\ngem 'jquery-rails'\ngem 'bootstrap'\ngem 'font-awesome-rails'\ngem 'bootstrap_form'\n", :before => "end"
46
+ append_to_file "Gemfile", "# Adding gems required by BootstrapMan\ngem 'jquery-rails'\ngem 'bootstrap'\ngem 'font-awesome-rails'\ngem 'bootstrap_form'\n"
47
47
  end
48
48
  end
49
49
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: BootstrapMan
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
  - AndyMental