hackathon-bootstrap 0.0.2.2 → 0.0.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 80712c3a290279d52708b2fe1fcd276df6b77eb4
4
- data.tar.gz: 7a354d291b836927e12d61410170f22e7fab6b2b
3
+ metadata.gz: bace23bb531e2de69c712707db6448a791bde24b
4
+ data.tar.gz: 8707f2e46ad990be8bddae41bf4ffa4d484b4c8f
5
5
  SHA512:
6
- metadata.gz: 92bad505dc47b4c196b5e343a4b783365be04d385416bc8912359b7c0a2c9e539fcdfa2d6b1237e0d37bb9ed35b20729e87e92de0122e60b50f383171974026c
7
- data.tar.gz: b8f98695f26dc84e55b16a865de8b3ba9d123e592af07dafe3526227a6e23af2c11747b2151fb2bf56bbd297b416da6bb8bd599b3732c21952936c36fc36327a
6
+ metadata.gz: 96ac9e74f32d91bfefd1abb93beaa3e01cf5e28edd724325fc7e42b4dbacfe8380d5d718c4254b9f8a32844ff2e54043ee5f95269e79de1ed7122018c749c2b4
7
+ data.tar.gz: c458686ac37c25303ac5c913ed16c160b6b5031727f1fd70fede83d9500aceda31fcc404d41835dbcbf9ad3cbac6a1c19ee1e7573609312eb2e7059e37ac3650
@@ -0,0 +1,8 @@
1
+ module Hackathon
2
+ class InstallGenerator < Rails::Generators::Base
3
+ source_root File.expand_path('../templates', __FILE__)
4
+ def copy_initializer_file
5
+ copy_file 'initializer.rb', 'config/initializers/hackathon.rb'
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ # Available Themes: :default, :modern, :ios7
2
+
3
+ Hackathon::Bootstrap.theme :default
@@ -1,6 +1,6 @@
1
1
  module Hackathon
2
2
  module Bootstrap
3
- VERSION = "0.0.2"
4
- PATCHLEVEL = 2
3
+ VERSION = "0.0.3"
4
+ PATCHLEVEL = 1
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hackathon-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.2
4
+ version: 0.0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - steigr
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-09 00:00:00.000000000 Z
11
+ date: 2015-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,8 @@ files:
66
66
  - app/assets/stylesheets/hackathon-bootstrap/default.scss
67
67
  - app/assets/stylesheets/hackathon-bootstrap/ios7.scss
68
68
  - app/assets/stylesheets/hackathon-bootstrap/modern.scss
69
+ - lib/generators/hackathon/install_generator.rb
70
+ - lib/generators/hackathon/templates/initializer.rb
69
71
  - lib/hackathon-bootstrap.rb
70
72
  - lib/hackathon/bootstrap.rb
71
73
  - lib/hackathon/bootstrap/engine.rb