Skip to content

Commit

Permalink
Require only the files in the gem. Bump the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
bnorton committed Mar 10, 2013
1 parent 1fad8b9 commit d672b96
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,3 +1,5 @@
Gemfile.lock
.idea/
.rvmrc
pkg
.bundle
13 changes: 9 additions & 4 deletions facebook-js-stub.gemspec
@@ -1,8 +1,13 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'facebook-js-stub/version'

Gem::Specification.new do |s|
s.name = "facebook-js-stub"
s.version = "0.1.3"
s.authors = ["Involver"]
s.summary = ""
s.version = FacebookJsStub::VERSION
s.authors = ["Involver", "Brian Norton"]
s.summary = "A mocking framework for the FB javascript library."

s.files = Dir[File.dirname(__FILE__) + "/lib/**/*"] + Dir[File.dirname(__FILE__) + "/vendor/assets/**/*"]
s.files = Dir.glob("{lib,spec,src,vendor}/**/*") + %w(Gemfile MIT-LICENSE Rakefile README.md)
end
7 changes: 7 additions & 0 deletions lib/facebook-js-stub/version.rb
@@ -0,0 +1,7 @@
module FacebookJsStub
MAJOR = 0
MINOR = 1
PATCH = 4

VERSION = [MAJOR, MINOR, PATCH].join('.')
end

0 comments on commit d672b96

Please sign in to comment.