teleporter 0.0.33 → 0.0.34

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: b4bda2b44ece6a95fdfb10ad26fc58faa8a28e5e
4
- data.tar.gz: 81ded03d4eaea495e40733bb1d8643bbec67df72
3
+ metadata.gz: 37c90e8add8e7a5a84902997a82718b3e0c6ef1c
4
+ data.tar.gz: c5e011db985016024cf98f5671e30aa26faccaa5
5
5
  SHA512:
6
- metadata.gz: 9806def67a123f62e4ccf6649df904bdefdab18497b74402a378f4b1834a414d4ac301fe3e37182664ef48a197b0cd339886375a9868833d7855388508f86878
7
- data.tar.gz: 5474b680b48532f4e021971c8bb2dfbc81e283fef5fff430bf16760f6469b6bf190980d59b561a025f1e312b8aabe20626196351df586ca8122912eb0f9503ff
6
+ metadata.gz: 09e06a7355a96c3a8ec4bb800929398e430de27f955c9bac70c67e50cee279aa926af2f51e36cf42309619f472e744142277b90548a6524a9b9fb3e595a22af8
7
+ data.tar.gz: 3833d1e5f000017dbd4fbf7ea8bad3fead647f0376ed1416f390a359f7ec5473b49c8ca532162a47e40a15effb5a5b9d5cdcbe7e5bbdbf0d7241af1bce8b6b5e
@@ -14,13 +14,16 @@ module Initial
14
14
 
15
15
  copy_file 'bootstrap/bootstrap-base.scss',
16
16
  'app/assets/stylesheets/shared/bootstrap-base.scss'
17
+ copy_file 'bootstrap/bootstrap-init.coffee',
18
+ 'app/assets/javascripts/shared/bootstrap-init.coffee'
17
19
  copy_file 'bootstrap/bootstrap_flash_helper.rb',
18
20
  'app/helpers/bootstrap_flash_helper.rb'
19
21
  insert_into_file "app/assets/stylesheets/application.css",
20
22
  "*= require shared/bootstrap-base\n",
21
23
  after: "/*\n"
22
24
  prepend_to_file "app/assets/javascripts/application.js",
23
- " //= require bootstrap\n"
25
+ " //= require bootstrap\n
26
+ //= require_tree ./shared\n"
24
27
 
25
28
  end
26
29
  end
@@ -3,7 +3,7 @@ module Initial
3
3
  source_root File.expand_path("../templates", __FILE__)
4
4
 
5
5
  def add
6
- gem 'simple_form'
6
+ gem 'simple_form', '3.1.0.rc2'
7
7
 
8
8
  Bundler.with_clean_env do
9
9
  run "bundle install"
@@ -0,0 +1,7 @@
1
+ class BootstrapInit
2
+ constructor: ->
3
+ $("a[rel=popover], .popover").popover()
4
+ $("a[rel=tooltip], .tooltip").tooltip()
5
+ $('.dropdown-toggle').dropdown()
6
+
7
+ $ -> new BootstrapInit
@@ -1,3 +1,3 @@
1
1
  module Teleporter
2
- VERSION = "0.0.33"
2
+ VERSION = "0.0.34"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teleporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.33
4
+ version: 0.0.34
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ponomarev Nikolay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-20 00:00:00.000000000 Z
11
+ date: 2014-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -77,6 +77,7 @@ files:
77
77
  - lib/generators/initial/simple_form.rb
78
78
  - lib/generators/initial/start.rb
79
79
  - lib/generators/initial/templates/bootstrap/bootstrap-base.scss
80
+ - lib/generators/initial/templates/bootstrap/bootstrap-init.coffee
80
81
  - lib/generators/initial/templates/bootstrap/bootstrap_flash_helper.rb
81
82
  - lib/generators/initial/templates/capistrano/deploy/deploy.rb
82
83
  - lib/generators/initial/templates/capistrano/deploy/production.rb