Gemfile in ar2gostruct-0.1.1 vs Gemfile in ar2gostruct-0.2.0
- old
+ new
@@ -1,19 +1,25 @@
-source 'https://rubygems.org'
+source "https://rubygems.org"
group :development do
gem "yard"
end
group :development, :test do
- gem 'simplecov'
+ gem "simplecov"
+ platform :ruby do
+ gem "sqlite3"
+ end
+ platform :jruby do
+ gem 'activerecord-jdbcsqlite3-adapter'
+ end
if RUBY_PLATFORM =~ /darwin/
gem "ruby_gntp"
gem "rb-fsevent"
end
if RUBY_PLATFORM =~ /linux/
- gem 'libnotify'
- gem 'rb-inotify'
+ gem "libnotify"
+ gem "rb-inotify"
end
end
gemspec