bbgun 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,22 +1,22 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bbgun (1.0.0)
4
+ bbgun (1.1.0)
5
5
  coderay
6
6
 
7
7
  GEM
8
8
  remote: http://rubygems.org/
9
9
  specs:
10
10
  coderay (1.0.8)
11
- diff-lcs (1.1.2)
12
- rspec (2.3.0)
13
- rspec-core (~> 2.3.0)
14
- rspec-expectations (~> 2.3.0)
15
- rspec-mocks (~> 2.3.0)
16
- rspec-core (2.3.1)
17
- rspec-expectations (2.3.0)
18
- diff-lcs (~> 1.1.2)
19
- rspec-mocks (2.3.0)
11
+ diff-lcs (1.1.3)
12
+ rspec (2.12.0)
13
+ rspec-core (~> 2.12.0)
14
+ rspec-expectations (~> 2.12.0)
15
+ rspec-mocks (~> 2.12.0)
16
+ rspec-core (2.12.0)
17
+ rspec-expectations (2.12.0)
18
+ diff-lcs (~> 1.1.3)
19
+ rspec-mocks (2.12.0)
20
20
 
21
21
  PLATFORMS
22
22
  ruby
data/lib/bbgun/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module BBGun
2
- VERSION = "1.0.1"
2
+ VERSION = "1.1.0"
3
3
  end
data/lib/bbgun.rb CHANGED
@@ -8,12 +8,6 @@ require 'bbgun/coderay'
8
8
  require 'rubygems'
9
9
  require 'coderay'
10
10
 
11
- #Helper Method
12
- if defined? Rails
13
- require 'bbgun/application_helper.rb'
14
- ActionView::Base.send :include, TBBCHelper
15
- end
16
-
17
11
  module BBGun
18
12
  def self.configure
19
13
  @config = Config.new
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bbgun
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -58,7 +58,6 @@ files:
58
58
  - bbgun.gemspec
59
59
  - init.rb
60
60
  - lib/bbgun.rb
61
- - lib/bbgun/application_helper.rb
62
61
  - lib/bbgun/coderay.rb
63
62
  - lib/bbgun/config.rb
64
63
  - lib/bbgun/css.rb
@@ -1,9 +0,0 @@
1
- module BBGun
2
- module TBBCHelper
3
- def tbbc_css(config = nil)
4
- bbc=TBBC.new
5
- bbc.conf(config) if config
6
- bbc.css
7
- end
8
- end
9
- end