personal-journal/personal_journal.gemspec

24 lines
886 B
Ruby
Raw Normal View History

2014-06-04 03:55:13 +00:00
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "personal_journal/version"
2019-08-21 03:10:49 +00:00
rails_root = ENV['RAILS_ROOT'] || 'production'
2019-08-21 03:26:30 +00:00
app_path = File.expand_path(__dir__ + '/..')
2019-08-21 03:15:52 +00:00
d = Dir.entries(app_path).select {|entry| File.directory? File.join(app_path,entry) and !(entry =='.' || entry == '..') }
2019-08-21 03:37:37 +00:00
puts RAILS_ROOT
2019-08-21 03:26:30 +00:00
#system 'ls'
2014-06-04 03:55:13 +00:00
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "personal_journal"
s.version = PersonalJournal::VERSION
s.authors = ["Ruling Digital Inc."]
s.email = ["orbit@rulingcom.com"]
s.homepage = "http://www.rulingcom.com"
s.summary = "Journal Papers of Members"
s.description = "Journal Papers of Members"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
end