bootstrap-wysiwyg-rails 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  module Bootstrap
2
2
  module Wysiwyg
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-wysiwyg-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -98,15 +98,12 @@ executables: []
98
98
  extensions: []
99
99
  extra_rdoc_files: []
100
100
  files:
101
- - .gitignore
102
- - Gemfile
103
- - LICENSE.txt
104
- - README.md
105
- - Rakefile
106
- - bootstrap-wysiwyg.gemspec
107
- - lib/bootstrap/wysiwyg.rb
108
101
  - lib/bootstrap/wysiwyg/version.rb
102
+ - lib/bootstrap/wysiwyg.rb
109
103
  - vendor/assets/javascripts/bootstrap-wysiwyg.js
104
+ - LICENSE.txt
105
+ - Rakefile
106
+ - README.md
110
107
  homepage: ''
111
108
  licenses:
112
109
  - MIT
@@ -121,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
121
118
  segments:
122
119
  - 0
123
120
  version: '0'
124
- hash: -723922991753999381
121
+ hash: -3267570602775455439
125
122
  none: false
126
123
  required_rubygems_version: !ruby/object:Gem::Requirement
127
124
  requirements:
@@ -130,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
127
  segments:
131
128
  - 0
132
129
  version: '0'
133
- hash: -723922991753999381
130
+ hash: -3267570602775455439
134
131
  none: false
135
132
  requirements: []
136
133
  rubyforge_project:
data/.gitignore DELETED
@@ -1,17 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in bootstrap-wysiwyg.gemspec
4
- gemspec
@@ -1,27 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'bootstrap/wysiwyg/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "bootstrap-wysiwyg-rails"
8
- spec.version = Bootstrap::Wysiwyg::VERSION
9
- spec.authors = ["Vladislav Bogomolov"]
10
- spec.email = ["vladson4ik@gmail.com"]
11
- spec.description = %q{Bootstrap wysiwyg gem for rails}
12
- spec.summary = %q{Bootstrap wysiwyg gem for rails}
13
- spec.homepage = ""
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_dependency 'railties', '>= 3.1'
22
- spec.add_dependency 'actionpack', '>= 3.1'
23
- spec.add_development_dependency 'rails', '>= 3.1'
24
-
25
- spec.add_development_dependency "bundler", "~> 1.3"
26
- spec.add_development_dependency "rake"
27
- end