Skip to content

Commit

Permalink
Prepare to bump to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjankowski committed Feb 12, 2013
1 parent e412734 commit 7d2f3d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 36 deletions.
32 changes: 2 additions & 30 deletions Gemfile.lock
@@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
flutie (1.3.4) flutie (2.0.0)


GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
Expand All @@ -22,33 +22,17 @@ GEM
activesupport (3.2.9) activesupport (3.2.9)
i18n (~> 0.6) i18n (~> 0.6)
multi_json (~> 1.0) multi_json (~> 1.0)
addressable (2.3.2)
appraisal (0.5.1) appraisal (0.5.1)
bundler bundler
rake rake
builder (3.0.4) builder (3.0.4)
capybara (2.0.1)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 2.0)
xpath (~> 1.0.0)
childprocess (0.3.6)
ffi (~> 1.0, >= 1.0.6)
diff-lcs (1.1.3) diff-lcs (1.1.3)
erubis (2.7.0) erubis (2.7.0)
ffi (1.2.0)
hike (1.2.1) hike (1.2.1)
i18n (0.6.1) i18n (0.6.1)
journey (1.0.4) journey (1.0.4)
json (1.7.5) json (1.7.5)
libwebsocket (0.1.7.1)
addressable
websocket
mime-types (1.19)
multi_json (1.5.0) multi_json (1.5.0)
nokogiri (1.5.5)
rack (1.4.1) rack (1.4.1)
rack-cache (1.2) rack-cache (1.2)
rack (>= 0.4) rack (>= 0.4)
Expand Down Expand Up @@ -77,32 +61,20 @@ GEM
rspec-core (~> 2.12.0) rspec-core (~> 2.12.0)
rspec-expectations (~> 2.12.0) rspec-expectations (~> 2.12.0)
rspec-mocks (~> 2.12.0) rspec-mocks (~> 2.12.0)
rubyzip (0.9.9)
sass (3.2.3)
selenium-webdriver (2.27.2)
childprocess (>= 0.2.5)
libwebsocket (~> 0.1.3)
multi_json (~> 1.0)
rubyzip
sprockets (2.2.2) sprockets (2.2.2)
hike (~> 1.2) hike (~> 1.2)
multi_json (~> 1.0) multi_json (~> 1.0)
rack (~> 1.0) rack (~> 1.0)
tilt (~> 1.1, != 1.3.0) tilt (~> 1.1, != 1.3.0)
sqlite3 (1.3.6) sqlite3 (1.3.7)
thor (0.16.0) thor (0.16.0)
tilt (1.3.3) tilt (1.3.3)
websocket (1.0.4)
xpath (1.0.0)
nokogiri (~> 1.3)


PLATFORMS PLATFORMS
ruby ruby


DEPENDENCIES DEPENDENCIES
appraisal appraisal
capybara (>= 0.4.0)
flutie! flutie!
rspec-rails rspec-rails
sass
sqlite3 sqlite3
8 changes: 3 additions & 5 deletions flutie.gemspec
Expand Up @@ -8,17 +8,15 @@ Gem::Specification.new do |s|
s.authors = ['Matt Jankowski', 'Chad Pytel', 'Kevin Burg', 'Chad Mazzola', 'Phil LaPier', 'Dan Croak', 'Fred Yates', 'OZAWA Sakuro', 'Mike Burns', 'Greg Sterndale', 'Joe Ferris', 'J. Edward Dewyea', 'Emilien Taque', 'Aaron Suggs', 'Nick Quaranto'] s.authors = ['Matt Jankowski', 'Chad Pytel', 'Kevin Burg', 'Chad Mazzola', 'Phil LaPier', 'Dan Croak', 'Fred Yates', 'OZAWA Sakuro', 'Mike Burns', 'Greg Sterndale', 'Joe Ferris', 'J. Edward Dewyea', 'Emilien Taque', 'Aaron Suggs', 'Nick Quaranto']
s.email = ['support@thoughtbot.com'] s.email = ['support@thoughtbot.com']
s.homepage = 'http://github.com/thoughtbot/flutie' s.homepage = 'http://github.com/thoughtbot/flutie'
s.summary = 'Flutie adds default stylesheets to web apps' s.summary = 'Flutie provides extra Rails view helpers'
s.description = 'Flutie is a starting point for personal discovery' s.description = 'Flutie is a starting point for personal discovery'


s.files = `git ls-files`.split("\n") s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"] s.require_paths = ['lib']


s.add_development_dependency('appraisal') s.add_development_dependency('appraisal')
s.add_development_dependency('rspec-rails')
s.add_development_dependency('capybara', '>= 0.4.0')
s.add_development_dependency('sqlite3') s.add_development_dependency('sqlite3')
s.add_development_dependency('sass') s.add_development_dependency('rspec-rails')
end end
2 changes: 1 addition & 1 deletion lib/flutie/version.rb
@@ -1,3 +1,3 @@
module Flutie module Flutie
VERSION = '1.3.4'.freeze VERSION = '2.0.0'.freeze
end end

0 comments on commit 7d2f3d9

Please sign in to comment.